Configure network interfaces
Network interface configuration is on the System Settings page. To navigate there:
- Go to the Servers view.
- Click the Details button to open the server information.
- Go to the System Settings tab.
Changes to network interface configuration can result in the device becoming unreachable.
Set the hostname
- Enter the new hostname in the Hostname field.
- Click Save at the bottom of the page.
Set IP addresses, subnet masks, gateway address, DHCP, and firewall zone
- Go to the Network devices section on the System Settings page.
- Click the Edit button next to an interface to open its settings.
- Enable or disable DHCP. When DHCP is enabled, the interface IP address and DNS servers are allocated automatically. DHCP-allocated values cannot be edited and are shown for reference only.
- If DHCP is disabled, enter the IP address and subnet mask in the Addresses field using CIDR notation.
- Optionally, enter the default gateway in the Gateway field.
- Optionally, set the firewall zone in the Firewall zone field. Valid values are control, data, or control & data (public).
- Click Confirm, then click Save at the bottom of the page.
Do not set more than one default gateway address. Multiple default gateway addresses can result in the device becoming unreachable.
Set DNS addresses
- Go to the DNS section on the System Settings page.
- Click the Edit button next to an interface to open its DNS settings.
- If DHCP is disabled, add at least one DNS server in the Addresses field using CIDR notation. DNS servers allocated by DHCP cannot be edited and are shown for reference only.
- Click Confirm, then click Save at the bottom of the page.
Set time synchronization
- Go to the Time sources section on the System Settings page.
- Configure your time source. For example, to use NTP: click the NTP tab, then edit () an existing server or click Add a new NTP server to add one.
- Click Make active.
- Click Save at the bottom of the page.
Set IGMP version
- Go to the IGMP mode section on the System Settings page.
- From the drop-down, select Automatic v2/v3 or Force v2.
- Click Save at the bottom of the page.
Configure active-backup bonded interfaces for redundancy
These instructions show how to configure bonded management or data interfaces. The example commands use the two 1G onboard NICs available on the E50 and E60 servers, and assume that the eno8303 interface is already configured and working as the management interface.
Run these commands using SSH or directly on the terminal.
Create the bond interface
In this example, bond0 is the name of the bond interface being created.
sudo nmcli connection add type bond con-name bond0 ifname bond0 bond.options "mode=active-backup"Add the slave interfaces
In this example, eno8303 and eno8304 are added as slave interfaces.
sudo nmcli connection add type ethernet slave-type bond con-name bond0-eno8303 ifname eno8303 master bond0
sudo nmcli connection add type ethernet slave-type bond con-name bond0-eno8403 ifname eno8403 master bond0Configure the IP address of the bond interface
The bond interface IP address can be allocated via DHCP or assigned statically.
- To use DHCP:
sudo nmcli connection modify bond0 ipv4.method auto - To assign a static IP address, use the values currently assigned to
eno8303. For example:sudo nmcli connection modify bond0 ipv4.addresses 192.168.1.42/24 ipv4.gateway 192.168.1.1 ipv4.dns "192.168.1.99,192.168.1.98" ipv4.method manual
Activate the bond interface
sudo nmcli connection down eno8403 && sudo nmcli connection down eno8303 && sudo nmcli connection up bond0Remove the non-slave connections
Removing non-slave connections prevents them from conflicting with the bond at reboot or after an upgrade.
sudo nmcli connection delete eno8403
sudo nmcli connection delete eno8303Configure the firewall
- For bonded management ports, set the firewall zone to control:
sudo nmcli connection modify bond0 connection.zone control && sudo nmcli connection up bond0 - For bonded data ports, set the firewall zone to data:
sudo nmcli connection modify bond0 connection.zone data && sudo nmcli connection up bond0
The bonded network interface configuration persists on reboot and upgrade when you follow the instructions above.
Rebooting after configuration is recommended to confirm that networking continues to function after a reboot or power failure.