[关闭]
@duyao 2015-12-13T10:44:10.000000Z 字数 16935 阅读 1375

Lab Reports 2


Lab2.1 static routing table

Failure try 1

At the first time, I used add all routers, switches and pcs, and set ip address and submask. Then I tried to useip route <network> <mask> <next hop> to set static routing table. After I set two neighbours,I decided to try my result.But I cannot ping each ohter at these networks.I got that.

  1. PC>ping 219.17.100.5
  2. Pinging 219.17.100.5 with 32 bytes of data:
  3. Request timed out.
  4. Request timed out.
  5. Request timed out.
  6. Request timed out.
  7. Ping statistics for 219.17.100.5:
  8. Packets: Sent = 4, Received = 0, Lost = 4 (100% loss),

So I used show ip routeto see my routing table. The amazing thing made me upset that I cannot find my static route on the table!!!

  1. Router#show ip route
  2. Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP
  3. D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
  4. N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
  5. E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP
  6. i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area
  7. * - candidate default, U - per-user static route, o - ODR
  8. P - periodic downloaded static route
  9. Gateway of last resort is not set
  10. C 192.5.5.0/24 is directly connected, FastEthernet0/0
  11. C 205.7.5.0/24 is directly connected, FastEthernet0/1

This was unbelievable! So I decide to new another one.

Failure try 2

This time, I only built up two routers and those components. Then I add static routes. This time, they can be shown on the table.
But I still cannot ping each other.

  1. PC>ping 219.17.100.5
  2. Pinging 219.17.100.5 with 32 bytes of data:
  3. Request timed out.
  4. Request timed out.
  5. Request timed out.
  6. Request timed out.
  7. Ping statistics for 219.17.100.5:
  8. Packets: Sent = 4, Received = 0, Lost = 4 (100% loss),

So I searched the internet. I found this website.
I follow those steps.

Perform the following steps when using Ping:
Ping the loopback address to verify that TCP/IP is installed and configured correctly on the local computer.
ping 127.0.0.1
If the loopback step fails, the IP stack is not responding. This might be because the TCP drivers are corrupted, the network adapter might not be working, or another service is interfering with IP.
Ping the IP address of the local computer to verify that it was added to the network correctly. Note that if the routing table is correct, this simply forwards the packet to the loopback address of 127.0.0.1.
ping < IP address of local host >
Ping the IP address of the default gateway to verify that the default gateway is functioning and that you can communicate with a local host on the local network.
ping < IP address of default gateway >
Ping the IP address of a remote host to verify that you can communicate through a router.
ping < IP address of remote host >
Ping the host name of a remote host to verify that you can resolve a remote host name.
ping < Host name of remote host >
Run a PathPing analysis to a remote host to verify that the routers on the way to the destination are operating correctly.
pathping < IP address of remote host >

After I try ping 127.0.0.1 successfully,I see the default gateway, I understood my error. I forgot the gateway!

Successful try

I ping successfully after thoes errors.

Command lists

  1. Router(config)#hostname lab_a
  2. lab_a(config)#interface FastEthernet0/0
  3. lab_a(config-if)#ip address 192.5.5.1 255.255.255.0
  4. lab_a(config-if)#no shutdown
  5. lab_a(config-if)#exit
  6. lab_a(config)#interface FastEthernet1/0
  7. lab_a(config-if)#ip address 205.7.5.1 255.255.255.0
  8. lab_a(config-if)#no shutdown
  9. lab_a(config-if)#exit
  10. lab_a(config)#interface Serial2/0
  11. lab_a(config-if)#ip address 201.100.11.1 255.255.255.0
  12. lab_a(config-if)#clock rate 4000000
  13. lab_a(config-if)#no shutdown
  14. lab_a(config-if)#exit
  15. //set static ip routing
  16. lab_a(config)#ip route 0.0.0.0 0.0.0.0 201.100.11.2
  1. Router(config)#hostname lab_b
  2. lab_b(config)#interface FastEthernet0/0
  3. lab_b(config-if)#ip address 219.17.100.1 255.255.255.0
  4. lab_b(config-if)#no shutdown
  5. lab_b(config-if)#exit
  6. lab_b(config)#interface Serial3/0
  7. lab_b(config-if)#clock rate 4000000
  8. lab_b(config-if)#ip address 201.100.11.2 255.255.255.0
  9. lab_b(config-if)#no shutdown
  10. lab_b(config-if)#exit
  11. lab_b(config)#interface Serial2/0
  12. lab_b(config-if)#clock rate 4000000
  13. lab_b(config-if)#ip address 199.6.13.1 255.255.255.0
  14. lab_b(config-if)#no shutdown
  15. lab_b(config-if)#exit
  16. //set static ip routing
  17. lab_b(config)#ip route 0.0.0.0 0.0.0.0 199.6.13.2
  18. lab_b(config)#ip route 205.7.5.0 255.255.255.0 201.100.11.1
  19. lab_b(config)#ip route 192.5.5.0 255.255.255.0 201.100.11.1
  1. Router(config)#hostname lab_c
  2. lab_c(config)#interface Serial3/0
  3. lab_c(config-if)#clock rate 4000000
  4. lab_c(config-if)#ip address 199.6.13.2 255.255.255.0
  5. lab_c(config-if)#no shutdown
  6. lab_c(config-if)#exit
  7. lab_c(config)#interface Serial2/0
  8. lab_c(config-if)#clock rate 4000000
  9. lab_c(config-if)#ip address 204.204.7.1 255.255.255.0
  10. lab_c(config-if)#no shutdown
  11. lab_c(config-if)#exit
  12. lab_c(config)#interface FastEthernet0/0
  13. lab_c(config-if)#ip address 223.8.151.1 255.255.255.0
  14. lab_c(config-if)#no shutdown
  15. lab_c(config-if)#exit
  16. //set static ip routing
  17. lab_c(config)#ip route 0.0.0.0 0.0.0.0 199.6.13.1
  18. lab_c(config)#ip route 210.93.105.0 255.255.255.0 204.204.7.2
  1. Router(config)#hostname lab_d
  2. lab_d(config)#interface Serial3/0
  3. lab_d(config-if)#clock rate 4000000
  4. lab_d(config-if)#ip address 204.204.7.2 255.255.255.0
  5. lab_d(config-if)#no shutdown
  6. lab_d(config-if)#exit
  7. lab_d(config)#interface FastEthernet0/0
  8. lab_d(config-if)#ip address 210.93.105.1 255.255.255.0
  9. lab_d(config-if)#no shutdown
  10. lab_d(config-if)#exit
  11. //set static ip routing
  12. lab_d(config)#ip route 0.0.0.0 0.0.0.0 204.204.7.1
  13. lab_d(config)#
  1. Router(config)#hostname lab_e
  2. lab_e(config)#interface FastEthernet0/0
  3. lab_e(config-if)#ip address 210.93.105.2 255.255.255.0
  4. lab_e(config-if)#no shutdown

Status lists (using SHOW)

  1. lab_a#show ip interface brief
  2. Interface IP-Address OK? Method Status Protocol
  3. FastEthernet0/0 192.5.5.1 YES manual up up
  4. FastEthernet1/0 205.7.5.1 YES manual up up
  5. Serial2/0 201.100.11.1 YES manual up up
  6. Serial3/0 unassigned YES unset administratively down down
  7. FastEthernet4/0 unassigned YES unset administratively down down
  8. FastEthernet5/0 unassigned YES unset administratively down down
  1. lab_b#show ip int brief
  2. Interface IP-Address OK? Method Status Protocol
  3. FastEthernet0/0 219.17.100.1 YES manual up up
  4. FastEthernet1/0 unassigned YES unset administratively down down
  5. Serial2/0 199.6.13.1 YES manual up up
  6. Serial3/0 201.100.11.2 YES manual up up
  7. FastEthernet4/0 unassigned YES unset administratively down down
  8. FastEthernet5/0 unassigned YES unset administratively down down
  1. lab_c#show ip interface brief
  2. Interface IP-Address OK? Method Status Protocol
  3. FastEthernet0/0 223.8.151.1 YES manual up up
  4. FastEthernet1/0 unassigned YES unset administratively down down
  5. Serial2/0 204.204.7.1 YES manual up up
  6. Serial3/0 199.6.13.2 YES manual up up
  7. FastEthernet4/0 unassigned YES unset administratively down down
  8. FastEthernet5/0 unassigned YES unset administratively down down
  1. lab_d#show ip int brief
  2. Interface IP-Address OK? Method Status Protocol
  3. FastEthernet0/0 210.93.105.1 YES manual up up
  4. FastEthernet1/0 unassigned YES unset administratively down down
  5. Serial2/0 unassigned YES unset administratively down down
  6. Serial3/0 204.204.7.2 YES manual up up
  7. FastEthernet4/0 unassigned YES unset administratively down down
  8. FastEthernet5/0 unassigned YES unset administratively down down
  1. lab_e#show ip int brief
  2. Interface IP-Address OK? Method Status Protocol
  3. FastEthernet0/0 210.93.105.2 YES manual up up
  4. FastEthernet1/0 unassigned YES unset administratively down down
  5. Serial2/0 unassigned YES unset administratively down down
  6. Serial3/0 unassigned YES unset administratively down down
  7. FastEthernet4/0 unassigned YES unset administratively down down
  8. FastEthernet5/0 unassigned YES unset administratively down down

Routing table

  1. lab_a#show ip route
  2. Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP
  3. D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
  4. N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
  5. E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP
  6. i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area
  7. * - candidate default, U - per-user static route, o - ODR
  8. P - periodic downloaded static route
  9. Gateway of last resort is 201.100.11.2 to network 0.0.0.0
  10. C 192.5.5.0/24 is directly connected, FastEthernet0/0
  11. C 201.100.11.0/24 is directly connected, Serial2/0
  12. C 205.7.5.0/24 is directly connected, FastEthernet1/0
  13. S* 0.0.0.0/0 [1/0] via 201.100.11.2
  1. lab_b#show ip route
  2. Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP
  3. D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
  4. N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
  5. E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP
  6. i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area
  7. * - candidate default, U - per-user static route, o - ODR
  8. P - periodic downloaded static route
  9. Gateway of last resort is 199.6.13.2 to network 0.0.0.0
  10. S 192.5.5.0/24 [1/0] via 201.100.11.1
  11. C 199.6.13.0/24 is directly connected, Serial2/0
  12. C 201.100.11.0/24 is directly connected, Serial3/0
  13. S 205.7.5.0/24 [1/0] via 201.100.11.1
  14. C 219.17.100.0/24 is directly connected, FastEthernet0/0
  15. S* 0.0.0.0/0 [1/0] via 199.6.13.2
  1. lab_c#show ip route
  2. Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP
  3. D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
  4. N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
  5. E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP
  6. i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area
  7. * - candidate default, U - per-user static route, o - ODR
  8. P - periodic downloaded static route
  9. Gateway of last resort is 199.6.13.1 to network 0.0.0.0
  10. C 199.6.13.0/24 is directly connected, Serial3/0
  11. C 204.204.7.0/24 is directly connected, Serial2/0
  12. S 210.93.105.0/24 [1/0] via 204.204.7.2
  13. C 223.8.151.0/24 is directly connected, FastEthernet0/0
  14. S* 0.0.0.0/0 [1/0] via 199.6.13.1
  1. lab_d#show ip route
  2. Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP
  3. D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
  4. N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
  5. E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP
  6. i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area
  7. * - candidate default, U - per-user static route, o - ODR
  8. P - periodic downloaded static route
  9. Gateway of last resort is 204.204.7.1 to network 0.0.0.0
  10. C 204.204.7.0/24 is directly connected, Serial3/0
  11. C 210.93.105.0/24 is directly connected, FastEthernet0/0
  12. S* 0.0.0.0/0 [1/0] via 204.204.7.1
  1. lab_e#show ip route
  2. Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP
  3. D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
  4. N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
  5. E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP
  6. i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area
  7. * - candidate default, U - per-user static route, o - ODR
  8. P - periodic downloaded static route
  9. Gateway of last resort is not set
  10. C 210.93.105.0/24 is directly connected, FastEthernet0/0

ipconfig & ping & tracert

  1. PC>ipconfig
  2. FastEthernet0 Connection:(default port)
  3. Link-local IPv6 Address.........: FE80::20A:F3FF:FE1D:BD1
  4. IP Address......................: 210.93.105.5
  5. Subnet Mask.....................: 255.255.255.0
  6. Default Gateway.................: 210.93.105.1
  7. PC>ping 210.93.105.1
  8. Pinging 210.93.105.1 with 32 bytes of data:
  9. Reply from 210.93.105.1: bytes=32 time=1ms TTL=255
  10. Reply from 210.93.105.1: bytes=32 time=0ms TTL=255
  11. Reply from 210.93.105.1: bytes=32 time=0ms TTL=255
  12. Reply from 210.93.105.1: bytes=32 time=0ms TTL=255
  13. Ping statistics for 210.93.105.1:
  14. Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
  15. Approximate round trip times in milli-seconds:
  16. Minimum = 0ms, Maximum = 1ms, Average = 0ms
  17. PC>ping 205.7.5.5
  18. Pinging 205.7.5.5 with 32 bytes of data:
  19. Request timed out.
  20. Reply from 205.7.5.5: bytes=32 time=3ms TTL=124
  21. Reply from 205.7.5.5: bytes=32 time=3ms TTL=124
  22. Reply from 205.7.5.5: bytes=32 time=3ms TTL=124
  23. Ping statistics for 205.7.5.5:
  24. Packets: Sent = 4, Received = 3, Lost = 1 (25% loss),
  25. Approximate round trip times in milli-seconds:
  26. Minimum = 3ms, Maximum = 3ms, Average = 3ms
  27. PC>tracert 205.7.5.5
  28. Tracing route to 205.7.5.5 over a maximum of 30 hops:
  29. 1 1 ms 0 ms 0 ms 210.93.105.1
  30. 2 1 ms 1 ms 0 ms 204.204.7.1
  31. 3 1 ms 1 ms 0 ms 199.6.13.1
  32. 4 0 ms 2 ms 1 ms 201.100.11.1
  33. 5 2 ms 1 ms 1 ms 205.7.5.5
  34. Trace complete.

Lab2.2 rip routing table

I tried router rip to enables RIP as a routing protocol and configed with network w.x.y.z. w.x.y.zis the network number of the directly connected network you want to advertise.
This time I got right at first try!

Command lists

  1. lab_a(config)#router rip
  2. lab_a(config-router)#network 205.7.5.0
  3. lab_a(config-router)#network 192.5.5.0
  4. lab_a(config-router)#network 201.100.11.0
  1. lab_b(config)#router rip
  2. lab_b(config-router)#network 219.17.100.0
  3. lab_b(config-router)#network 201.100.11.0
  4. lab_b(config-router)#network 199.6.13.0
  1. lab_c(config)#router rip
  2. lab_c(config-router)#network 199.6.13.0
  3. lab_c(config-router)#network 204.204.7.0
  4. lab_c(config-router)#network 223.8.151.0
  1. lab_d(config)#route rip
  2. lab_d(config-router)#network 204.204.7.0
  3. lab_d(config-router)#network 210.93.105.0
  1. lab_e(config)#router rip
  2. lab_e(config-router)#network 210.93.105.0

Status lists (using SHOW)

The contents are same as staitc one. So those details will be skipped.

Routing table

  1. lab_a#show ip route
  2. Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP
  3. D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
  4. N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
  5. E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP
  6. i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area
  7. * - candidate default, U - per-user static route, o - ODR
  8. P - periodic downloaded static route
  9. Gateway of last resort is not set
  10. C 192.5.5.0/24 is directly connected, FastEthernet0/0
  11. R 199.6.13.0/24 [120/1] via 201.100.11.2, 00:00:12, Serial2/0
  12. C 201.100.11.0/24 is directly connected, Serial2/0
  13. R 204.204.7.0/24 [120/2] via 201.100.11.2, 00:00:12, Serial2/0
  14. C 205.7.5.0/24 is directly connected, FastEthernet1/0
  15. R 210.93.105.0/24 [120/3] via 201.100.11.2, 00:00:12, Serial2/0
  16. R 219.17.100.0/24 [120/1] via 201.100.11.2, 00:00:12, Serial2/0
  17. R 223.8.151.0/24 [120/2] via 201.100.11.2, 00:00:12, Serial2/0
  1. lab_b#show ip route
  2. Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP
  3. D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
  4. N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
  5. E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP
  6. i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area
  7. * - candidate default, U - per-user static route, o - ODR
  8. P - periodic downloaded static route
  9. Gateway of last resort is not set
  10. R 192.5.5.0/24 [120/1] via 201.100.11.1, 00:00:09, Serial3/0
  11. C 199.6.13.0/24 is directly connected, Serial2/0
  12. C 201.100.11.0/24 is directly connected, Serial3/0
  13. R 204.204.7.0/24 [120/1] via 199.6.13.2, 00:00:26, Serial2/0
  14. R 205.7.5.0/24 [120/1] via 201.100.11.1, 00:00:09, Serial3/0
  15. R 210.93.105.0/24 [120/2] via 199.6.13.2, 00:00:26, Serial2/0
  16. C 219.17.100.0/24 is directly connected, FastEthernet0/0
  17. R 223.8.151.0/24 [120/1] via 199.6.13.2, 00:00:26, Serial2/0
  1. lab_c#sh ip route
  2. Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP
  3. D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
  4. N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
  5. E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP
  6. i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area
  7. * - candidate default, U - per-user static route, o - ODR
  8. P - periodic downloaded static route
  9. Gateway of last resort is not set
  10. R 192.5.5.0/24 [120/2] via 199.6.13.1, 00:00:09, Serial3/0
  11. C 199.6.13.0/24 is directly connected, Serial3/0
  12. R 201.100.11.0/24 [120/1] via 199.6.13.1, 00:00:09, Serial3/0
  13. C 204.204.7.0/24 is directly connected, Serial2/0
  14. R 205.7.5.0/24 [120/2] via 199.6.13.1, 00:00:09, Serial3/0
  15. R 210.93.105.0/24 [120/1] via 204.204.7.2, 00:00:07, Serial2/0
  16. R 219.17.100.0/24 [120/1] via 199.6.13.1, 00:00:09, Serial3/0
  17. C 223.8.151.0/24 is directly connected, FastEthernet0/0
  1. lab_d#show ip route
  2. Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP
  3. D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
  4. N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
  5. E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP
  6. i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area
  7. * - candidate default, U - per-user static route, o - ODR
  8. P - periodic downloaded static route
  9. Gateway of last resort is not set
  10. R 192.5.5.0/24 [120/3] via 204.204.7.1, 00:00:26, Serial3/0
  11. R 199.6.13.0/24 [120/1] via 204.204.7.1, 00:00:26, Serial3/0
  12. R 201.100.11.0/24 [120/2] via 204.204.7.1, 00:00:26, Serial3/0
  13. C 204.204.7.0/24 is directly connected, Serial3/0
  14. R 205.7.5.0/24 [120/3] via 204.204.7.1, 00:00:26, Serial3/0
  15. C 210.93.105.0/24 is directly connected, FastEthernet0/0
  16. R 219.17.100.0/24 [120/2] via 204.204.7.1, 00:00:26, Serial3/0
  17. R 223.8.151.0/24 [120/1] via 204.204.7.1, 00:00:26, Serial3/0
  18. lab_d#
  1. lab_e#show ip route
  2. Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP
  3. D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
  4. N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
  5. E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP
  6. i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area
  7. * - candidate default, U - per-user static route, o - ODR
  8. P - periodic downloaded static route
  9. Gateway of last resort is not set
  10. R 192.5.5.0/24 [120/4] via 210.93.105.1, 00:00:14, FastEthernet0/0
  11. R 199.6.13.0/24 [120/2] via 210.93.105.1, 00:00:14, FastEthernet0/0
  12. R 201.100.11.0/24 [120/3] via 210.93.105.1, 00:00:14, FastEthernet0/0
  13. R 204.204.7.0/24 [120/1] via 210.93.105.1, 00:00:14, FastEthernet0/0
  14. R 205.7.5.0/24 [120/4] via 210.93.105.1, 00:00:14, FastEthernet0/0
  15. C 210.93.105.0/24 is directly connected, FastEthernet0/0
  16. R 219.17.100.0/24 [120/3] via 210.93.105.1, 00:00:14, FastEthernet0/0
  17. R 223.8.151.0/24 [120/2] via 210.93.105.1, 00:00:14, FastEthernet0/0

ipconfig & ping & tracert

  1. PC>ipconfig
  2. FastEthernet0 Connection:(default port)
  3. Link-local IPv6 Address.........: FE80::240:BFF:FE44:23EB
  4. IP Address......................: 210.93.105.5
  5. Subnet Mask.....................: 255.255.255.0
  6. Default Gateway.................: 210.93.105.1
  7. PC>ping 192.5.5.5
  8. Pinging 192.5.5.5 with 32 bytes of data:
  9. Reply from 192.5.5.5: bytes=32 time=3ms TTL=124
  10. Reply from 192.5.5.5: bytes=32 time=3ms TTL=124
  11. Reply from 192.5.5.5: bytes=32 time=3ms TTL=124
  12. Reply from 192.5.5.5: bytes=32 time=4ms TTL=124
  13. Ping statistics for 192.5.5.5:
  14. Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
  15. Approximate round trip times in milli-seconds:
  16. Minimum = 3ms, Maximum = 4ms, Average = 3ms
  17. PC>tracert 192.5.5.5
  18. Tracing route to 192.5.5.5 over a maximum of 30 hops:
  19. 1 0 ms 0 ms 0 ms 210.93.105.1
  20. 2 0 ms 0 ms 1 ms 204.204.7.1
  21. 3 1 ms 1 ms 0 ms 199.6.13.1
  22. 4 2 ms 1 ms 8 ms 201.100.11.1
  23. 5 2 ms 1 ms 0 ms 192.5.5.5
  24. Trace complete.
添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注