|
|
大家好,我试图在Tomato 1.28(路由器WNR3500L)下面设置Native ipv6,学校指定的Prefix是2001:da8:201:1082::/64,对应的网关是2001:da8:201:1082::1.
填好Prefix并手动指定了Router ipv6 address: 2001:da8:201:1082:c23f:eff:fe17:12ee之后(对应lan(br0)口),路由上面的wan(vlan2)口得到了正确的ipv6地址2001:da8:201:1082:c23f:eff:fe17:12ef,我可以在路由器上ping6和traceroute6 ipv6网站例如ipv6.google.com.hk。本地电脑也得到了相应的ipv6地址,并可以通过http://[ 2001:da8:201:1082:c23f:eff:fe17:12ee]:80来登录路由器的管理界面。但是,在本地电脑ping6 ipv6.google.com.hk的话总是Request timed out, traceroute6显示在经过了lan口[2001:da8:201:1082:c23f:eff:fe17:12ee]之后就是Request timed out。我怀疑是路由器的ip6tables有问题,下面是ip6tables的内容,大牛们能帮忙看一下具体是哪里出问题了么?谢谢啦!我自己对照http://wiki.openwrt.org/doc/howto/ipv6上面的查了一遍,找不到问题所在。
Chain INPUT (policy DROP 0 packets, 0 bytes)
pkts bytes target prot opt in out source destination
0 0 DROP all * * ::/0 ::/0 rt type:0
108 13067 ACCEPT all * * ::/0 ::/0 state RELATED,ESTABLISHED
0 0 ACCEPT 59 * * ::/0 ::/0 length 40
87 7880 ACCEPT all br0 * ::/0 ::/0
0 0 ACCEPT all lo * ::/0 ::/0
0 0 ACCEPT icmpv6 * * ::/0 ::/0 ipv6-icmp type 1
0 0 ACCEPT icmpv6 * * ::/0 ::/0 ipv6-icmp type 2
0 0 ACCEPT icmpv6 * * ::/0 ::/0 ipv6-icmp type 3
0 0 ACCEPT icmpv6 * * ::/0 ::/0 ipv6-icmp type 4
0 0 ACCEPT icmpv6 * * ::/0 ::/0 ipv6-icmp type 128
0 0 ACCEPT icmpv6 * * ::/0 ::/0 ipv6-icmp type 129
0 0 ACCEPT icmpv6 * * ::/0 ::/0 ipv6-icmp type 130
0 0 ACCEPT icmpv6 * * ::/0 ::/0 ipv6-icmp type 131
0 0 ACCEPT icmpv6 * * ::/0 ::/0 ipv6-icmp type 132
0 0 ACCEPT icmpv6 * * ::/0 ::/0 ipv6-icmp type 133
14 1456 ACCEPT icmpv6 * * ::/0 ::/0 ipv6-icmp type 134
8 576 ACCEPT icmpv6 * * ::/0 ::/0 ipv6-icmp type 135
7 448 ACCEPT icmpv6 * * ::/0 ::/0 ipv6-icmp type 136
0 0 ACCEPT icmpv6 * * ::/0 ::/0 ipv6-icmp type 141
0 0 ACCEPT icmpv6 * * ::/0 ::/0 ipv6-icmp type 142
0 0 ACCEPT icmpv6 * * ::/0 ::/0 ipv6-icmp type 143
0 0 ACCEPT icmpv6 * * ::/0 ::/0 ipv6-icmp type 148
0 0 ACCEPT icmpv6 * * ::/0 ::/0 ipv6-icmp type 149
0 0 ACCEPT icmpv6 * * ::/0 ::/0 ipv6-icmp type 151
0 0 ACCEPT icmpv6 * * ::/0 ::/0 ipv6-icmp type 152
0 0 ACCEPT icmpv6 * * ::/0 ::/0 ipv6-icmp type 153
0 0 ACCEPT tcp * * ::/0 ::/0 tcp dpt:8080
0 0 ACCEPT tcp * * ::/0 ::/0 tcp dpt:2222
Chain FORWARD (policy DROP 0 packets, 0 bytes)
pkts bytes target prot opt in out source destination
0 0 DROP all * * ::/0 ::/0 rt type:0
0 0 ACCEPT all br0 br0 ::/0 ::/0
60 4276 monitor all * vlan2 ::/0 ::/0
0 0 ACCEPT all * * ::/0 ::/0 state RELATED,ESTABLISHED
0 0 DROP all !br0 vlan2 ::/0 ::/0
0 0 ACCEPT 59 * * ::/0 ::/0 length 40
0 0 ACCEPT icmpv6 * * ::/0 ::/0 ipv6-icmp type 1
0 0 ACCEPT icmpv6 * * ::/0 ::/0 ipv6-icmp type 2
0 0 ACCEPT icmpv6 * * ::/0 ::/0 ipv6-icmp type 3
0 0 ACCEPT icmpv6 * * ::/0 ::/0 ipv6-icmp type 4
4 320 ACCEPT icmpv6 * * ::/0 ::/0 ipv6-icmp type 128
0 0 ACCEPT icmpv6 * * ::/0 ::/0 ipv6-icmp type 129
0 0 wanin all vlan2 * ::/0 ::/0
56 3956 wanout all * vlan2 ::/0 ::/0
56 3956 ACCEPT all br0 * ::/0 ::/0
Chain OUTPUT (policy ACCEPT 222 packets, 114K bytes)
pkts bytes target prot opt in out source destination
0 0 DROP all * * ::/0 ::/0 rt type:0
Chain monitor (1 references)
pkts bytes target prot opt in out source destination
0 0 RETURN tcp * * ::/0 ::/0 WEBMON --max_domains 300 --max_searches 300
Chain wanin (1 references)
pkts bytes target prot opt in out source destination
Chain wanout (1 references)
pkts bytes target prot opt in out source destination
Chain PREROUTING (policy ACCEPT 2994 packets, 568K bytes)
pkts bytes target prot opt in out source destination
Chain INPUT (policy ACCEPT 224 packets, 23427 bytes)
pkts bytes target prot opt in out source destination
Chain FORWARD (policy ACCEPT 60 packets, 4276 bytes)
pkts bytes target prot opt in out source destination
Chain OUTPUT (policy ACCEPT 222 packets, 114K bytes)
pkts bytes target prot opt in out source destination
Chain POSTROUTING (policy ACCEPT 313 packets, 122K bytes)
pkts bytes target prot opt in out source destination |
|