Enable and configure IPv6 on TAS servers
Enable IPv6 on all TAS servers, and configure the required settings for the network interface used for external communication.
Procedure
-
Go to /etc/sysconfig/ and open the network file in an editor:
Copyvi /etc/sysconfig/network
-
Append the following line to the file:
NETWORKING_IPV6=yes
-
Save the file and exit.
-
Get the list of all available network interfaces:
Copyls -l /sys/class/net
Example of output:
lrwxrwxrwx 1 root root 0 Feb 19 13:00 docker0 -> ../../devices/virtual/net/docker0
lrwxrwxrwx 1 root root 0 Feb 19 13:44 eth0 -> ../../devices/LNXSYSTM:00/device:00/PNP0A03:00/device:08/VMBUS:01/vmbus_13/net/eth0
lrwxrwxrwx 1 root root 0 Feb 22 11:39 lo -> ../../devices/virtual/net/lo
lrwxrwxrwx 1 root root 0 Feb 19 13:00 veth2d8bbd6 -> ../../devices/virtual/net/veth2d8bbd6
lrwxrwxrwx 1 root root 0 Feb 19 13:00 veth86d633a -> ../../devices/virtual/net/veth86d633a
lrwxrwxrwx 1 root root 0 Feb 19 13:00 vethe405ef2 -> ../../devices/virtual/net/vethe405ef2
lrwxrwxrwx 1 root root 0 Feb 19 13:00 virbr0 -> ../../devices/virtual/net/virbr0
lrwxrwxrwx 1 root root 0 Feb 19 13:00 virbr0-nic -> ../../devices/virtual/net/virbr0-nic
-
Filter the list of network interfaces to show only those interfaces that are not under devices/virtual.
-
Go to /etc/sysconfig/network-scripts, and open the configuration file for the network interface in an editor:
Copyvi /etc/sysconfig/network-scripts/ifcfg-<interface_name>
where:
<interface_name> is the name of the network interface, for example, eth0.
-
Make sure the following keys are present and set to yes.
IPV6INIT=yes
IPV6_AUTOCONF=yes
-
Save the file.
-
Restart the network service:
Copysystemctl restart network
systemctl restart NetworkManager
What to do next