Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. 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).

  2. Login to QManager using the default credentials

  3. After logging into QManager, go to [Configuration] → [Network] → [Host and Network]

  4. Choose an interface whether it is ‘eno1’, 'eno2’ or others by clicking on the [Enable] checkbox

  5. Checking on the [Enable] checkbox will allow you to make changes to the network interface fields in the form

  6. 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

...

  1. On the very bottom of the page, click on the [EnableSubmit] button to submit your changes and to apply the new network configuration

...

  1. Login to the QP using SSH (Secure Shell)

  2. Once logged into the shell type this command below:

    Code Block
    languagebash
    ifconfig eno1 192.168.1.20 netmask 255.255.255.0 up 
  3. 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.

  4. 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 
  5. Replace (192.168.1.254) with desired gateway IP address and (eno1) with the desired interface name

  6. Verify that the changes are applied by typing this command:

    Code Block
    ip addr show 
  7. Verify the gateway configuration has been changes changed by using this command:

    Code Block
    route -n 

...