Advertisement
TBotNik

Untitled

Jul 25th, 2011
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.50 KB | None | 0 0
  1. Gen'd by Script
  2.  
  3. Contents of the DHCP config file /etc/dhcp3/dhcpd.conf
  4.  
  5. # /etc/dhcp3/dhpcd.conf
  6.  
  7. default-lease-time 600;
  8. max-lease-time 7200;
  9. option subnet-mask 255.255.255.0;
  10. option broadcast-address 192.168.3.255;
  11. option routers 192.168.3.2;
  12. option domain-name-servers 192.168.3.1, 4.2.2.2;
  13. option domain-name "tc-noc-server";
  14. log-facility local7;
  15. subnet 192.168.3.0 netmask 255.255.255.0 { range 192.168.3.10 192.168.3.200;}
  16.  
  17.  
  18. #subnet 10.42.43.0 netmask 255.255.255.0 {
  19. #range 10.42.43.100 192.168.1.200;
  20. #}
  21.  
  22. Contents of the NetWork config file /etc/network/interfaces
  23.  
  24. auto lo
  25. iface lo inet loopback
  26. #auto eth0
  27. auto wlan0
  28.  
  29. iface eth0 inet static
  30. address 192.168.3.2
  31. gateway 192.168.3.1
  32. netmask 255.255.255.0
  33. network 192.168.3.0
  34. broadcast 192.168.3.255
  35.  
  36.  
  37.  
  38. Contents of the Net Mgr file /etc/NetworkManager/nm-system-settings.conf
  39.  
  40. # This file is installed into /etc/NetworkManager, and is loaded by
  41. # NetworkManager by default. To override, specify: '--config file'
  42. # during NM startup. This can be done by appending to DAEMON_OPTS in
  43. # the file:
  44. #
  45. # /etc/default/NetworkManager
  46. #
  47.  
  48. [main]
  49. plugins=ifupdown,keyfile
  50.  
  51. no-auto-default=00:07:e9:3d:c3:e8,
  52.  
  53. [ifupdown]
  54. managed=false
  55.  
  56.  
  57. Contents of the NM Auto eth0 file /etc/NetworkManager/system-connections/Auto eth0
  58.  
  59.  
  60. [connection]
  61. id=Auto eth0
  62. uuid=c30dad40-9e6f-487e-a99f-aba2c3a6855a
  63. type=802-3-ethernet
  64. autoconnect=true
  65. timestamp=0
  66.  
  67. [ipv4]
  68. method=shared
  69. ignore-auto-routes=false
  70. ignore-auto-dns=false
  71. dhcp-send-hostname=true
  72. never-default=true
  73.  
  74. [802-3-ethernet]
  75. speed=0
  76. duplex=full
  77. auto-negotiate=true
  78. mac-address=0:7:e9:3d:c3:e8
  79. mtu=0
  80.  
  81. [ipv6]
  82. method=ignore
  83. ignore-auto-routes=false
  84. ignore-auto-dns=false
  85. never-default=false
  86.  
  87. Snap shot of the network settings from ifconfig
  88.  
  89. eth0 Link encap:Ethernet HWaddr 00:07:e9:3d:c3:e8
  90. inet addr:10.42.43.1 Bcast:10.42.43.255 Mask:255.255.255.0
  91. inet6 addr: fe80::207:e9ff:fe3d:c3e8/64 Scope:Link
  92. UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
  93. RX packets:11027 errors:0 dropped:0 overruns:0 frame:0
  94. TX packets:8045 errors:0 dropped:0 overruns:0 carrier:0
  95. collisions:0 txqueuelen:1000
  96. RX bytes:1832408 (1.8 MB) TX bytes:1350257 (1.3 MB)
  97.  
  98. lo Link encap:Local Loopback
  99. inet addr:127.0.0.1 Mask:255.0.0.0
  100. inet6 addr: ::1/128 Scope:Host
  101. UP LOOPBACK RUNNING MTU:16436 Metric:1
  102. RX packets:91244 errors:0 dropped:0 overruns:0 frame:0
  103. TX packets:91244 errors:0 dropped:0 overruns:0 carrier:0
  104. collisions:0 txqueuelen:0
  105. RX bytes:9052811 (9.0 MB) TX bytes:9052811 (9.0 MB)
  106.  
  107. wlan0 Link encap:Ethernet HWaddr 00:0f:3d:ad:c3:c8
  108. inet addr:192.168.1.10 Bcast:192.168.1.255 Mask:255.255.255.0
  109. inet6 addr: fe80::20f:3dff:fead:c3c8/64 Scope:Link
  110. UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
  111. RX packets:37695 errors:0 dropped:0 overruns:0 frame:0
  112. TX packets:42345 errors:0 dropped:0 overruns:0 carrier:0
  113. collisions:0 txqueuelen:1000
  114. RX bytes:28041770 (28.0 MB) TX bytes:7380589 (7.3 MB)
  115.  
  116. wmaster0 Link encap:UNSPEC HWaddr 00-0F-3D-AD-C3-C8-61-64-00-00-00-00-00-00-00-00
  117. UP RUNNING MTU:0 Metric:1
  118. RX packets:0 errors:0 dropped:0 overruns:0 frame:0
  119. TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
  120. collisions:0 txqueuelen:1000
  121. RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement