Advertisement
Guest User

Untitled

a guest
Dec 30th, 2011
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.64 KB | None | 0 0
  1. /etc/network/interfaces
  2. # network interface settings
  3. auto lo
  4. iface lo inet loopback
  5.  
  6. auto eth0
  7. iface eth0 inet static
  8. address 192.168.11.24
  9. netmask 255.255.255.0
  10. gateway 192.168.11.1
  11. broadcast 192.168.11.255
  12. network 192.168.11.0
  13. # dns-* options are implemented by the resolvconf package, if installed
  14. dns-nameservers 192.168.11.13
  15. dns-search myad2.wanfuse.com
  16.  
  17. iface eth1 inet manual
  18.  
  19. iface eth2 inet manual
  20.  
  21. iface eth3 inet manual
  22.  
  23. iface eth4 inet manual
  24.  
  25. auto vmbr0
  26. iface vmbr0 inet static
  27. address 192.168.11.23
  28. netmask 255.255.255.0
  29. bridge_ports eth0
  30. bridge_stp off
  31. bridge_fd 0
  32.  
  33.  
  34.  
  35. route
  36. Kernel IP routing table
  37. Destination Gateway Genmask Flags Metric Ref Use Iface
  38. localnet * 255.255.255.0 U 0 0 0 vmbr0
  39.  
  40. ifconfig
  41. eth0 Link encap:Ethernet HWaddr 00:30:48:61:ab:4e
  42. inet6 addr: fe80::230:48ff:fe61:ab4e/64 Scope:Link
  43. UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
  44. RX packets:375 errors:0 dropped:0 overruns:0 frame:0
  45. TX packets:424 errors:0 dropped:0 overruns:0 carrier:0
  46. collisions:0 txqueuelen:1000
  47. RX bytes:49213 (48.0 KiB) TX bytes:52244 (51.0 KiB)
  48. Interrupt:18 Memory:d8120000-d8140000
  49.  
  50. lo Link encap:Local Loopback
  51. inet addr:127.0.0.1 Mask:255.0.0.0
  52. inet6 addr: ::1/128 Scope:Host
  53. UP LOOPBACK RUNNING MTU:16436 Metric:1
  54. RX packets:86 errors:0 dropped:0 overruns:0 frame:0
  55. TX packets:86 errors:0 dropped:0 overruns:0 carrier:0
  56. collisions:0 txqueuelen:0
  57. RX bytes:7968 (7.7 KiB) TX bytes:7968 (7.7 KiB)
  58.  
  59. venet0 Link encap:UNSPEC HWaddr 00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00
  60. inet6 addr: fe80::1/128 Scope:Link
  61. UP BROADCAST POINTOPOINT RUNNING NOARP MTU:1500 Metric:1
  62. RX packets:0 errors:0 dropped:0 overruns:0 frame:0
  63. TX packets:0 errors:0 dropped:3 overruns:0 carrier:0
  64. collisions:0 txqueuelen:0
  65. RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
  66.  
  67. vmbr0 Link encap:Ethernet HWaddr 00:30:48:61:ab:4e
  68. inet addr:192.168.11.23 Bcast:192.168.11.255 Mask:255.255.255.0
  69. inet6 addr: fe80::230:48ff:fe61:ab4e/64 Scope:Link
  70. UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
  71. RX packets:346 errors:0 dropped:0 overruns:0 frame:0
  72. TX packets:398 errors:0 dropped:0 overruns:0 carrier:0
  73. collisions:0 txqueuelen:0
  74. RX bytes:41687 (40.7 KiB) TX bytes:48689 (47.5 KiB)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement