Hello friends,
I am trying hard to configure IPV6 on my Debian10 Proxmox VE6 server, from SoYouStart/OVH.
I am following this tutorial here from OVH themselves:
https://docs.ovh.com/gb/en/dedicated/network-ipv6/
According to what it says, I should configure the /etc/network/interfaces file as follows:
However, it refuses to work, as ipv4 connectivity only is active.
This is my current interfaces setup (IP addresses masked, of course):
Ip6tables at the moment seem to have no restriction:
root@h0:~# ip6tables -L
Chain INPUT (policy ACCEPT)
target prot opt source destination
Chain FORWARD (policy ACCEPT)
target prot opt source destination
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
Please, can you help me to fix what is obviously not configured correctly?
Many thanks!
Kind Regards,
Fabio
I am trying hard to configure IPV6 on my Debian10 Proxmox VE6 server, from SoYouStart/OVH.
I am following this tutorial here from OVH themselves:
https://docs.ovh.com/gb/en/dedicated/network-ipv6/
According to what it says, I should configure the /etc/network/interfaces file as follows:
Code:
# network interfaces
## IPV4 CONFIGURATION
auto lo
iface lo inet loopback
iface eno3 inet manual
auto vmbr0
iface vmbr0 inet dhcp
bridge-ports eno3
bridge-stp off
bridge-fd 0
#### IPV6 CONFIGURATION
iface vmbr0 inet6 static
address IPV6/64
netmask 128
gateway IPV6ff:ff:ff:ff:ff
post-up /sbin/ip -f inet6 route add IPv6_GATEWAY dev vmbr0
post-up /sbin/ip -f inet6 route add default via IPv6_GATEWAY
pre-down /sbin/ip -f inet6 route del IPv6_GATEWAY dev vmbr0
pre-down /sbin/ip -f inet6 route del default via IPv6_GATEWAY
However, it refuses to work, as ipv4 connectivity only is active.
This is my current interfaces setup (IP addresses masked, of course):
Code:
root@h0:~# ifconfig
eno3: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
ether IPV6 txqueuelen 1000 (Ethernet)
RX packets 11127 bytes 1040015 (1015.6 KiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 5802 bytes 618899 (604.3 KiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10<host>
loop txqueuelen 1000 (Local Loopback)
RX packets 190 bytes 51268 (50.0 KiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 190 bytes 51268 (50.0 KiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
veth1001i0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
ether IPV6 txqueuelen 1000 (Ethernet)
RX packets 442 bytes 22051 (21.5 KiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 5084 bytes 374083 (365.3 KiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
veth1002i0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
ether IPV6 txqueuelen 1000 (Ethernet)
RX packets 468 bytes 29695 (28.9 KiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 5068 bytes 378356 (369.4 KiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
veth1003i0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
ether IPV6 txqueuelen 1000 (Ethernet)
RX packets 345 bytes 17385 (16.9 KiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 4635 bytes 342602 (334.5 KiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
veth1005i0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
ether IPV6 txqueuelen 1000 (Ethernet)
RX packets 348 bytes 21571 (21.0 KiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 4334 bytes 323059 (315.4 KiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
veth1006i0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
ether IPV6 txqueuelen 1000 (Ethernet)
RX packets 342 bytes 19667 (19.2 KiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 4056 bytes 302701 (295.6 KiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
veth1007i0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
ether IPV6 txqueuelen 1000 (Ethernet)
RX packets 298 bytes 15494 (15.1 KiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 3741 bytes 279493 (272.9 KiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
veth1008i0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
ether IPV6 txqueuelen 1000 (Ethernet)
RX packets 277 bytes 13974 (13.6 KiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 3471 bytes 258941 (252.8 KiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
vmbr0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet IPV4 netmask 255.255.255.0 broadcast 51.68.204.255
inet6 IPV6 prefixlen 64 scopeid 0x20<link>
ether ac:1f:6b:1b:60:92 txqueuelen 1000 (Ethernet)
RX packets 5231 bytes 595679 (581.7 KiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 3273 bytes 478468 (467.2 KiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
Ip6tables at the moment seem to have no restriction:
root@h0:~# ip6tables -L
Chain INPUT (policy ACCEPT)
target prot opt source destination
Chain FORWARD (policy ACCEPT)
target prot opt source destination
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
Please, can you help me to fix what is obviously not configured correctly?
Many thanks!
Kind Regards,
Fabio