Advertisement
TBotNik

Untitled

Jul 25th, 2011
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.92 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. Contents of the NetWork config file /etc/network/interfaces
  19.  
  20. auto lo
  21. iface lo inet loopback
  22. #auto eth0
  23. auto wlan0
  24.  
  25. iface eth0 inet static
  26. address 192.168.3.2
  27. gateway 192.168.3.1
  28. netmask 255.255.255.0
  29. network 192.168.3.0
  30. broadcast 192.168.3.255
  31.  
  32.  
  33.  
  34. Contents of the Net Mgr file /etc/NetworkManager/nm-system-settings.conf
  35.  
  36. # This file is installed into /etc/NetworkManager, and is loaded by
  37. # NetworkManager by default. To override, specify: '--config file'
  38. # during NM startup. This can be done by appending to DAEMON_OPTS in
  39. # the file:
  40. #
  41. # /etc/default/NetworkManager
  42. #
  43.  
  44. [main]
  45. plugins=ifupdown,keyfile
  46.  
  47. no-auto-default=00:07:e9:3d:c3:e8,
  48.  
  49. [ifupdown]
  50. managed=false
  51.  
  52.  
  53. Contents of the NM Auto eth0 file /etc/NetworkManager/system-connections/Auto eth0
  54.  
  55.  
  56. [connection]
  57. id=Auto eth0
  58. uuid=c30dad40-9e6f-487e-a99f-aba2c3a6855a
  59. type=802-3-ethernet
  60. autoconnect=true
  61. timestamp=0
  62.  
  63. [ipv4]
  64. method=shared
  65. ignore-auto-routes=false
  66. ignore-auto-dns=false
  67. dhcp-send-hostname=true
  68. never-default=true
  69.  
  70. [802-3-ethernet]
  71. speed=0
  72. duplex=full
  73. auto-negotiate=true
  74. mac-address=0:7:e9:3d:c3:e8
  75. mtu=0
  76.  
  77. [ipv6]
  78. method=ignore
  79. ignore-auto-routes=false
  80. ignore-auto-dns=false
  81. never-default=false
  82.  
  83. Snap shot of the network settings from ifconfig
  84.  
  85. lo Link encap:Local Loopback
  86. inet addr:127.0.0.1 Mask:255.0.0.0
  87. inet6 addr: ::1/128 Scope:Host
  88. UP LOOPBACK RUNNING MTU:16436 Metric:1
  89. RX packets:448 errors:0 dropped:0 overruns:0 frame:0
  90. TX packets:448 errors:0 dropped:0 overruns:0 carrier:0
  91. collisions:0 txqueuelen:0
  92. RX bytes:64541 (64.5 KB) TX bytes:64541 (64.5 KB)
  93.  
  94. wlan0 Link encap:Ethernet HWaddr 00:0f:3d:ad:c3:c8
  95. inet addr:192.168.1.2 Bcast:192.168.1.255 Mask:255.255.255.0
  96. inet6 addr: fe80::20f:3dff:fead:c3c8/64 Scope:Link
  97. UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
  98. RX packets:227 errors:0 dropped:0 overruns:0 frame:0
  99. TX packets:370 errors:0 dropped:0 overruns:0 carrier:0
  100. collisions:0 txqueuelen:1000
  101. RX bytes:107079 (107.0 KB) TX bytes:56809 (56.8 KB)
  102.  
  103. wmaster0 Link encap:UNSPEC HWaddr 00-0F-3D-AD-C3-C8-61-64-00-00-00-00-00-00-00-00
  104. UP RUNNING MTU:0 Metric:1
  105. RX packets:0 errors:0 dropped:0 overruns:0 frame:0
  106. TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
  107. collisions:0 txqueuelen:1000
  108. RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement