Ubuntu Linux Proxy network 에서 ssh 연결하기
Proxy 를 사용하는 network 에서 외부 서버에 ssh 를 연결하기 위해서는 먼저 connect 명령을 실행하기 위한 package를 설치 하여야 합니다.
$ sudo apt-get install connect-proxy
또는
$ wget http://www.meadowy.org/~gotoh/ssh/connect.c
$ gcc connect.c -o connect
$ sudo cp connect /usr/local/bin
$ chmod +x /usr/local/bin/connect
그리고 PC 의 ~/.ssh/config 파일을 수정합니다.
Host sshServerNameOrIPaddress
ProxyCommand connect -H proxy.server.ipAddress:port %h %p
ProxyCommand connect -4 -S proxy.server.ipAddress:port %h %p
이제 연결만 하면 됩니다.
$ ssh sshServerNameOrIPaddress
OK?
'Ubuntu (linux)' 카테고리의 다른 글
Ubuntu 에서 옵티머스 G Jellybean MTP 사용하기 (0) | 2013.02.18 |
---|---|
linux ubuntu 특정 폴더 모두 찾아 삭제하기 (0) | 2013.01.31 |
/proc folder 내부의 파일의 용도 (0) | 2013.01.18 |
Ubuntu linux Agent admitted failure to sign using the key Error 대처법 (0) | 2013.01.11 |
Ubuntu Linux grep egrep 명령어 사용법 (0) | 2013.01.07 |