您的位置:首页 > 理论基础 > 计算机网络

ssh通过http代理访问服务器

2016-08-01 17:22 483 查看
centos 7,root user

install:Get Corkscrew

download: https://pkgs.org/download/corkscrew

Add ProxyCommand to your SSH config file:

You may or may not have a configuration file for SSH already. It should be located in $HOME/.ssh/config and is a simple text file. Create one if it does not exist and add lines such as these to it:

Host *

ProxyCommand corkscrew http-proxy.example.com 8080 %h %p

… replacing http-proxy.example.com with the name or address of your http proxy and possibly replacing 8080 with the port on which the proxy listens, which may be 80 or even some other port. The %h and %p will be replaced automatically by SSH with the actual destination host and port.

These two lines tell the SSH client to start another program (corkscrew) to make the actual connection to the SSH server. The Host * line says that this will be done for ALL hosts. If you wish to restrict the hosts for which this will be done, you can put a limited form of regular expression there. See the ssh_config(5) man page for more information. If you don’t have corkscrew in your path or have put it in a non-standard location, you may specify an absolute path to corkscrew in that file as well.

example

ssh username@ip -p port

scp -P port -r ./test username@ip:/home/test/

from:

https://www.mtu.net/~engstrom/ssh-proxy.php
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  centos ssh