博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CCNA(Stand-ALONE)Lab 10-ARP
阅读量:6570 次
发布时间:2019-06-24

本文共 1557 字,大约阅读时间需要 5 分钟。

Objective: configure Routers 1 and 2 with IP addresses, and ping between them to test connectivity. Then view the entries stored in the Address Resolution Protocol (ARP) table.
Lab Equipment: Router 1 and Router 2 from the eRouters menu
Background Reading: Lab Primer Lesson 6: ARP
1. Connect to Router 1, and type the command to view the ARP table.
Router>enable
Router#show arp
2. Assign an IP address of 10.1.1.1 255.255.255.0 to the Ethernet 0 interface of Router 1.
Router#conf terminal
Router(config)#interface Ethernet 0
Router(config-if)#ip address 10.1.1.1 255.255.255.0
Router(config-if)# no shutdown
Router(config-if)#exit
3. View the ARP table again.
Router(config)#exit
Router#show arp
4. Now, connect to Router 2, and configure its Ethernet 0 interface with an IP address of 10.1.1.2 /24.
Router#conf terminal
Router(config)#interface Ethernet 0
Router(config-if)#ip address 10.1.1.2 255.255.255.0
Router(config-if)# no shutdown
Router(config-if)#exit
5. A connection should now exist between the Router 1 and Router 2 Ethernet interfaces. To ensure that the connection is functional, ping the IP address of Router 1’s Ethernet 0 IP address from Router 2.
Router(config)#exit
Router#ping 10.1.1.1
6. View the ARP table on Router 2, and notice the entry.
Router#show arp
7. Now, clear the ARP table.
Router#clear arp
8. View the ARP table one last time, and notice what entries are there.
Router#show arp
****************************************************
Above:
Next:
本文转自redking51CTO博客,原文链接:http://blog.51cto.com/redking/71815
,如需转载请自行联系原作者
你可能感兴趣的文章
Java中输入输出流方法总结
查看>>
C语言--问题收集
查看>>
JavaScript Cookie
查看>>
maven nexus
查看>>
Linux 通过命令发送udp 数据
查看>>
第一份奇葩工作经历
查看>>
linux命令学习,不错
查看>>
Spring MVC读取POST过来的XML
查看>>
dTree
查看>>
过滤字符串中的HMTL实体
查看>>
Seor眼中的虚拟主机是怎样的
查看>>
Java并发学习之线程状态及Thread常用方法详解
查看>>
ACL_ARGV --- 字符串分割动态数组
查看>>
DataInput与DataOutput
查看>>
C# 操作MySQL
查看>>
spring4 jar包下载
查看>>
Android高效显示图片详解
查看>>
nginx+php的配置与原理
查看>>
VS2012,VS2013调试强制使用autoexp.dat
查看>>
Android手机Root授权原理细节全解析
查看>>