Adding 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 adding a new 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 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.

    For more information about adding a physical interface, see Adding a Physical Interface.

    For more information about adding a virtual interface, see Adding a Virtual 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. For more information, see Adding a Bonded Interface.

  • BMC: Baseboard Management Controller (BMC) allows you to remotely monitor and manage the physical state of machines. For more information about BMC, see Enabling Power Management on Managed Hosts in Installing orcharhino Server. For more information about configuring BMC interfaces, see Adding a Baseboard Management Controller Interface.

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 Proxies associated with the selected subnet. This requires a subnet with correctly configured DNS and DHCP orcharhino Proxies. If you use a Kickstart method for host provisioning, configuration files are automatically created for managed interfaces in the post-installation phase at /etc/sysconfig/network-scripts/ifcfg-interface_id.

Virtual and bonded interfaces currently require a MAC address of a physical device. Therefore, the configuration of these interfaces works only on bare-metal hosts.

Adding a Physical Interface

Use this procedure to add an additional physical interface to a host.

Procedure
  1. In the orcharhino management UI, navigate to Hosts > All Hosts.

  2. Click Edit next to the host you want to edit.

  3. On the Interfaces tab, click Add Interface.

  4. Keep the Interface option selected in the Type list.

  5. Specify a MAC address. This setting is required.

  6. Specify the Device Identifier, for example eth0. The identifier is used to specify this physical interface when creating bonded interfaces, VLANs, and aliases.

  7. Specify the DNS name associated with the host’s IP address. orcharhino saves this name in orcharhino Proxy associated with the selected domain (the "DNS A" field) and orcharhino Proxy associated with the selected subnet (the "DNS PTR" field). A single host can therefore have several DNS entries.

  8. Select a domain from the Domain list. To create and manage domains, navigate to Infrastructure > Domains.

  9. Select a subnet from the Subnet list. To create and manage subnets, navigate to Infrastructure > Subnets.

  10. Specify the IP address. Managed interfaces with an assigned DHCP orcharhino Proxy require this setting for creating a DHCP lease. DHCP-enabled managed interfaces are automatically provided with a suggested IP address.

  11. Select whether the interface is Managed. If the interface is managed, configuration is pulled from the associated orcharhino Proxy during provisioning, and DNS and DHCP entries are created. If using kickstart provisioning, a configuration file is automatically created for the interface.

  12. Select whether this is the Primary interface for the host. The DNS name from the primary interface is used as the host portion of the FQDN.

  13. Select whether this is the Provision interface for the host. TFTP boot takes place using the provisioning interface. For image-based provisioning, the script to complete the provisioning is executed through the provisioning interface.

  14. Select whether to use the interface for Remote execution.

  15. Leave the Virtual NIC checkbox clear.

  16. Click OK to save the interface configuration.

  17. Click Submit to apply the changes to the host.

Adding a Virtual Interface

Use this procedure to configure a virtual interface for a host. This can be either a VLAN or an alias 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.

Procedure
  1. In the orcharhino management UI, navigate to Hosts > All Hosts.

  2. Click Edit next to the host you want to edit.

  3. On the Interfaces tab, click Add Interface.

  4. Keep the Interface option selected in the Type list.

  5. Specify the general interface settings. The applicable configuration options are the same as for the physical interfaces described in Adding a Physical Interface.

    Specify a MAC address for managed virtual interfaces so that the configuration files for provisioning are generated correctly. However, a MAC address is not required for virtual interfaces that are not managed.

    If creating a VLAN, specify ID in the form of eth1.10 in the Device Identifier field. If creating an alias, use ID in the form of eth1:10.

  6. Select the Virtual NIC checkbox. Additional configuration options specific to virtual interfaces are appended to the form:

    • Tag: Optionally 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.

    • Attached to: Specify the identifier of the physical interface to which the virtual interface belongs, for example eth1. This setting is required.

  7. Click OK to save the interface configuration.

  8. Click Submit to apply the changes to the host.

Adding a Bonded Interface

Use this procedure to configure a bonded interface for a host. To use the CLI instead of the orcharhino management UI, see the CLI procedure.

Procedure
  1. In the orcharhino management UI, navigate to Hosts > All Hosts.

  2. Click Edit next to the host you want to edit.

  3. On the Interfaces tab, click Add Interface.

  4. Select Bond from the Type list. Additional type-specific configuration options are appended to the form.

  5. Specify the general interface settings. The applicable configuration options are the same as for the physical interfaces described in Adding a Physical Interface.

    Bonded interfaces use IDs in the form of bond0 in the Device Identifier field.

    A single MAC address is sufficient.

  6. Specify the configuration options specific to bonded interfaces:

    • Mode: Select the bonding mode that defines a policy for fault tolerance and load balancing. See Bonding Modes Available for a brief description of each 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.

  7. Click OK to save the interface configuration.

  8. Click Submit to apply the changes to the host.

CLI procedure
  • To create a host with a bonded interface, enter the following command:

    # hammer host create --name bonded_interface \
    --hostgroup-id 1 \
    --ip=192.168.100.123 \
    --mac=52:54:00:14:92:2a \
    --subnet-id=1 \
    --managed true \
       --interface="identifier=eth1, \
                   mac=52:54:00:62:43:06, \
                   managed=true, \
                   type=Nic::Managed, \
                   domain_id=1, \
                   subnet_id=1" \
       --interface="identifier=eth2, \
                   mac=52:54:00:d3:87:8f, \
                   managed=true, \
                   type=Nic::Managed, \
                   domain_id=1, \
                   subnet_id=1" \
       --interface="identifier=bond0, \
                   ip=172.25.18.123, \
                   type=Nic::Bond, \
                   mode=active-backup, \
                   attached_devices=[eth1,eth2], \
                   managed=true, \
                   domain_id=1, \
                   subnet_id=1" \
    --organization "My_Organization" \
    --location "My_Location" \
    --ask-root-password yes

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.

Adding a Baseboard Management Controller (BMC) Interface

Use this procedure to configure a baseboard management controller (BMC) interface for a host that supports this feature.

Prerequisites
  • The ipmitool package is installed.

  • You know the MAC address, IP address, and other details of the BMC interface on the host, and the appropriate 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.

Procedure
  1. Enable BMC on the orcharhino Proxy server if it is not already enabled:

    1. Configure BMC power management on orcharhino Proxy by running the orcharhino-installer script with the following options:

      # orcharhino-installer --foreman-proxy-bmc=true \
      --foreman-proxy-bmc-default-provider=ipmitool
    2. In the orcharhino management UI, navigate to Infrastructure > orcharhino Proxies.

    3. From the list in the Actions column, click Refresh. The list in the Features column should now include BMC.

  2. In the orcharhino management UI, navigate to Hosts > All Hosts.

  3. Click Edit next to the host you want to edit.

  4. On the Interfaces tab, click Add Interface.

  5. Select BMC from the Type list. Type-specific configuration options are appended to the form.

  6. Specify the general interface settings. The applicable configuration options are the same as for the physical interfaces described in Adding a Physical Interface.

  7. Specify the configuration options specific to BMC interfaces:

    • Username and Password: Specify any authentication credentials required by BMC.

    • Provider: Specify the BMC provider.

  8. Click OK to save the interface configuration.

  9. Click Submit to apply the changes to the host.

The text and illustrations on this page are licensed by ATIX AG under a Creative Commons Attribution–Share Alike 3.0 Unported ("CC-BY-SA") license. This page also contains text from the official Foreman documentation which uses the same license ("CC-BY-SA").