Advertisement
Guest User

Untitled

a guest
Sep 2nd, 2012
24
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.07 KB | None | 0 0
  1.  
  2. zaehlas@MAINFRAME:~$ ifconfig
  3. eth0 Link encap:Ethernet HWaddr 00:25:11:72:9b:8c
  4. inet addr:192.168.0.1 Bcast:192.168.0.255 Mask:255.255.255.0
  5. inet6 addr: fe80::225:11ff:fe72:9b8c/64 Scope:Link
  6. UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
  7. RX packets:17 errors:0 dropped:0 overruns:0 frame:0
  8. TX packets:11 errors:0 dropped:46 overruns:0 carrier:0
  9. collisions:0 txqueuelen:1000
  10. RX bytes:9782 (9.7 KB) TX bytes:1573 (1.5 KB)
  11. Interrupt:43 Base address:0x6000
  12.  
  13. eth1 Link encap:Ethernet HWaddr 00:00:e8:13:eb:3e
  14. inet addr:68.15.156.94 Bcast:68.15.156.95 Mask:255.255.255.224
  15. inet6 addr: fe80::200:e8ff:fe13:eb3e/64 Scope:Link
  16. UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
  17. RX packets:57087 errors:0 dropped:0 overruns:0 frame:0
  18. TX packets:7452 errors:0 dropped:0 overruns:0 carrier:0
  19. collisions:0 txqueuelen:1000
  20. RX bytes:6771092 (6.7 MB) TX bytes:1585004 (1.5 MB)
  21. Interrupt:19 Base address:0xc800
  22.  
  23. lo Link encap:Local Loopback
  24. inet addr:127.0.0.1 Mask:255.0.0.0
  25. inet6 addr: ::1/128 Scope:Host
  26. UP LOOPBACK RUNNING MTU:16436 Metric:1
  27. RX packets:221 errors:0 dropped:0 overruns:0 frame:0
  28. TX packets:221 errors:0 dropped:0 overruns:0 carrier:0
  29. collisions:0 txqueuelen:0
  30. RX bytes:73332 (73.3 KB) TX bytes:73332 (73.3 KB)
  31.  
  32.  
  33. PID TTY STAT TIME COMMAND
  34. 1648 ? Ss 0:00 /usr/sbin/dhcpd -f -q -4 -pf /run/dhcp-server/dhcpd.pid -cf /etc/dhcp/dhcpd.conf eth0
  35.  
  36. Sep 2 06:35:07 MAINFRAME dhcpd: DHCPDISCOVER from 00:19:5b:d2:80:ed via eth0
  37. Sep 2 06:35:08 MAINFRAME dhcpd: DHCPOFFER on 192.168.0.101 to 00:19:5b:d2:80:ed via eth0
  38. Sep 2 06:35:09 MAINFRAME dhcpd: DHCPDISCOVER from 00:19:5b:d2:80:ed via eth0
  39. Sep 2 06:35:09 MAINFRAME dhcpd: DHCPOFFER on 192.168.0.101 to 00:19:5b:d2:80:ed via eth0
  40. Sep 2 06:35:11 MAINFRAME dhcpd: DHCPDISCOVER from 00:19:5b:d2:80:ed via eth0
  41. Sep 2 06:35:11 MAINFRAME dhcpd: DHCPOFFER on 192.168.0.101 to 00:19:5b:d2:80:ed via eth0
  42. Sep 2 06:35:26 MAINFRAME dhcpd: DHCPDISCOVER from 00:19:5b:d2:80:ed via eth0
  43. Sep 2 06:35:26 MAINFRAME dhcpd: DHCPOFFER on 192.168.0.101 to 00:19:5b:d2:80:ed via eth0
  44. Sep 2 06:35:28 MAINFRAME dhcpd: DHCPDISCOVER from 00:19:5b:d2:80:ed via eth0
  45. Sep 2 06:35:28 MAINFRAME dhcpd: DHCPOFFER on 192.168.0.101 to 00:19:5b:d2:80:ed via eth0
  46. Sep 2 06:35:30 MAINFRAME dhcpd: DHCPDISCOVER from 00:19:5b:d2:80:ed via eth0
  47. Sep 2 06:35:30 MAINFRAME dhcpd: DHCPOFFER on 192.168.0.101 to 00:19:5b:d2:80:ed via eth0
  48. Sep 2 06:35:45 MAINFRAME dhcpd: DHCPDISCOVER from 00:19:5b:d2:80:ed via eth0
  49. Sep 2 06:35:45 MAINFRAME dhcpd: DHCPOFFER on 192.168.0.101 to 00:19:5b:d2:80:ed via eth0
  50. Sep 2 06:35:47 MAINFRAME dhcpd: DHCPDISCOVER from 00:19:5b:d2:80:ed via eth0
  51. Sep 2 06:35:47 MAINFRAME dhcpd: DHCPOFFER on 192.168.0.101 to 00:19:5b:d2:80:ed via eth0
  52. Sep 2 06:35:49 MAINFRAME dhcpd: DHCPDISCOVER from 00:19:5b:d2:80:ed via eth0
  53. Sep 2 06:35:49 MAINFRAME dhcpd: DHCPOFFER on 192.168.0.101 to 00:19:5b:d2:80:ed via eth0
  54.  
  55.  
  56.  
  57. ddns-update-style none;
  58.  
  59. authoritative;
  60.  
  61. default-lease-time 21600;
  62. max-lease-time 43200;
  63.  
  64. subnet 192.168.0.0 netmask 255.255.255.0 {
  65. option domain-name "hr.cox.net";
  66. option domain-name-servers 68.105.29.16, 68.105.28.16;
  67. option broadcast-address 192.168.0.255;
  68. option routers 192.168.0.1;
  69. range 192.168.0.100 192.168.0.254;
  70. }
  71.  
  72. # This file describes the network interfaces available on your system
  73. # and how to activate them. For more information, see interfaces(5).
  74.  
  75. # The loopback network interface
  76. auto lo
  77. iface lo inet loopback
  78.  
  79. # The external network interface
  80. auto eth1
  81. iface eth1 inet static
  82. address 68.15.156.94
  83. netmask 255.255.255.224
  84. network 68.15.156.64
  85. broadcast 68.15.156.95
  86. gateway 68.15.156.65
  87. dns-nameservers 68.105.29.16 68.105.28.16
  88. dns-search hr.cox.net
  89.  
  90. # The internal network interface
  91. auto eth0
  92. iface eth0 inet static
  93. address 192.168.0.1
  94. netmask 255.255.255.0
  95. network 192.168.0.0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement