ssh vpn
2016-02-16 14:55:23 16 举报
ssh vpn
作者其他创作
大纲/内容
家中电脑
办公室电脑
1、建立隧道 [虚拟设备号tun0] ssh -f -w 0:0 a.b.c.d true2、配置IP ifconfig tun0 10.1.1.1 10.1.1.2 netmask 255.255.255.2523、添加到办公室的路由route add -net b.z.w.0/24 gw 10.1.1.2 dev tun0
办公室提供路由的ssh机器ip:b.z.w.1网络:b.z.w0/24
1、添加到家中的路由route add -net a.x.y.0/24 gw b.z.w.1
隧道
公网服务器ip:a.b.c.d
1、添加到办公室的路由route add -net b.z.w.0/24 gw a.x.y.1
1、配置IP ifconfig tun0 10.1.1.2 10.1.1.1 netmask 255.255.255.252 ifconfig tun1 10.2.1.2 10.2.1.1 netmask 255.255.255.2522、添加到家中的路由route add -net a.x.y.0/24 gw 10.2.1.2 dev tun03、添加到办公室的路由route add -net b.z.w.0/24 gw 10.1.1.2 dev tun1
1、与服务器建立隧道 [虚拟设备号tun1] ssh -f -w 1:1 a.b.c.d true2、配置IP ifconfig tun0 10.2.1.1 10.2.1.2 netmask 255.255.255.2523、添加到家中的路由route add -net a.x.y.0/24 gw 10.2.1.2 dev tun1
提供路由的ssh机器ip:a.x.y.1网络 a.x.y.0/24
收藏
0 条评论
回复 删除
下一页