My ISP started rolling out IPv6 and gave my a 56-bits block. I managed to get it working on my FreeBSD-server, which I also use as a gateway/firewall to the internet. I can ping6 my modem, clients on my LAN and even the internet.
My clients can ping6 each other and the FreeBSD-server. But they can't ping beyond the FreeBSD-server. So, something seems to be wrong with routing. But I can't figure out what.
My rc.conf
em0 is connected to my modem and msk0 is connected to my LAN.
What am I missing here?
My clients can ping6 each other and the FreeBSD-server. But they can't ping beyond the FreeBSD-server. So, something seems to be wrong with routing. But I can't figure out what.
My rc.conf
Code:
ipv6_gateway_enable="YES"
ipv6_router_enable="YES"
ifconfig_em0_ipv6="inet6 2000:1000:beef:ab01::1 prefixlen 64"
ifconfig_msk0_ipv6="inet6 2000:1000:beef:ab02::1 prefixlen 64"
ipv6_defaultrouter="2000:1000:beef:ab01:3001:3002:3003:3004"
rtadvd_enable="YES"
rtadvd_interfaces="msk0"
em0 is connected to my modem and msk0 is connected to my LAN.
What am I missing here?