Share Pastebin
Guest
Public paste!

rtucker

By: a guest | May 29th, 2009 | Syntax: None | Size: 0.73 KB | Hits: 67 | Expires: Never
Copy text to clipboard
  1. # This file describes the network interfaces available on your system
  2. # and how to activate them. For more information, see interfaces(5).
  3.  
  4. # The loopback network interface
  5. auto lo
  6. iface lo inet loopback
  7.  
  8. # The primary network interface
  9. auto eth0
  10. iface eth0 inet static
  11.         address 97.107.134.213
  12.         netmask 255.255.255.0
  13.         gateway 97.107.134.1
  14.  
  15. iface eth0 inet6 static
  16.         address 2001:470:1f07:f41::dead:beef
  17.         netmask 64
  18.  
  19. auto eth0:1
  20. iface eth0:1 inet static
  21.         address 192.168.137.246
  22.         netmask 255.255.128.0
  23.  
  24. auto he-ipv6
  25. iface he-ipv6 inet6 v4tunnel
  26.         address 2001:470:1f06:f41::2
  27.         netmask 64
  28.         remote 209.51.161.14
  29.         local 97.107.134.213
  30.         endpoint any
  31.         ttl 64
  32.         up      ip -6 route add 2000::/3 via ::209.51.161.14 dev he-ipv6
  33.         down    ip -6 route flush dev he-ipv6