singbox 导致 ipv6 无法访问
这两天在 openwrt 上折腾了 singbox ,总算能让局域网能够正常访问外部了。但是发现我的 bt 端口外部没法访问了,只有 ipv6 的外网 ip ,用 itdog.cn 检测,<my-ipv6>:51413 端口不能访问了,这样我的 pt 上传会受影响
singbox 使用 tun 的方式,op 上设置了单独的 zone ,lan 可以转发到 singbox 上。 之前的防火墙规则如下:
-A zone_wan_forward -p tcp -m tcp --dport 51413 -m comment --comment "!fw3: allow-ipv6" -j ACCEPT
-A zone_wan_forward -p udp -m udp --dport 51413 -m comment --comment "!fw3: allow-ipv6" -j ACCEPT
-A zone_wan_input -p tcp -m tcp --dport 51413 -m comment --comment "!fw3: allow-ipv6-in" -j ACCEPT
-A zone_wan_input -p udp -m udp --dport 51413 -m comment --comment "!fw3: allow-ipv6-in" -j ACCEPT
是否需要在 tun0 上设置同样的规则。
另外,如何将 dnsmasq 的 dns 请求转发到 singbox ,singbox 是不是需要设置一个 inbounds 的 dns 端口响应请求?