在 EL6 上使用 sshocks5 隧道进行 Yum 更新失败

在 EL6 上使用 sshocks5 隧道进行 Yum 更新失败

我必须在 hasnoinet 服务器上执行更新。

我在 hasnoinet 盒子上创建了 ssh 隧道并确保它正常工作:

ssh -D 1080 hasinternet
curl --socks5-hostname localhost:1080 google.com

我用两种方式定义了http代理:

export http_proxy=http://localhost:1080/
export HTTP_PROXY=http://localhost:1080/
export FTP_PROXY=http://localhost:1080/

或者

export http_proxy=socks5h://localhost:1080
export HTTPS_PROXY=socks5h://localhost:1080
export ALL_PROXY=socks5h://localhost:1080

我无法使用curl google.com,结果yum update失败。我使用的是红帽EL6。

相关内容