返回列表 發帖

OpenVPN 资料馆

本帖最後由 角色 於 2013-11-25 02:06 編輯

因为OpenVPN的用途越来越广,所以把一些资料做成链接方便大家参考之用。

官网:http://openvpn.net

OpenVPN 2.0 Manual Link
OpenVPN 2.1 Manual Link
OpenVPN 2.2 Manual Link
OpenVPN 2.3 Manual Link

Debug

Wireshark http://wiki.wireshark.org/OpenVPN

TOP

本帖最後由 角色 於 2013-11-25 02:08 編輯

Site-to-Site (no redirect gateway) examples

http://www.ihao.org/dz5/thread-15501-1-1.html


Site-to-Site (redirect gateway) examples

http://bitcube.co.uk/content/openvpn-howto
http://lowendbox.com/blog/getting-started-with-openvpn-server/

TOP

备用帖子。

TOP

备用帖子。

TOP

本帖最後由 角色 於 2013-11-24 15:11 編輯

参考书:

OpenVPN:Building and Integrating Virtual Private Networks, 2006 Edition.

附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

TOP

本帖最後由 角色 於 2013-11-24 15:12 編輯

参考书:OpenVPN 2.0 Cookbook, 2011 Edition

这本书让我大开眼界!为什么呢?它把OpenVPN从简单开始,而不是其他书,搞一大堆keys,certs,ca等等复杂的东西。让大家有基本的概念后,从简单开始到比较复杂的东西。

附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

TOP

本帖最後由 角色 於 2013-11-24 15:12 編輯

参考书:

Beginning OpenVPN 2.0.9. 2009 Edition.

附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

TOP

本帖最後由 角色 於 2013-11-24 14:45 編輯

Types of VPN Connection

Type 1:Point-to-Point Connection
Type 2:Point-to-Server Connection
Type 3:Site-to-Site Connection

TOP

真是太赞了。 角色。顶你啊!哈哈!

我也要抽空来学习一下这上openvpn.

TOP

本帖最後由 角色 於 2013-11-28 01:24 編輯

The following link gives very good examples of different OpenVPN configurations.

[3] provides us many important concepts in order to send packets to the remoter server's gateway.

IP Forwarding
From [2], there are two important things that we need to notice. First one is to enable IP forwarding using
sysctl -w net.ipv4.ip_forward=1, or
echo 1 > /proc/sys/net/ipv4/ip_forward

MASQUERADE
#eth0 - internet
#eth1 - network
iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
iptables -A FORWARD -i eth1 -j ACCEPT

For PPTP VPN
iptables -t nat -A POSTROUTING -o ppp0 -j MASQUERADE

In [4], it provides examples for OpenVPN with MASQUERADE.

In [5], it gives examples of setting the firewall.

[1] http://blog.wains.be/2008/07/18/ ... ugh-the-vpn-tunnel/
[2] http://www.ducea.com/2006/08/01/ ... orwarding-in-linux/
[3] http://blog.wains.be/category/vpn/
[4] http://wiki.openwrt.org/doc/recipes/routedclient
[5] http://wiki.openwrt.org/doc/uci/firewall

TOP

TOP

搞OpenVPN的动作太多了!真比PPTP复杂很多,

TOP

返回列表