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