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

3. change the correct configuration file for your network interface:

vi /etc/netplan/00-installer-config.yaml

network:
version: 2
renderer: NetworkManager
ethernets:
enp0s17:
dhcp4: no
addresses: [10.0.0.15/24]
routes:
- to: default
via: 10.0.0.138
nameservers:
addresses: [8.8.8.8]

Make sure to change:

  • Interface name to the correct one as seen in step #2 (enp0s17 in the example above).

  • IP address & CIDR (10.0.0.15/24 in the example above)

  • Default gateway (10.0.0.138 in the example above)

  • DNS Servers (8.8.8.8 in the examples above)

4. Change the permissions on the configuration file by running:
chmod 600 /etc/netplan/00-installer-config.yaml
5. Apply the changes using:

netplan apply

Did this answer your question?