Tip

This is the documentation for the 22.02 version. Looking for the documentation of the latest version? Have a look here.

Disable Host OS NICs for TNSRΒΆ

In order for TNSR to control network interfaces they must be disabled in the host OS. In most cases this is not necessary as network interfaces not configured during the installation process will be automatically disabled by the installer. For a fresh installation of TNSR, skip ahead to Setup NICs in Dataplane. This section remains to explain how to change interfaces added after initial installation, or for installations which do not contain whitelisted network interfaces.

Note

To change an interface from being usable by TNSR to back under host OS control, see Remove TNSR NIC for Host Use.

This is a two-step process. First, the interface link must be forced down. Then the network interface must be disabled in the operating system configuration.

Warning

The host management interface must remain under the control of the host operating system. It must not be configured as an interface to be controlled by TNSR. Do not disable the management interface during this step.

For each of the interfaces noted in the last section, manually force the link down:

$ sudo ip link set <interface name> down

For example:

$ sudo ip link set enp0s20f1 down
$ sudo ip link set enp0s20f2 down

Disable these network interfaces in netplan. Edit the netplan configuration file:

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

In this file, locate the configuration blocks for the interfaces (enp0s20f1, enp0s20f2) and remove them.

Starting example:

network:
  ethernets:
    enp3s0:
      dhcp4: true
    enp0s20f1:
      dhcp4: true
    enp0s20f2:
      dhcp4: true
  version: 2

Edited file:

network:
  ethernets:
    enp3s0:
      dhcp4: true
  version: 2

Save the changes and then apply the new configuration with netplan:

$ sudo netplan apply

Next, restart TNSR so it can pick up the interfaces:

$ sudo tnsrctl restart

Warning

This command will stop TNSR and all traffic processing!