this is my tunnel details:
Server IPv4 Address:216.218.221.42
Server IPv6 Address:2001:470:35:270::1/64
Client IPv4 Address:202.47.88.67
Client IPv6 Address:2001:470:35:270::2/6
Routed IPv6 Prefixes
Routed /64:2001:470:36:270::/64
Routed /48:2001:470:ec64::/48
The network which is only used with the connection between your endpoint and the servers at HE.
The conf are:
modprobe ipv6
ip tunnel add he-ipv6 mode sit remote 216.218.221.42 local 202.47.88.67 ttl 255
ip link set he-ipv6 up
ip addr add 2001:470:35:270::2/64 dev he-ipv6
ip route add ::/0 dev he-ipv6
ip -f inet6 addr
so,now i wanna make it as router that can connect multiple clients through wireless because as discussed here before that is also able to connect thru wireless (not only LAN) by using radvd.conf
radvd.conf:
interface eth0 {
AdvSendAdvert on;
MinRtrAdvInterval 3;
prefix 2001:470:36:270::/64 {
AdvOnLink on;
AdvAutonomous on;
AdvRouterAddr on;
};
};
and the router and client are in different network, so as suggested by mr.cholzhauer i shud use prefix /48 for client interface:
auto wlan0
iface wlan0 inet6 static
address 2001:470:ec64::2
netmask 4
for the router:
auto eth0
iface eth0 inet6 static
address 2001:470:36:270::1
netmask 64
#radvdump
^C
*error
and the client still cant connect to ipv6 site
client ifconfig:
ipv6@ipv6-laptop:~$ ifconfig
eth0 Link encap:Ethernet HWaddr 00:e0:4c:87:0f:8e
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
Interrupt:29
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:319 errors:0 dropped:0 overruns:0 frame:0
TX packets:319 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:36224 (36.2 KB) TX bytes:36224 (36.2 KB)
wlan0 Link encap:Ethernet HWaddr 48:5d:60:53:2f:6b
inet addr:172.27.11.238 Bcast:172.27.11.255 Mask:255.255.255.0
inet6 addr: [b]2001:470:36:270[/b]:4a5d:60ff:fe53:2f6b/64 Scope:Global
inet6 addr: fe80::4a5d:60ff:fe53:2f6b/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:734174 errors:0 dropped:0 overruns:0 frame:0
TX packets:264811 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:688070763 (688.0 MB) TX bytes:24831803 (24.8 MB)
router ifconfig:
eth0 Link encap:Ethernet HWaddr 00:26:18:EE:C6:4F
inet addr:202.47.88.67 Bcast:202.47.88.79 Mask:255.255.255.240
inet6 addr: fe80::226:18ff:feee:c64f/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:2638691 errors:0 dropped:0 overruns:0 frame:0
TX packets:26406 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:247245133 (235.7 MiB) TX bytes:3949177 (3.7 MiB)
Interrupt:28 Base address:0xa000
eth2 Link encap:Ethernet HWaddr 00:40:F4:EA:7D:DD
inet addr:172.27.11.66 Bcast:172.27.11.255 Mask:255.255.255.0
inet6 addr: fe80::240:f4ff:feea:7ddd/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:1954651 errors:568303 dropped:661603 overruns:568303 frame:0
TX packets:2735 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:177805561 (169.5 MiB) TX bytes:245523 (239.7 KiB)
Interrupt:20 Base address:0x4c00
he-ipv6 Link encap:IPv6-in-IPv4
inet6 addr: fe80::ca2f:5843/128 Scope:Link
inet6 addr: [b]2001:470:35:270::2/64 [/b]Scope:Global
UP POINTOPOINT RUNNING NOARP MTU:1480 Metric:1
RX packets:774 errors:0 dropped:0 overruns:0 frame:0
TX packets:904 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:426982 (416.9 KiB) TX bytes:123000 (120.1 KiB)
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:413 errors:0 dropped:0 overruns:0 frame:0
TX packets:413 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:47135 (46.0 KiB) TX bytes:47135 (46.0 KiB)
i applied all ways those are discussed on this topic, shud revies from the prev discussion
regards
