[整理]解决VPN无法访问内网问题或者内网不能访问VPN的问题
iptables -t nat -A POSTROUTING -s 192.168.10.0/24 -j MASQUERADE
iptables -t nat -A POSTROUTING -s 10.0.1.0/24 -j MASQUERADE
还有一个对IP进行操作;比如
iptables -I INPUT -s ***.***.***.*** -j DROP 增加。。
iptables -D INPUT -s ***.***.***.*** -j DROP 删除。。
域名:
iptables -A OUTPUT -m string --string "youtube.com" --algo bm --to 65535 -j DROP # 添加屏蔽规则iptables -D OUTPUT -m string --string "youtube.com" --algo bm --to 65535 -j DROP # 删除屏蔽规则,上面添加的代码是什么样,那么删除的代码就是把 -A 改成 -D
关机命令
在openwrt系统中发现没有shutdown命令,可以采用下面的命令关闭系统。
kill -USR1 1
注意:系统会立即关闭
kill -USR2 1