hansitheking
Basic Pleskian
Hello,
I have a IPv6/64 subnet for my Server. The first IPv6 address XYZ1:XYZ1:XYZ1:XYZ1:: is running very well. If I am adding a second address Plesk will add a new line (up /sbin/ifconfig ens3 inet6 add XYZ1:XYZ1:XYZ1:XYZ1::1/64) to the /etc/network/interfaces and it will look like this:
The IPv6 address is working, but once the server is rebooted the second IPv6 address is no more working. I have to run
or
or
use the repair function in the Plesk Panel before the second IPv6 address is working.
If I am using the repair function in the Plesk Panel, Plesk will add a second line to the /etc/network/interfaces stating (up /sbin/ifconfig ens3 inet6 add XYZ1:XYZ1:XYZ1:XYZ1::1/64).
I allready tested adding the IP address manual in the /etc/network/interfaces and afterwards in Plesk but the behaviour is the same.
I have a IPv6/64 subnet for my Server. The first IPv6 address XYZ1:XYZ1:XYZ1:XYZ1:: is running very well. If I am adding a second address Plesk will add a new line (up /sbin/ifconfig ens3 inet6 add XYZ1:XYZ1:XYZ1:XYZ1::1/64) to the /etc/network/interfaces and it will look like this:
Code:
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
source /etc/network/interfaces.d/*
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto ens3
iface ens3 inet dhcp
# ipv6
iface ens3 inet6 static
up /sbin/ifconfig ens3 inet6 add XYZ1:XYZ1:XYZ1:XYZ1::1/64
address XYZ1:XYZ1:XYZ1:XYZ1::
netmask 64
gateway fe50::1
The IPv6 address is working, but once the server is rebooted the second IPv6 address is no more working. I have to run
Code:
sudo /sbin/ifconfig ens3 inet6 add XYZ1:XYZ1:XYZ1:XYZ1::1/64
Code:
sudo ip addr add XYZ1:XYZ1:XYZ1:XYZ1::1/64 dev ens3
use the repair function in the Plesk Panel before the second IPv6 address is working.
If I am using the repair function in the Plesk Panel, Plesk will add a second line to the /etc/network/interfaces stating (up /sbin/ifconfig ens3 inet6 add XYZ1:XYZ1:XYZ1:XYZ1::1/64).
I allready tested adding the IP address manual in the /etc/network/interfaces and afterwards in Plesk but the behaviour is the same.