Quantcast
Channel: Server Support Forum
Viewing all articles
Browse latest Browse all 7443

Proxmox IPv6

$
0
0
Hallo zusammen

Ich bin schon seit letzter Woche am testen wie ich IPv6 auf meinem Proxmox Server für den Host als auch die VM's zum laufen kriege.

Mein IPv6 64er Netz: 2a00:c1e0:0000:0003:0000:0000:0002:xxxx/64
Der Gateway ist unter folgender Adresse erreichbar: 2a00:c1e0:0000:0003:0000:0000:0000:0001

Meine /etc/network/interfaces:
Code:

auto lo
iface lo inet loopback

auto vmbr0
iface vmbr0 inet static
        address xxx.xxx.xxx.xxx
        netmask 255.255.255.128
        gateway xxx.xxx.xxx.xxx
        bridge_ports eth0
        bridge_stp off
        bridge_fd 0
        up route add -host xxx.xxx.xxx.xxx dev vmbr0

iface vmbr0 inet6 static
        address 2a00:c1e0:0000:0003::2:1
        netmask 64
        gateway 2a00:c1e0:0000:0003::1

Code:

root@host01:~# /etc/init.d/networking restart
Running /etc/init.d/networking restart is deprecated because it may not re-enable some interfaces ... (warning).
Reconfiguring network interfaces...Device "vmbr0" does not exist.

Waiting for vmbr0 to get ready (MAXWAIT is 2 seconds).
done.

Code:

root@host01:~# ifconfig
eth0      Link encap:Ethernet  HWaddr 00:24:81:d1:2f:a5
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:149 errors:0 dropped:0 overruns:0 frame:0
          TX packets:116 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:27810 (27.1 KiB)  TX bytes:76951 (75.1 KiB)
          Interrupt:17

lo        Link encap:Local Loopback
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:65536  Metric:1
          RX packets:901 errors:0 dropped:0 overruns:0 frame:0
          TX packets:901 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0
          RX bytes:1097378 (1.0 MiB)  TX bytes:1097378 (1.0 MiB)

tap102i0  Link encap:Ethernet  HWaddr 56:d1:d8:0e:0d:1d
          inet6 addr: fe80::54d1:d8ff:fe0e:d1d/64 Scope:Link
          UP BROADCAST RUNNING PROMISC MULTICAST  MTU:1500  Metric:1
          RX packets:63245 errors:0 dropped:0 overruns:0 frame:0
          TX packets:223101 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:500
          RX bytes:11192404 (10.6 MiB)  TX bytes:19985717 (19.0 MiB)

venet0    Link encap:UNSPEC  HWaddr 00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00
          inet6 addr: fe80::1/128 Scope:Link
          UP BROADCAST POINTOPOINT RUNNING NOARP  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:3 overruns:0 carrier:0
          collisions:0 txqueuelen:0
          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

vmbr0    Link encap:Ethernet  HWaddr 00:24:81:d1:2f:a5
          inet addr:xxx.xxx.xxx.xxx  Bcast:xxx.xxx.xxx.xxx  Mask:255.255.255.128
          inet6 addr: fe80::224:81ff:fed1:2fa5/64 Scope:Link
          inet6 addr: 2a00:c1e0:0:3::2:1/64 Scope:Global
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:150 errors:0 dropped:0 overruns:0 frame:0
          TX packets:109 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0
          RX bytes:25132 (24.5 KiB)  TX bytes:76046 (74.2 KiB)

Ein anpingen von Google klappt nicht...

Code:

root@host01:~# ping6 ipv6.google.com
PING ipv6.google.com(mil01s25-in-x0e.1e100.net) 56 data bytes
From 2a00:c1e0:0:3::2:1 icmp_seq=2 Destination unreachable: Address unreachable

Auch der Gateway kann ich nicht anpingen

Code:

root@host01:~# ping6 2a00:c1e0:0000:0003::1
PING 2a00:c1e0:0000:0003::1(2a00:c1e0:0:3::1) 56 data bytes
From 2a00:c1e0:0:3::2:1 icmp_seq=2 Destination unreachable: Address unreachable

Hat hier jemand einen Denkanstoss was ich noch ausprobieren kann? Bin im Moment mit meinem Latein am ende.

P.S Gibt es eine Möglichkeit welche die config nach 5 Minuten automatisch zurücksetzt und neu startet falls man was falsch macht? Dachte da gab es mal was.

Viewing all articles
Browse latest Browse all 7443