光猫的IPv6防火墙最有意思,其实是要开启WAN到LAN的端口过滤功能,然后设置过滤类型为黑名单,保持黑名单为空,这样就关掉防火墙了。
AsusWRT/梅林固件在IPv6页面有一个专门的防火墙开关。
小米路由器的IPv6防火墙不能通过正常途径关闭,只能通过ssh登录路由器,然后执行ip6tables -F
命令来关闭。可以写到开机自启动脚本里,/etc/rc.local,比如我的是:
root@XiaoQiang:/etc# cat rc.local
# Put your custom commands here that should be executed once# the system init finished. By default this file does nothing.
ip6tables -F
ip6tables -X
ip6tables -P INPUT ACCEPT
ip6tables -P OUTPUT ACCEPT
ip6tables -P FORWARD ACCEPT
换其它端口试试。