6.9.2. SMTP/POP3 隧道的端口转发
通过 ssh
建立一个这样的管道连接,从 localhost
的 4025 端口到 remote-server
的 25 端口,并从 localhost
的 4110 端口到 remote-server
的 110 端口,请在本机执行如下命令.
# ssh -q -L 4025:remote-server:25 4110:remote-server:110 username@remote-server
这是跨越因特网建立 SMTP/POP3 服务连接的安全方法。在远程主机”/etc/ssh/sshd_config
“里设置”AllowTcpForwarding
“条目为 “yes
“.