SSH默认转发远程服务器端口时监听loop,只能通过本地访问端口,如:
ssh -R 0.0.0.0:9022:localhost:22 root@haiyun.me
修改配置文件允许自定义监听地址:
echo 'GatewayPorts yes' >> /etc/ssh/sshd_config
/etc/init.d/sshd restart
标签:none
发布时间:August 18, 2014 // 分类:网络工具 // No Comments
SSH默认转发远程服务器端口时监听loop,只能通过本地访问端口,如:
ssh -R 0.0.0.0:9022:localhost:22 root@haiyun.me
修改配置文件允许自定义监听地址:
echo 'GatewayPorts yes' >> /etc/ssh/sshd_config
/etc/init.d/sshd restart
标签:none