login to the OVA machine using the
vulcan
credentials, and "sudo -i" to open up a root shelldetermine the name of the network interface you'd like to change by typing:
ifconfig
3. change the correct configuration file for your network interface:
vi /etc/sysconfig/network-scripts/ifcfg-enp0s17
(replace the enp0s17 with the correct one)
and create the following config (replacing the IPADDR and the PREFIX with the desired vaules):
DEVICE=enp0s17
BOOTPROTO=none
ONBOOT=yes
PREFIX=24
IPADDR=192.168.2.203
4. If you need to change the Default Gateway is well, please edit the following file:
/etc/sysconfig/network
with the following change:
GATEWAY=<new_default_gateway_ip>
5. Restart the network service:
systemctl restart network