1
vibbow 2015 年 4 月 10 日
端口转发即可
|
2
msg7086 2015 年 4 月 10 日
也可以试试nginx,如果不在意中间人的话。
|
3
Septembers 2015 年 4 月 10 日
haproxy
|
4
Septembers 2015 年 4 月 10 日
如果要支持TLS请使用sniproxy
|
5
002jnm 2015 年 4 月 10 日
socat
|
9
wy315700 2015 年 4 月 10 日 @czb 我用的xinetd
service imap { type = UNLISTED port = 993 bind = 0.0.0.0 socket_type = stream wait = no user = nobody redirect = imap.gmail.com 993 per_source = UNLIMITED cps = 100 2 } service imap-585 { type = UNLISTED port = 585 bind = 0.0.0.0 socket_type = stream wait = no user = nobody redirect = imap.gmail.com 585 per_source = UNLIMITED cps = 100 2 } |