luci-app-vssr
luci-app-vssr copied to clipboard
可否在本地代理那里开启ip地址选项?
开启本地代理后,不能指定ip地址。比如 127.0.0.1
root@ImmortalWrt:~# netstat -an
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address Foreign Address State
tcp 0 0 0.0.0.0:443 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN
tcp 0 0 127.0.0.1:53 0.0.0.0:* LISTEN
tcp 0 0 192.168.2.3:53 0.0.0.0:* LISTEN
tcp 0 0 192.168.2.3:22 0.0.0.0:* LISTEN
tcp 0 0 127.0.0.1:5335 0.0.0.0:* LISTEN
tcp 0 0 :::1088 :::* LISTEN
比如http代理的1088端口,因为我开了ipv6.任何人都能访问,假如我没有设置密码的话。
- Openwrt版本 ImmortalWrt 18.06-k5.4-SNAPSHOT r12158-346e3cbd39
root@ImmortalWrt:/tmp/etc# cat vssr_s.json { "outbound": { "protocol": "freedom" }, "log": { "loglevel": "warning" }, "outboundDetour": [ { "protocol": "blackhole", "tag": "blocked" } ], "inbounds": [ { "port": "1080", "protocol": "socks", "settings": { "accounts": [ { "pass": "password", "user": "user" } ], "auth": "password" } }, { "port": "1088", "protocol": "http", "settings": { "auth": "noauth" } } ] }