Hetzner IPv6 nicht von außen erreichbar und umgekehrt

4n0nx

New Member
Hallo,

bei meinem Hetzner Server ist IPv6 nicht von außen erreichbar und umgekehrt.

Meine eigene IPv6 Adresse kann ich problemlos pingen, google z.B. nicht.

Code:
PING ipv6.google.com(2607:f8b0:4009:80b::200e) 56 data bytes
From *meine IPv6 Adresse* icmp_seq=2 Destination unreachable: Address unreachable


/etc/network/interfaces
Code:
### Hetzner Online AG - installimage
# Loopback device:
auto lo
iface lo inet loopback
# device: eth0
auto  eth0
iface eth0 inet static
  address   136.243.xxx.xxx
  broadcast 136.243.xxx.xxx
  netmask   255.255.255.192
  gateway   136.243.xxx.xxx
  # default route to access subnet
  up route add -net 136.243.xxx.xxx netmask 255.255.255.192 gw 136.243.xxx.xxx eth0


iface eth0 inet6 static
  address 2a01:4f8:211:xxxx::2
  netmask 64
  gateway fe80::1

Hat jemand eine Ahnung, woran das liegen könnte?
 
Poste mal die IPv6 Routing Table


Code:
ip -6 route show
2a01:4f8:211:xxxx::/64 dev eth0  proto kernel  metric 256  mtu 1500 advmss 1440 hoplimit 0
fe80::1 dev venet0  proto kernel  metric 256  mtu 1500 advmss 1440 hoplimit 0
fe80::/64 dev venet0  proto kernel  metric 256  mtu 1500 advmss 1440 hoplimit 0
fe80::/64 dev eth0  proto kernel  metric 256  mtu 1500 advmss 1440 hoplimit 0
default via fe80::1 dev eth0  metric 1024  mtu 1500 advmss 1440 hoplimit 0

Code:
 route -A inet6
Kernel IPv6 routing table
Destination                    Next Hop                   Flag Met Ref Use If
2a01:4f8:211:xxxx::/64         ::                         U    256 0     0 eth0
fe80::1/128                    ::                         U    256 0     0 venet0
fe80::/64                      ::                         U    256 0     0 venet0
fe80::/64                      ::                         U    256 0     0 eth0
::/0                           fe80::1                    UG   1024 0   540 eth0
::/0                           ::                         !n   -1  1  1343 lo
::1/128                        ::                         Un   0   1 15496 lo
2a01:4f8:211:xxxx::2/128       ::                         Un   0   1  1530 lo
fe80::1/128                    ::                         Un   0   1     0 lo
fe80::468a:5bff:fed8:xxxx/128  ::                         Un   0   1     0 lo
ff00::/8                       ::                         U    256 0     0 venet0
ff00::/8                       ::                         U    256 0     0 eth0
::/0                           ::                         !n   -1  1  1343 lo

OS ist übrigens Debian 7
 
Last edited by a moderator:
Back
Top