[SOLVED] IPv6 auf Hostsystem geht nicht

CrafterGamer

New Member
Oct 15, 2018
6
1
3
26
Hey Leute,

und zwar habe ich ein Problem mit IPv6 auf dem Hostsystem.
Auf den VMs geht die IPv6 ohne probleme aber ich möchte das es auch auf dem Host geht.
Ich schätze mal das es an meiner Netzwerk Config liegt.

Ping vom Host:
Code:
ping6 -c 3 ipv6.google.com
connect: Network is unreachable

Ping von VM:
Code:
ping6 -c 3 ipv6.google.com
PING ipv6.google.com(fra16s20-in-x0e.1e100.net (2a00:1450:4001:821::200e)) 56 data bytes
64 bytes from fra16s20-in-x0e.1e100.net (2a00:1450:4001:821::200e): icmp_seq=1 ttl=57 time=5.36 ms
64 bytes from fra16s20-in-x0e.1e100.net (2a00:1450:4001:821::200e): icmp_seq=2 ttl=57 time=5.41 ms
64 bytes from fra16s20-in-x0e.1e100.net (2a00:1450:4001:821::200e): icmp_seq=3 ttl=57 time=5.41 ms

--- ipv6.google.com ping statistics ---
3 packets transmitted, 3 received, 0% packet loss, time 2002ms
rtt min/avg/max/mdev = 5.365/5.399/5.417/0.088 ms

Netzwerk Config vom Host:
Code:
auto lo
iface lo inet loopback
iface lo inet6 loopback

iface enp2s0 inet manual
iface enp2s0 inet6 manual

auto vmbr0
iface vmbr0 inet static
  address xxx.xxx.xxx.xxx
  netmask 255.255.255.192
  gateway xxx.xxx.xxx.193
  bridge_ports enp2s0
  bridge_stp off
  bridge_fd 0
  up route add -net xxx.xxx.xxx.192 netmask 255.255.255.192 gw xxx.xxx.xxx.193 dev enp2s0

iface vmbr0 inet6 static
  address xxxx:xxxx:xxxx:xxxx::2
  netmask 64
  gateway fe80::1

Hat jemand von euch vielleicht schon mal so ein ähnliches Problem gehabt?

Vielen Dank im vorraus


Problem ist gelöst hier

Liebe Grüße
Julian
 
Last edited:
Problem gelöst!!!

Ich habe meine Netzwerk Konfiguration vom Host so geschrieben:
Code:
auto lo
iface lo inet loopback
iface lo inet6 loopback

auto vmbr0
iface vmbr0 inet static
  address 188.xxx.xxx.231
  netmask 255.255.255.192
  pointopoint 188.xxx.xxx.193
  broadcast 188.xxx.xxx.255
  gateway 188.xxx.xxx.193
  bridge_ports enp2s0
  bridge_stp off
  bridge_fd 0
  up ip route add 188.xxx.xxx.227/32 dev vmbr0

iface vmbr0 inet6 static
  address 2a01:xxxx:xxxx:xxxx::1
  netmask 64
  gateway fe80::1
  bridge_ports enp2s0
  bridge_stp off
  bridge_fd 0
So habe ich jetzt IPv6 auf dem Host.

Nur dann hatte ich ein Problem mit der VM das sie keine Verbindung ins Internet hat.
Da ich den Adapter gebridge habe muss man natürlich auch auf der VM den gleichen Gateway angeben und das habe ich so gemacht:
Code:
auto lo
iface lo inet loopback

allow-hotplug ens18
iface ens18 inet static
        address 188.xxx.xxx.227
        netmask 255.255.255.192
        pointopoint 188.xxx.xxx.193
        gateway 188.xxx.xxx.193

iface ens18 inet6 static
        address 2a01:xxxx:xxxx:xxxx::2
        netmask 64
        gateway fe80::1
und danach hat alles so wie ich es wollte funktioniert.

Ich hoffe das ich euch damit weiter Helfen kann.

Und danke an alle die mir hier geholfen haben :D

Mit Freundlichen Grüßen
Julian
 
  • Like
Reactions: Alwin

About

The Proxmox community has been around for many years and offers help and support for Proxmox VE, Proxmox Backup Server, and Proxmox Mail Gateway.
We think our community is one of the best thanks to people like you!

Get your subscription!

The Proxmox team works very hard to make sure you are running the best software and getting stable updates and security enhancements, as well as quick enterprise support. Tens of thousands of happy customers have a Proxmox subscription. Get yours easily in our online shop.

Buy now!