Skip to content

Commit

Permalink
proxmox-ve: Fix IPv6 configuration in routed setup
Browse files Browse the repository at this point in the history
  • Loading branch information
Manawyrm authored and Sarah Mädel committed Dec 10, 2024
1 parent bfcf5aa commit aa38d93
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 10 deletions.
7 changes: 2 additions & 5 deletions tutorials/install-and-configure-proxmox_ve/01.de.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,7 @@ In einer gerouteten Konfiguration dient die Bridge-IP-Adresse des Hostsystems st

# IPv6 des Main-interface
iface enp0s31f6 inet6 static
address 2001:db8::2 # IPv6 Adresse aus dem /64 Subnetz
netmask 64
address 2001:db8::2/128 # /128 auf dem Ethernet, /64 auf der Bridge (um alle anderen Adressen zur Bridge zu routen)
gateway fe80::1

# Bridge für einzelne IP's (fremdes und gleiches Subnetz)
Expand All @@ -192,9 +191,7 @@ In einer gerouteten Konfiguration dient die Bridge-IP-Adresse des Hostsystems st
# IPv6 für die bridge
iface vmbr0 inet6 static
address 2001:db8::3 # Sollte nicht die gleiche Adresse wie das Main-interface sein
netmask 64
up ip -6 route add 2001:db8::/64 dev vmbr0
address 2001:db8::3/64 # Sollte nicht die gleiche Adresse wie das Main-interface sein
# Zusätzliches Subnetz 203.0.113.0/24
auto vmbr1
Expand Down
7 changes: 2 additions & 5 deletions tutorials/install-and-configure-proxmox_ve/01.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,7 @@ In a routed configuration, the host system's bridge IP address serves as the gat

# IPv6 for the main interface
iface enp0s31f6 inet6 static
address 2001:db8::2 # IPv6 address from the /64 subnet
netmask 64
address 2001:db8::2/128 # /128 on the ethernet interface, /64 on the bridge (to route all other addresses via the bridge)
gateway fe80::1

# Bridge for single IP's (foreign and same subnet)
Expand All @@ -192,9 +191,7 @@ In a routed configuration, the host system's bridge IP address serves as the gat
# IPv6 for the bridge
iface vmbr0 inet6 static
address 2001:db8::3 # Should not be the same address as the main Interface
netmask 64
up ip -6 route add 2001:db8::/64 dev vmbr0
address 2001:db8::3/64 # Should not be the same address as the main Interface
# Additional Subnet 203.0.113.0/24
auto vmbr1
Expand Down

0 comments on commit aa38d93

Please sign in to comment.