...
QManager can be accessed using a known IP address, or it can be accessed via the browser and typing in ‘127.0.0.1’ in the browser window (in the QP500/600 models only).
Login to QManager using the default credentials
After logging into QManager, go to [Configuration] → [Network] → [Host and Network]
Choose an interface whether it is ‘eno1’, 'eno2’ or others by clicking on the [Enable] checkbox
Checking on the [Enable] checkbox will allow you to make changes to the network interface fields in the form
Fill the required fields
Field | Value | Example | ||
---|---|---|---|---|
Name | enoX (where X is the interface number) | eno1 | ||
Host Name | string value | quantea_qp4000 | ||
Aliases | (Optional) alternative host name alias | quantea_b | ||
IP Address | IPv4 or IPv6 address | 192.168.1.20 | ||
Netmask | Netmask for IPv4 in bits. 24 is equivalent to /24 | 24 | ||
DNS | (Optional) IP address of the DNS serverSet as Static (Checkbox) | Checkbox button to enable static IP configuration | [Checked] | |
Addresses | IP address (IPv4/6) with subnet in CIDR notation | 192.168.1.1/24 | ||
Broadcast Address | (Optional) Broadcast address based on Gateway | Routing default gateway IP address | 192.168.1.255254 | Default Gateway |
Default gateway DNS | DNS nameserver IP address | 1928.1688.1.254 |
...
8.8 | ||
Submit (Button) | Click to save and apply settings |
...
On the very bottom of the page, click on the [EnableSubmit] button to submit your changes and to apply the new network configuration
...
Login to the QP using SSH (Secure Shell)
Once logged into the shell type this command below:
Code Block language bash ifconfig eno1 192.168.1.20 netmask 255.255.255.0 up
Use the command above except substitute (eno1) with the interface that you would like to configure; (192.168.1.20) with the desired IP address and (255.255.255.0) with the desired network mask.
To change a default gateway for the management interface, use the command below:
Code Block route add default gw 192.168.1.254 dev eno1
Replace (192.168.1.254) with desired gateway IP address and (eno1) with the desired interface name
Verify that the changes are applied by typing this command:
Code Block ip addr show
Verify the gateway configuration has been changes changed by using this command:
Code Block route -n
...