Hi,
I have been trying to get ipv6 with static address working for sometime. I have checked things with my ISP, and there are no problems on their side with the configuration. It seems that there is something wrong with the configuration which I have, I have followed instructions in 32.12.5.1 IPv6 Client Settings in FreeBSD Handbook.
So here is my configurations:
/etc/rc.conf
/etc/pf.conf
[CMD=]netstat -rn -f inet6[/CMD]
Am I missing some configurations? I can resolv, ping different hosts, but I am facing packet loss. Is there something special with pf, since it seems that I cant see neighbors in my neighbor table with ndp
Best Rergards
Folivora
I have been trying to get ipv6 with static address working for sometime. I have checked things with my ISP, and there are no problems on their side with the configuration. It seems that there is something wrong with the configuration which I have, I have followed instructions in 32.12.5.1 IPv6 Client Settings in FreeBSD Handbook.
So here is my configurations:
/etc/rc.conf
Code:
ipv6_enable="YES"
ipv6_network_interface="re0"
ipv6_ifconfig_re0="2001:1bc8:102:1234::4"
ipv6_defaultrouter="2001:1bc8:102:1234::1"
/etc/pf.conf
Code:
icmp6_types_out = "{ echoreq, unreach, neighbrsol, routersol }"
icmp6_types_in = "{ echoreq, unreach, neighbrsol, neighbradv, routeradv }"
pass out on $ext_if inet6 proto { tcp, udp } keep state
pass out on $int_if inet6 proto { tcp, udp } keep state
pass out on $ext_if inet6 proto icmp6 all icmp6-type $icmp6_types_out
pass in on $ext_if inet6 proto icmp6 all icmp6-type $icmp6_types_in
[CMD=]netstat -rn -f inet6[/CMD]
Code:
Routing tables
Internet6:
Destination Gateway Flags Netif Expire
::/96 ::1 UGRS lo0 =>
default 2001:1bc8:102:1234::1 UGS re0
::1 ::1 UH lo0
::ffff:0.0.0.0/96 ::1 UGRS lo0
2001:1bc8:102:1234::/64 link#2 U re0
2001:1bc8:102:1234::4 link#2 UHS lo0
fe80::/10 ::1 UGRS lo0
fe80::%lo0/64 link#4 U lo0
fe80::1%lo0 link#4 UHS lo0
ff01:2::/32 2001:1bc8:102:1234::4 U re0
ff01:4::/32 fe80::1%lo0 U lo0
ff02::/16 ::1 UGRS lo0
ff02::%re0/32 2001:1bc8:102:1234::4 U re0
ff02::%lo0/32 fe80::1%lo0 U lo0
Am I missing some configurations? I can resolv, ping different hosts, but I am facing packet loss. Is there something special with pf, since it seems that I cant see neighbors in my neighbor table with ndp
Best Rergards
Folivora