Advertisement
Guest User

conf

a guest
Oct 14th, 2010
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.77 KB | None | 0 0
  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. # The primary network interface
  8. allow-hotplug eth0
  9. iface eth0 inet static
  10.     address 93.190.201.165
  11.     netmask 255.255.255.252
  12.     network 93.190.201.164
  13.     broadcast 93.190.201.167
  14.     gateway 93.190.201.166
  15.     # dns-* options are implemented by the resolvconf package, if installed
  16.     dns-nameservers 10.0.1.254
  17.     dns-search citylink-rk.ru
  18.  
  19. auto br0
  20. iface br0 inet static
  21. address   192.168.0.11
  22. netmask   255.255.255.0
  23.  
  24. network 192.168.0.1
  25. broadcast 192.168.0.254
  26. gateway   93.190.201.165
  27. bridge_ports eth0
  28. bridge_fd 9
  29. bridge_hello 2
  30. bridge_maxage 12
  31. bridge_stp off
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement