Advertisement
Guest User

Untitled

a guest
Jun 26th, 2014
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.71 KB | None | 0 0
  1. $ route
  2. Kernel IP routing table
  3. Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
  4. 192.168.1.0     *               255.255.255.0   U     1      0        0 eth0
  5.  
  6. $ dmesg |grep eth0
  7. [   38.732021] eth0: no IPv6 routers present
  8.  
  9. $ ifconfig -a
  10. eth0      Link encap:Ethernet  HWaddr 00:11:5b:c4:df:61  
  11.           inet addr:192.168.1.105  Bcast:192.168.1.255  Mask:255.255.255.0
  12.           inet6 addr: fe80::211:5bff:fec4:df61/64 Scope:Link
  13.           UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
  14.           RX packets:0 errors:0 dropped:0 overruns:0 frame:747
  15.           TX packets:542 errors:0 dropped:0 overruns:0 carrier:0
  16.           collisions:0 txqueuelen:1000
  17.           RX bytes:0 (0.0 B)  TX bytes:27734 (27.7 KB)
  18.           Interrupt:23 Base address:0xe00
  19.  
  20. lo        Link encap:Local Loopback  
  21.           inet addr:127.0.0.1  Mask:255.0.0.0
  22.           inet6 addr: ::1/128 Scope:Host
  23.           UP LOOPBACK RUNNING  MTU:16436  Metric:1
  24.           RX packets:487 errors:0 dropped:0 overruns:0 frame:0
  25.           TX packets:487 errors:0 dropped:0 overruns:0 carrier:0
  26.           collisions:0 txqueuelen:0
  27.           RX bytes:44163 (44.1 KB)  TX bytes:44163 (44.1 KB)
  28.  
  29. $ sudo dhclient
  30. Internet Systems Consortium DHCP Client V3.1.3
  31. Copyright 2004-2009 Internet Systems Consortium.
  32. All rights reserved.
  33. For info, please visit https://www.isc.org/software/dhcp/
  34.  
  35. Listening on LPF/eth0/00:11:5b:c4:df:61
  36. Sending on   LPF/eth0/00:11:5b:c4:df:61
  37. Sending on   Socket/fallback
  38. DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 7
  39. DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 7
  40. DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 15
  41. DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 18
  42. DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 14
  43. No DHCPOFFERS received.
  44. No working leases in persistent database - sleeping.
  45.  
  46. $ sudo lshw -C network
  47.   *-network              
  48.        description: Ethernet interface
  49.        product: VT6102 [Rhine-II]
  50.        vendor: VIA Technologies, Inc.
  51.        physical id: 12
  52.        bus info: pci@0000:00:12.0
  53.        logical name: eth0
  54.        version: 74
  55.        serial: 00:11:5b:c4:df:61
  56.        size: 100MB/s
  57.        capacity: 100MB/s
  58.        width: 32 bits
  59.        clock: 33MHz
  60.        capabilities: pm bus_master cap_list ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd autonegotiation
  61.        configuration: autonegotiation=on broadcast=yes driver=via-rhine driverversion=1.4.3 duplex=full latency=32 link=yes maxlatency=8 mingnt=3 multicast=yes port=MII speed=100MB/s
  62.        resources: irq:23 ioport:d800(size=256) memory:dffffe00-dffffeff
  63.  
  64. $ cat /etc/resolv.conf
  65. # Generated by NetworkManager
  66. nameserver 8.8.8.8
  67. nameserver 8.8.4.4
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement