@
bluewateryoyo 查看 iptables
iptables -nvL --line-number
查看 iptables nat 表
iptables -nvL -t nat --line-number
查看系统服务比如 SS 监听端口
netstat -apn
修改 iptables
vi /etc/iptables.test.rules
生效刚才修改 iptables 规则
iptables-restore < /etc/iptables.test.rules
按 ESC 键回到命令模式,然后输入:w 保存即可,也可以输入:wq!保存文件并退出。:q 不保存文件,退出 vi ,:q!不保存文件,强制退出 vi 。
某网友写的比较通俗易懂搬瓦工 iptables 教程:
https://blog.phpgao.com/vps_iptables.html注意 SS 部分修改你 SS 端口号“ xxx ”
# Allow shadowsocks connections
# The -dport number should be the same port number you set in config.json
-A INPUT -p tcp --dport xxx -j ACCEPT
iptables 使用说明
https://wiki.archlinux.org/index.php/Iptables_(%E7%AE%80%E4%BD%93%E4%B8%AD%E6%96%87)