tuntap.txt
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:5k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. Universal TUN/TAP device driver.
  2. Copyright (C) 1999-2000 Maxim Krasnyansky <max_mk@yahoo.com>
  3.   Linux, Solaris drivers 
  4.   Copyright (C) 1999-2000 Maxim Krasnyansky <max_mk@yahoo.com>
  5.   FreeBSD TAP driver 
  6.   Copyright (c) 1999-2000 Maksim Yevmenkin <m_evmenkin@yahoo.com>
  7. 1. Description
  8.   TUN/TAP provides packet reception and transmission for user space programs. 
  9.   It can be viewed as a simple Point-to-Point or Ethernet device, which 
  10.   instead of receiving packets from a physical media, receives them from 
  11.   user space program and instead of sending packets via physical media 
  12.   writes them to the user space program. 
  13.   When a program opens /dev/net/tun, driver creates and registers corresponding
  14.   net device tunX or tapX. After a program closed above devices, driver will 
  15.   automatically delete tunXX or tapXX device and all routes corresponding to it.
  16.   This package(http://vtun.sourceforge.net/tun) contains two simple example 
  17.   programs how to use tun and tap devices. Both programs works like 
  18.   bridge between two network interfaces.
  19.   br_select.c - bridge based on select system call.
  20.   br_sigio.c  - bridge based on async io and SIGIO signal.
  21.   However the best example is VTun http://vtun.sourceforge.net :))  
  22. 2. Configuration 
  23.   Create device node:
  24.      mknod /dev/net/tun c 10 200
  25.   Driver module autoloading
  26.      Make sure that "Kernel module loader" - module auto-loading support is enabled 
  27.      in your kernel. 
  28.      Add following line to the /etc/modules.conf:
  29. alias char-major-10-200 tun
  30.      
  31.      Run:
  32.         depmod -a 
  33.      Driver will be automatically loaded when application access /dev/net/tun.
  34. 3. Program interface 
  35.   3.1 Network device allocation:
  36.   int tun_alloc(char *dev)
  37.   {
  38.       struct ifreq ifr;
  39.       int fd, err;
  40.       if( (fd = open("/dev/net/tun", O_RDWR)) < 0 )
  41.          return tun_alloc_old(dev);
  42.       memset(&ifr, 0, sizeof(ifr));
  43.       /* Flags: IFF_TUN   - TUN device (no Ethernet headers) 
  44.        *        IFF_TAP   - TAP device  
  45.        *
  46.        *        IFF_NO_PI - Do not provide packet information  
  47.        */ 
  48.       ifr.ifr_flags = IFF_TUN; 
  49.       if( *dev )
  50.          strncpy(ifr.ifr_name, dev, IFNAMSIZ);
  51.       if( (err = ioctl(fd, TUNSETIFF, (void *) &ifr)) < 0 ){
  52.          close(fd);
  53.          return err;
  54.       }
  55.       strcpy(dev, ifr.ifr_name);
  56.       return fd;
  57.   }              
  58.  
  59.   3.2 Frame format:
  60.   If flag IFF_NO_PI is not set each frame format is: 
  61.      Flags [2 bytes]
  62.      Proto [2 bytes]
  63.      Raw protocol(IP, IPv6, etc) frame.
  64. Universal TUN/TAP device driver Frequently Asked Question.
  65.    
  66. 1. What is the TUN ?
  67. The TUN is Virtual Point-to-Point network device.
  68. TUN driver was designed as low level kernel support for
  69. IP tunneling. It provides to userland application
  70. two interfaces:
  71.   - /dev/tunX - character device;
  72.   - tunX - virtual Point-to-Point interface.
  73. Userland application can write IP frame to /dev/tunX
  74. and kernel will receive this frame from tunX interface. 
  75. In the same time every frame that kernel writes to tunX 
  76. interface can be read by userland application from /dev/tunX
  77. device.
  78. 2. What is the TAP ?
  79. The TAP is a Virtual Ethernet network device.
  80. TAP driver was designed as low level kernel support for
  81. Ethernet tunneling. It provides to userland application
  82. two interfaces:
  83.   - /dev/tapX - character device;
  84.   - tapX - virtual Ethernet interface.
  85. Userland application can write Ethernet frame to /dev/tapX
  86. and kernel will receive this frame from tapX interface. 
  87. In the same time every frame that kernel writes to tapX 
  88. interface can be read by userland application from /dev/tapX
  89. device.
  90. 3. What platforms are supported by TUN/TAP driver ?
  91. Currently driver has been written for 3 Unices:
  92.    Linux kernels 2.2.x, 2.4.x 
  93.    FreeBSD 3.x, 4.x, 5.x
  94.    Solaris 2.6, 7.0, 8.0
  95. 4. What is TUN/TAP driver used for?
  96. As mentioned above, main purpose of TUN/TAP driver is tunneling. 
  97. It is used by VTun (http://vtun.sourceforge.net).
  98. 5. How does Virtual network device actually work ? 
  99. Virtual network device can be viewed as a simple Point-to-Point or
  100. Ethernet device, which instead of receiving packets from a physical 
  101. media, receives them from user space program and instead of sending 
  102. packets via physical media sends them to the user space program. 
  103. Let's say that you configured IPX on the tap0, then whenever 
  104. kernel sends any IPX packet to tap0, it is passed to the application
  105. (VTun for example). Application encrypts, compresses and sends it to 
  106. the other side over TCP or UDP. Application on other side decompress 
  107. and decrypts them and write packet to the TAP device, kernel handles 
  108. the packet like it came from real physical device.
  109. 6. What is the difference between TUN driver and TAP driver?
  110. TUN works with IP frames. TAP works with Ethernet frames.
  111. 7. What is the difference between BPF and TUN/TAP driver?
  112. BFP is a advanced packet filter. It can be attached to existing
  113. network interface. It does not provide virtual network interface.
  114. TUN/TAP driver does provide virtual network interface and it is possible
  115. to attach BPF to this interface.
  116. 8. Does TAP driver support kernel Ethernet bridging?
  117. Yes. Linux and FreeBSD drivers support Ethernet bridging.