红联Linux门户
Linux帮助

ubuntu下openssl客户端通过代理服务器访问远程主机

发布时间:2015-12-31 10:39:20来源:linux网站作者:yuanchao99

问题:

公司内网访问外部网站需要有代理,代理服务器为proxy.com:8000。

现在有一台外网ssh服务器,需要从内网访问。

直接ssh username@server:port无法连接。


解决办法:

1.安装connnect_proxy:sudo apt-get install connect-proxy

2.修改config文件:vim ~/.ssh/config,加入以下内容:

ProxyCommand connect -H proxy.com:8000 %h %p

3.然后就可以连接了:ssh username@server:port


当使用代理服务器连接互联网时如何安装Ubuntu桌面版:http://www.linuxdiyf.com/linux/15584.html

如何配置VMWare中Ubuntu的代理服务器?:http://www.linuxdiyf.com/linux/10727.html

ubuntu安装openssl库:http://www.linuxdiyf.com/linux/13828.html

Ubuntu编译环境构建(openssl):http://www.linuxdiyf.com/linux/13751.html

Linux下使用OpenSSL生成证书:http://www.linuxdiyf.com/linux/11951.html