SSH 隧道-通道 3:打开失败:管理禁止:打开失败

SSH 隧道-通道 3:打开失败:管理禁止:打开失败
ssh -D 9090 user@host

当我尝试通过 socks5 (127.0.0.1:9090) 请求网页时,我得到:

channel 3: open failed: administratively prohibited: open failed

服务器 sshd_config:

#MaxStartups 10:30:100
PermitTunnel yes
#ChrootDirectory none
#VersionAddendum none

# no default banner path
#Banner none

# Accept locale-related environment variables
AcceptEnv LANG LC_CTYPE LC_NUMERIC LC_TIME LC_COLLATE LC_MONETARY LC_MESSAGES
AcceptEnv LC_PAPER LC_NAME LC_ADDRESS LC_TELEPHONE LC_MEASUREMENT
AcceptEnv LC_IDENTIFICATION LC_ALL LANGUAGE
AcceptEnv XMODIFIERS

# override default of no subsystems
Subsystem       sftp    /usr/libexec/openssh/sftp-server

# Example of overriding settings on a per-user basis
#Match User anoncvs
#       X11Forwarding no
        AllowTcpForwarding yes
        PermitTTY yes
#       ForceCommand cvs server
#       PermitTunnel yes
        GatewayPorts       yes

我错过了什么?

答案1

我意识到这是一个老问题......但以防万一有人通过谷歌来到这里。

查看 https://unix.stackexchange.com/questions/14160/ssh-tunneling-error-channel-1-open-failed-administratively-prohibited-open 它有许多建议的修复方法。

顺便问一下,这个问题已经被问过很多次了,为什么你还要发帖提问呢?

相关内容