Configuring network interfaces
orcharhino supports specifying multiple network interfaces for a single host. You can configure these interfaces when creating a new host as described in Creating a Host or when editing an existing host.
There are several types of network interfaces that you can attach to a host. When configuring an interface, select one of:
-
Interface: Allows you to specify an additional physical or virtual interface. There are two types of virtual interfaces you can create. Use VLAN when the host needs to communicate with several (virtual) networks by using a single interface, while these networks are not accessible to each other. Use alias to add an additional IP address to an existing interface.
-
Bond: Creates a bonded interface. NIC bonding is a way to bind multiple network interfaces together into a single interface that appears as a single device and has a single MAC address. This enables two or more network interfaces to act as one, increasing the bandwidth and providing redundancy.
-
BMC: Baseboard Management Controller (BMC) allows you to remotely monitor and manage the physical state of machines.
Additional interfaces have the Managed flag enabled by default, which means the new interface is configured automatically during provisioning by the DNS and DHCP orcharhino Proxy Servers associated with the selected subnet.
This requires a subnet with correctly configured DNS and DHCP orcharhino Proxy Servers.
If you use a Kickstart method for host provisioning, configuration files are automatically created for managed interfaces in the post-installation phase at |
Configuring a physical interface
You can configure a physical interface for a host.
-
Navigate to the Add Interface form:
-
In the orcharhino management UI, navigate to Hosts > All Hosts.
-
Click Edit next to the host you want to edit.
-
On the Interfaces tab, click Add Interface.
-
-
Specify the general interface settings:
-
Specify a MAC address. This setting is required.
-
Specify the Device Identifier, for example
eth0
.
-
-
Configure network and DNS settings:
-
Specify the DNS name associated with the host’s IP address.
-
Select a domain from the Domain list.
-
Select a subnet in the IPv4 Subnet or IPv6 Subnet list.
-
Specify the IPv4 address or IPv6 address.
Managed interfaces with an assigned DHCP orcharhino Proxy Server require this setting for creating a DHCP lease. DHCP-enabled managed interfaces are automatically provided with a suggested IP address.
-
-
Specify interface management options:
-
Select whether the interface is Managed.
-
Select whether this is the Primary interface for the host.
-
Select whether this is the Provision interface for the host.
-
Select whether to use the interface for Remote execution.
-
-
Click OK to save the interface configuration.
-
Click Submit to apply the changes to the host.
Configuring a virtual interface
You can configure a virtual interface for a host. This can be either a VLAN or an alias interface.
-
A VLAN interface allows the host to connect to separate network segments using a single physical interface.
-
An alias interface is an additional IP address attached to an existing interface. An alias interface automatically inherits a MAC address from the interface it is attached to; therefore, you can create an alias without specifying a MAC address. The interface must be specified in a subnet with boot mode set to
static
.
Virtual interfaces currently require a MAC address of a physical device. Therefore, the configuration of these interfaces works only on bare-metal hosts. |
-
Navigate to the Add Interface form:
-
In the orcharhino management UI, navigate to Hosts > All Hosts.
-
Click Edit next to the host you want to edit.
-
On the Interfaces tab, click Add Interface.
-
-
Specify the general interface settings:
-
If the virtual interface is managed, specify a MAC address.
-
Specify ID in the Device Identifier field.
-
For a VLAN, use the
eth1.10
format. -
For an alias, use the
eth1:10
format.
-
-
-
Configure a virtual NIC:
-
Select the Virtual NIC checkbox.
-
Optionally, specify a VLAN Tag.
-
Specify the identifier of the physical interface to which the virtual interface is Attached to, for example
eth1
. This setting is required.
-
-
Click OK to save the interface configuration.
-
Click Submit to apply the changes to the host.
Configuring a bonded interface
You can combine multiple physical interfaces together by configuring a bonded interface for the host.
Bonded interfaces currently require a MAC address of a physical device. Therefore, the configuration of these interfaces works only on bare-metal hosts. |
-
Navigate to the Add Interface form:
-
In the orcharhino management UI, navigate to Hosts > All Hosts.
-
Click Edit next to the host you want to edit.
-
On the Interfaces tab, click Add Interface.
-
-
Select Bond from the Type list.
-
Specify the general interface settings:
-
In the Device Identifier field, specify the interface ID in the
bond0
format . -
Specify a MAC address.
-
If you are configuring a secondary interface, select Managed. Otherwise, orcharhino does not apply the configuration.
-
-
Add the configuration specific to bonded interfaces:
-
Mode: Select the bonding mode.
-
Attached devices: Specify a comma-separated list of identifiers of attached devices. These can be physical interfaces or VLANs.
-
Bond options: Specify a space-separated list of configuration options, for example
miimon=100
.
-
-
Click OK to save the interface configuration.
-
Click Submit to apply the changes to the host.
-
To create a host with a bonded interface, enter the following command:
$ hammer host create \ --ask-root-password yes \ --hostgroup My_Host_Group \ --ip=My_IP_Address \ --mac=My_MAC_Address \ --managed true \ --interface="identifier=My_NIC_1, mac=_My_MAC_Address_1, managed=true, type=Nic::Managed, domain_id=My_Domain_ID, subnet_id=My_Subnet_ID" \ --interface="identifier=My_NIC_2, mac=My_MAC_Address_2, managed=true, type=Nic::Managed, domain_id=My_Domain_ID, subnet_id=My_Subnet_ID" \ --interface="identifier=bondN, ip=My_IP_Address_2, type=Nic::Bond, mode=active-backup, attached_devices=[My_NIC_1,My_NIC_2], managed=true, domain_id=My_Domain_ID, subnet_id=My_Subnet_ID" \ --location "My_Location" \ --name "My_Host_Name" \ --organization "My_Organization" \ --subnet-id=My_Subnet_ID
Replace
bondN
withbond
and the ID of your device identifier, for example,bond0
.
Configuring a bridge interface
You can configure traffic forwarding between networks by configuring a bridge interface.
-
In the orcharhino management UI, navigate to Hosts > All Hosts.
-
Click Edit next to the host you want to edit.
-
On the Interfaces tab, click Add Interface.
-
Select Bridge from the Type list.
-
Specify a MAC address.
-
In the Device Identifier field, specify the interface ID in the
bridge0
format. -
If you are configuring a secondary interface, select Managed.
-
In the Attached devices field, specify a comma-separated list of identifiers of attached devices. These can be physical or virtual Ethernet devices, bonds, or VLAN devices.
-
Click OK to save the interface configuration.
-
Click Submit to apply the changes to the host.
Bonding modes available in orcharhino
Bonding Mode | Description |
---|---|
balance-rr |
Transmissions are received and sent sequentially on each bonded interface. |
active-backup |
Transmissions are received and sent through the first available bonded interface. Another bonded interface is only used if the active bonded interface fails. |
balance-xor |
Transmissions are based on the selected hash policy. In this mode, traffic destined for specific peers is always sent over the same interface. |
broadcast |
All transmissions are sent on all bonded interfaces. |
802.a3 |
Creates aggregation groups that share the same settings. Transmits and receives on all interfaces in the active group. |
balance-tlb |
The outgoing traffic is distributed according to the current load on each bonded interface. |
balance-alb |
Receive load balancing is achieved through Address Resolution Protocol (ARP) negotiation. |
Configuring a baseboard management controller (BMC) interface
To control the power status of bare-metal hosts from orcharhino, you can configure a baseboard management controller (BMC) interface for hosts that support this feature.
-
You know the MAC address, IP address, and other details of the BMC interface on the host, and authentication credentials for that interface.
You only need the MAC address for the BMC interface if the BMC interface is managed, so that it can create a DHCP reservation.
-
Enable BMC power management on your orcharhino Proxy:
$ orcharhino-installer \ --foreman-proxy-bmc-default-provider ipmitool \ --foreman-proxy-bmc true
-
In the orcharhino management UI, navigate to Infrastructure > Subnets.
-
Select the subnet of your host.
-
On the Proxies tab, select your orcharhino Proxy as BMC Proxy.
-
Click Submit.
-
Navigate to the Add Interface form:
-
Navigate to Hosts > All Hosts.
-
Click Edit next to the host you want to edit.
-
On the Interfaces tab, click Add Interface.
-
-
Select BMC from the Type list.
-
Specify the general interface settings:
-
If the BMC is managed, specify a MAC address.
-
Specify the Device Identifier.
-
-
Specify the configuration options specific to BMC interfaces:
-
Username and Password: Specify any authentication credentials required by BMC.
-
Provider: Specify the BMC provider.
-
-
Click OK to save the interface configuration.
-
Click Submit to apply the changes to the host.
Network interface configuration options
When adding a network interface, you need to specify several configuration options. The following lists provide information on the relevant options for the different types of interfaces.
- Device Identifier
-
The identifier is used to specify this physical interface when creating bonded interfaces, VLANs, and aliases.
- DNS name
-
orcharhino saves this name in the orcharhino Proxy Server associated with the selected domain (the "DNS A" field) and orcharhino Proxy Server associated with the selected subnet (the "DNS PTR" field). A single host can therefore have several DNS entries.
- Domain
-
Specifies the domain associated with the network interface. To create and manage domains, navigate to Infrastructure > Domains.
- Subnet
-
Specifies the subnet associated with the network interface. To create and manage subnets, navigate to Infrastructure > Subnets.
- Managed interface
-
If the interface is managed, configuration is pulled from the associated orcharhino Proxy Server during provisioning, and DNS and DHCP entries are created. If you use provisioning with installer automation, a configuration file is automatically created for the interface.
- Primary interface
-
The DNS name from the primary interface is used as the host portion of the FQDN.
- Provision
-
Network boot uses the provisioning interface. For image-based provisioning, the script to complete the provisioning is executed through the provisioning interface.
- Tag
-
You can set a VLAN tag to trunk a network segment from the physical network through to the virtual interface.
-
If you do not specify a tag, managed interfaces inherit the VLAN tag of the associated subnet.
-
User-specified entries from this field are not applied to alias interfaces.
-
- Mode
-
The bonding mode defines a policy for fault tolerance and load balancing. See bonding modes available for a brief description of each bonding mode.
The text and illustrations on this page are licensed by ATIX AG under a Creative Commons Attribution Share Alike 4.0 International ("CC BY-SA 4.0") license. This page also contains text from the official Foreman documentation which uses the same license ("CC BY-SA 4.0"). |