View Single Post
  #2   (View Single Post)  
Old 28th September 2008
J65nko J65nko is offline
Administrator
 
Join Date: May 2008
Location: Budel - the Netherlands
Posts: 4,131
Default

I only played with IPv6 on my local OBSD network a few years ago.

Can you ping localhost?
Code:
$ ping6 -c4 ::1
Can you ping your local ipv6 address
Code:
ping6 -c4 fe80::21c:c0ff:fe51:183f%re0
Then ping your interface 2001:41d0:1:b9b1::1 and the alias IP addresses.

Check your routing tables with netstat -rn. Is the default router fe80::21e:79ff:fe1e:d400 listed in the IPv6 routing table? Can you ping the default router?

BTW You added ipv6_defaultrouter="fe80::21e:79ff:fe1e:d400" to your /etc/rc.conf, but this line is not mentioned in their guide
Quote:
ipv6_enable="YES"
ipv6_network_interface="rl0"
ipv6_ifconfig_rl0="2001:41D0:1:756::1 prefixlen 64"
ipv6_ifconfig_rl0_alias0="2001:41D0:1:756::12 prefixlen 64
Under Route: Gateway IPv6 they say that the default gateway ipv6 address always ends on 5 times 'FF'.
Quote:
L' IPv6 du serveur: 2001:41D0:1:46e::/64 devient 2001:41D0:1:4 + 5 fois FF.
Gateway ipv6: 2001:41D0:1:4FF:FF:FF:FF:FF
Or in English (I don't need google translator )
Code:
IPv6 of server: 2001:41D0:1:46e::/64 becomes 2001:41D0:1:4 + 5 times FF.
Gateway ipv6: 2001:41D0:1:4FF:FF:FF:FF:FF
This is a public address, while the fe:80* addresses are local.

IPv6 is mainly autoconfiguring and the rtsol command is the IPv6 equivalent of the IPv4 DHCP dhclient, so I wonder why the tell you to do a rtsol and take a note of the default router IPv6 addressand never use it.

If I were you I would contact their technical support and point this out
__________________
You don't need to be a genius to debug a pf.conf firewall ruleset, you just need the guts to run tcpdump
Reply With Quote