CISCO基础ARP
ARP Lab
查看 ARP 表:
1. 首先需要连接到Router1并查看ARP表。
- Click Here to View Answer - enable Router#show arp
2. 接下来需要分配 IP 地址10.1.1.1 /24 级 Ethernet 0 端口
- Click Here to View Answer - 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. 现在再次查看 ARP 表。
- Click Here to View Answer - Router(config)#exit Router#show arp
4.连接到Router2
5. 为Router 2的 Ethernet 0 端口设置 IP 地址10.1.1.2 /24
- Click Here to View Answer - 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
6. 现在在Router1和Router2之间的Ethernet端口已经存在了一个连接,使用ping来测试看两者之间的连接是否正常工作
- Click Here to View Answer - Router(config-if)#exit Router(config)#exit Router# ping 10.1.1.1
7. 现在再看一下ARP表,并注意它的条目。
- Click Here to View Answer - Router(config)#exit Router#show arp
8. 现在,你已经创建了一个ARP表,现在把它清除掉
- Click Here to View Answer - Router#clear arp
9. 查看ARP 表并注意它的条目
- Click Here to View Answer - Router#show arp
文章录入:csh 责任编辑:csh