We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We have seen this issue happen on multiple debian11/12 root-servers (running at Hetzner):
Version: 3.0.0-1.1 (latest in default apt-repo)
3.0.0-1.1
Note: xxxx is redacted
xxxx
We configure an IP-address in /etc/network/interfaces.d/:
/etc/network/interfaces.d/
auto eno1 iface eno1 inet6 static address 2a01:4f8:2xxx:xxxx::1 netmask 64
Perform a ifreload -a or reboot the server
ifreload -a
We see a 'random' IP-address on the interface (output of ip a)
ip a
inet6 74ca:5341:1400:200:2a01:4f8:2xxx:xxxx/32 scope global
When using the 'legacy' ifupdown - every works as expected.
ifupdown
As a workaround - this worked:
auto eno1 iface eno1 inet6 static up ip address add 2a01:4f8:2xxx:xxxx::1/64 dev eno1
Interesting enough - adding another interface like this (for Hetzner vswitch) works without any issues:
auto eno1.4000 iface eno1.4000 inet6 static address 2a01:4f8:fxxx:xxxx::1 netmask 64 vlan-raw-device eno1 mtu 1400
The text was updated successfully, but these errors were encountered:
Try removing static:
static
auto eno1 iface eno1 address 2a01:4f8:2xxx:xxxx::1 netmask 64
Sorry, something went wrong.
No branches or pull requests
We have seen this issue happen on multiple debian11/12 root-servers (running at Hetzner):
Version:
3.0.0-1.1
(latest in default apt-repo)Note:
xxxx
is redactedWe configure an IP-address in
/etc/network/interfaces.d/
:Perform a
ifreload -a
or reboot the serverWe see a 'random' IP-address on the interface (output of
ip a
)When using the 'legacy'
ifupdown
- every works as expected.As a workaround - this worked:
Interesting enough - adding another interface like this (for Hetzner vswitch) works without any issues:
The text was updated successfully, but these errors were encountered: