jumaris / sshtunnel

Automatically exported from code.google.com/p/sshtunnel
GNU General Public License v3.0
1 stars 0 forks source link

Feature request #11

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
1.可以自定义需要代理程序的端口, 
现在只代理了80和443端口,能否增加一个设置界面,自定义哪
些端口需要代理 ( Asproxy具有这个功能 )
2.在服务停止的时候不要使用iptables -t nat -F
因为有可能其他程序也设置了iptables的nat规则,这样全部暴力
清楚的话会造成冲突。

Original issue reported on code.google.com by firefoxe...@gmail.com on 19 Feb 2011 at 1:19

GoogleCodeExporter commented 8 years ago
iptables 
这一块我不太熟,不知你能不能参与到本项目,实现包括自��
�义规则等功能?

Original comment by max.c...@gmail.com on 19 Feb 2011 at 1:51

GoogleCodeExporter commented 8 years ago
iptables 
我熟练,但是我不会写界面,到时候我可以提供给你重定向��
�本

Original comment by firefoxe...@gmail.com on 19 Feb 2011 at 1:55

GoogleCodeExporter commented 8 years ago
嗯,现在的话要怎样的iptables脚本才不会破坏其他程序的配置
呢?

Original comment by max.c...@gmail.com on 22 Feb 2011 at 10:59

GoogleCodeExporter commented 8 years ago
对应于自己设置的每一条iptables,如

iptables -A -t nat XXXX

在停止服务的使用使用

iptables -D -t nat XXXX

删除

而不是使用 iptables -t nat -F 
(这个命令会将nat表中的所有规则均删除,如果其他程序也设�
��过规则的话,你也会把它们的规则删掉的。)

ps: skating去了,两小时后回来

Original comment by firefoxe...@gmail.com on 22 Feb 2011 at 12:55

GoogleCodeExporter commented 8 years ago

Original comment by max.c...@gmail.com on 1 Mar 2011 at 11:29