Chinaunix首页 | 论坛 | 博客
  • 博客访问: 891841
  • 博文数量: 132
  • 博客积分: 9976
  • 博客等级: 中将
  • 技术积分: 1781
  • 用 户 组: 普通用户
  • 注册时间: 2007-08-30 20:40
文章分类

全部博文(132)

文章存档

2013年(1)

2011年(1)

2010年(15)

2009年(77)

2008年(36)

2007年(2)

我的朋友

分类: 系统运维

2009-04-08 11:16:24

ntop and n2n

=========================================================================
from:

n2n: a Layer Two Peer-to-Peer VPN


n2n is a layer-two peer-to-peer virtual private network (VPN) which allows users to exploit features typical of P2P applications at network instead of application level. This means that users can gain native IP visibility (e.g. two PCs belonging to the same n2n network can ping each other) and be reachable with the same network IP address regardless of the network where they currently belong. In a nutshell, as OpenVPN moved SSL from application (e.g. used to implement the https protocol) to network protocol, n2n moves P2P from application to network level.

The main n2n design features are:

  • An n2n is an encrypted layer two private network based on a P2P protocol.
  • Encryption is performed on edge nodes using open protocols with user-defined encryption keys: you control your security without delegating it to companies as it happens with or Hamachi.
  • Each n2n user can simultaneously belong to multiple networks (a.k.a. communities).
  • Ability to cross NAT and firewalls in the reverse traffic direction (i.e. from outside to inside) so that n2n nodes are reachable even if running on a private network. Firewalls no longer are an obstacle to direct communications at IP level.
  • n2n networks are not meant to be self-contained, but it is possible to route traffic across n2n and non-n2n networks.

The n2n architecture is based on two components:

  • edge nodes: applications installed on user PCs that allow the n2n network to be build. Practically each edge node creates a tun/tap device that is then the entry point to the n2n network.
  • an supernode: it is used by edge nodes at startup or for reaching nodes behind symmetrical firewalls. This application is basically a directory register and a packet router for those nodes that cannot talk directly.

Edge nodes talk by means of virtual tap interfaces. Each tap interface is an n2n edge node. Each PC can have multiple tap interfaces, one per n2n network, so that the same PC can belong to multiple communities.

 

Download n2n


Source code:

  • svn co
  • Then type make

For some platforms there are also some binary packages available:

  • [Courtesy of
  • [Courtesy of
    • Binary
    • Port source: svn co https://trac.no-route.org/svn/freebsd-ports/ports/security/n2n
  • OpenWrt
    • [Courtesy of

 

Quickstart


  • Download and compile the code
  • Decide where to place your supernode. Suppose you put it on host a.b.c.d at port xyw.
  • Decide what encryption password you want to use to secure your data. Suppose you use the password encryptme
  • Decide the network name you want to use. Suppose you call it mynetwork. Note that you can use your supernode/edge nodes to handle multiple networks, not just one.
  • Decide what IP address you plan to use on your edge nodes. Suppose you use IP address 10.1.2.0/24
  • Start your applications:
    • #supernode > supernode -l xyw
    • #edge node1> edge -a 10.1.2.1 -c mynetwork -k encryptme -l a.b.c.d:xyw
    • #edge node2> edge -a 10.1.2.2 -c mynetwork -k encryptme -l a.b.c.d:xyw
    Now test your n2n network:
    • #edge node1> ping 10.1.2.2
    • #edge node2> ping 10.1.2.1

 

Platform-dependent Differences


  • OSX
    In some OSX version, the tun/tap device is missing. In this case you need to download and install the driver.

  • Linux
    You need to specify the tap interface name with -d.
    • #edge node> edge -d n2n0 -c mynetwork -k encryptme -a 1.2.3.4 -l a.b.c.d:xyw

  • Windows
    The port is available at little cost (for supporting n2n development) at . It includes an installer for easy installation.

 

FAQ


  • Q. Can I use DHCP or ZeroConf in order to configure nodes dynamically?
    A. Yes, you can. You need to start the dhcpd on the n2n device on one of your nodes. For instance: "dhcp tun0". See for further information. Please note that you should not start more than one dhcpd per n2n network (this as best practice).
  • Q. How many inline firewalls n2n can cross?
    A. It doesn't matter if you're behind one NAT or behind n-NATs. n2n will cross all of them.
  • Q. n2n is based on UDP. Do you have plans for supporting HTTP encapsulation?
    A. Currently n2n supports an initial HTTP tunneling. In order to use it you need to start the edge node with -t (the supernode already listens on both TCP and UDP).
  • Q. How to I implement n2n supernode reliability?
    A. Courtesy of
    Another way to have a failsafe n2n network is to put two different n2n interfaces (with same parameters except from the supernode) in a bridge(with brctl) and tune it to use STP Spanning Tree Protocol. I tested this configuration and it works! great! I just followed suggestion

 

Do you want to know more about n2n internals?


Have a look at the .

 

Need help?


You can reach the n2n community by sending email to the mailing list. Instead if you have a private question, you can contact the n2n developers at .

 

n2n Links


  • (Czeck)

 

License


n2n is distributed under the license.


阅读(1338) | 评论(0) | 转发(0) |
0

上一篇:C语言字符串操作函数

下一篇:C struct

给主人留下些什么吧!~~