IPv6-Adresse bei Strato

thoe

Well-Known Member
Feb 1, 2018
77
9
48
52
Guten Morgen Proxmox-Gemeinde,

IPv6 macht mich kirre.
Ich habe auf unserem Dedi bei Strato die IPv6-Basis-Unterstützung statische (IPv6-Adresse) und die Erweiterte IPv6-Unterstützung für weitere IPv6-Adressen in diesem Netz aktiviert.

Leider bekomme ich das Ganze nicht funktionierend an den Start. Habe gefühlt alles durchprobiert. Nichts hat funktioniert.

Hier die aktuelle (nicht funktionierende Konfig):

Bash:
auto lo
iface lo inet loopback

auto eth0
iface eth0 inet dhcp

iface eth1 inet manual

auto vmbr0
iface vmbr0 inet static
    address <ipv4-Basis-ip>/32
    bridge-ports none
    bridge-stp off
    bridge-fd 0
    up ip route add <ipv4-Zusatz-IP>/32 dev vmbr0
#up ip route add zusatzip/32 dev vmbr0

iface vmbr0 inet6 static
    address ipv6-Basis-IP/128
    gateway fe80::1

Habe es gestern schon geschafft das Netzwerk komplett zu töten. Mir fällt echt nichts mehr ein. Während des Gebastels habe ich mich an folgender Anleitung orientiert.
Strato-Anleitung Basis-IPv6
Hat jemand einen Tipp für mich?


Gruß Thomas
 
Had the same Issue, partially copied from OVH, this one works for me.
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
allow-hotplug eth0
iface eth0 inet manual

allow-hotplug eth1
iface eth1 inet manual

auto vmbr0
iface vmbr0 inet static
    address <ip>
    gateway <gw>
    bridge-ports eth1
    bridge-stp off
    bridge-fd 0
    hwaddress <mac>

iface vmbr0 inet6 static
  address <ipv6>
  netmask 64
  gateway fe80::1

up ip addr add <subnet> dev vmbr0
down ip addr del <subnet> dev vmbr0
 
Last edited: