All Collections
Connectors
Vulcan Connectors
Configuring a static IP on Vulcan Gateway
Configuring a static IP on Vulcan Gateway
Updated over a week ago
  1. login to the OVA machine using the vulcan credentials, and "sudo -i" to open up a root shell

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

Did this answer your question?