Home | 簡體中文 | 繁體中文 | 雜文 | 知乎專欄 | Github | OSChina 博客 | 雲社區 | 雲棲社區 | Facebook | Linkedin | 視頻教程 | 打賞(Donations) | About
知乎專欄多維度架構 微信號 netkiller-ebook | QQ群:128659835 請註明“讀者”

42.4. OpenSSH Tunnel

mysql tunnel

		
$ ssh -L 3306:127.0.0.1:3306 user@example.org
		
		

testing

		
$ mysql -h 127.0.0.1 -uroot -p test
		
		

42.4.1. SOCKS v5 Tunnel

			
ssh -D 1080 <遠程主機地址>
or
ssh -D 7070 <遠程主機地址>
			
			

I prefer 1080 to 7070. the reason is 1080 default for SOCKS port.

			
ssh neo@www.example.com -D 1080
			
			
			
			
ssh -D 1080 -f -C -q -N neo@example.com			
			
			



Explanation of arguments

-D: Tells SSH that we want a SOCKS tunnel on the specified port number (you can choose a number between 1025-65536)
-f: Forks the process to the background
-C: Compresses the data before sending it
-q: Uses quiet mode
-N: Tells SSH that no command will be sent once the tunnel is up

腳本

			
ssh -D 1080 -f -C -q -N neo@vpn.netkiller.cn
pkill ping
ping -i 30 8.8.8.8 > /dev/null &			
			
			

ping 是保持隧道活躍,每個 30秒 ping 訪問一次外部主機以保持 ssh 不會退出。