返回列表 發帖

OpenVPN —— 最简单的 point-to-pont 连接(没有加密)+ remote gateway出traffic

本帖最後由 角色 於 2013-11-25 20:54 編輯

Server information:
hostname: server.openvpn.com
Virtual VPN IP: 10.200.0.1

Client information
Virtual VPN IP: 10.200.0.2

Port number: Using default UDP port number 1194

根据【1】,在firewall里,加了下面一句就可以用Server Gateway to access the Internet.

iptables -I FORWARD 1 --source 192.168.60.0/24 -j ACCEPT

where 192.168.60.0 should be replaced by your vpn tunnel network address.

【1】http://www.telecom-cafe.com/forum/viewthread.php?tid=5112

TOP

本帖最後由 角色 於 2013-11-27 21:50 編輯

要把 traffic 往 Server Gateway走,应该firewall有做些工作。

https://forum.openwrt.org/viewtopic.php?id=18845
https://forums.openvpn.net/topic12502.html

TOP

你这个问题要将来慢慢测试。

TOP

point-to-pont 连接(没有加密), 那会不会 天朝的XX更加容易reset到连接啊?? 

TOP

备用帖子!Results

TOP

本帖最後由 角色 於 2013-11-27 20:47 編輯

Client configuration on Windows Xp
  1. C:\Program Files\OpenVPN\bin>openvpn.exe --ifconfig 10.200.0.2 10.200.0.1 --dev t
  2. un --remote server.openvpn.com
複製代碼

TOP

本帖最後由 角色 於 2013-11-25 20:49 編輯

Server Configuration
  1. openvpn --ifconfig 10.200.0.1 10.200.0.2 --dev tun
複製代碼

TOP

返回列表