ssh的端口转发报错open failed: administratively prohibited: open failed
配置ssh端口转发.
客户端连接:
ssh root@49.234.100.17 -v -C -L 127.0.0.1:8891:10.0.1.3:8080
客户端连接端口:
curl http://127.0.0.1:8891/
报错如下:
curl: (56) Recv failure: Connection reset by peer
服务端返回报错如下:
channel 2: open failed: administratively prohibited: open failed
debug1: channel 2: free: direct-tcpip: listening port 8891 for 10.0.1.3 port 8080, connect from 127.0.0.1 port 37200 to 127.0.0.1 port 8891, nchannels 3
您好, vim /etc/ssh/sshd_config 修改如下配置:
PermitTunnel yes
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。