- 论坛徽章:
- 0
|
这是一些信息,大家帮忙看看
dmesg | grep eth
- divert: not allocating divert_blk for non-ethernet device lo
- forcedeth.c: Reverse Engineered nForce ethernet driver. Version 0.41.
- divert: allocating divert_blk for eth0
- eth0: forcedeth.c: subsystem: 010de:cb84 bound to 0000:00:08.0
- divert: not allocating divert_blk for non-ethernet device sit0
- eth0: no IPv6 routers present
复制代码
ifconfig
- eth0 Link encap:Ethernet HWaddr 00:30:18:A7:0A:A6
- inet addr:192.168.0.5 Bcast:192.168.0.255 Mask:255.255.255.0
- inet6 addr: fe80::230:18ff:fea7:aa6/64 Scope:Link
- UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
- RX packets:0 errors:0 dropped:0 overruns:0 frame:0
- TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
- collisions:0 txqueuelen:1000
- RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
- Interrupt:193
- lo Link encap:Local Loopback
- inet addr:127.0.0.1 Mask:255.0.0.0
- inet6 addr: ::1/128 Scope:Host
- UP LOOPBACK RUNNING MTU:16436 Metric:1
- RX packets:1400 errors:0 dropped:0 overruns:0 frame:0
- TX packets:1400 errors:0 dropped:0 overruns:0 carrier:0
- collisions:0 txqueuelen:0
- RX bytes:1439256 (1.3 MiB) TX bytes:1439256 (1.3 MiB)
复制代码
ping -c5 192.168.0.5
- PING 192.168.0.5 (192.168.0.5) 56(84) bytes of data.
- 64 bytes from 192.168.0.5: icmp_seq=0 ttl=64 time=0.028 ms
- 64 bytes from 192.168.0.5: icmp_seq=1 ttl=64 time=0.032 ms
- 64 bytes from 192.168.0.5: icmp_seq=2 ttl=64 time=0.031 ms
- 64 bytes from 192.168.0.5: icmp_seq=3 ttl=64 time=0.014 ms
- 64 bytes from 192.168.0.5: icmp_seq=4 ttl=64 time=0.019 ms
- --- 192.168.0.5 ping statistics ---
- 5 packets transmitted, 5 received, 0% packet loss, time 3999ms
- rtt min/avg/max/mdev = 0.014/0.024/0.032/0.009 ms, pipe 2
复制代码
ping -c5 192.168.0.1
- PING 192.168.0.1 (192.168.0.1) 56(84) bytes of data.
- From 192.168.0.5 icmp_seq=1 Destination Host Unreachable
- From 192.168.0.5 icmp_seq=2 Destination Host Unreachable
- From 192.168.0.5 icmp_seq=3 Destination Host Unreachable
- From 192.168.0.5 icmp_seq=4 Destination Host Unreachable
- --- 192.168.0.1 ping statistics ---
- 5 packets transmitted, 0 received, +4 errors, 100% packet loss, time 3999ms
- , pipe 4
复制代码 |
|