博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
1.1-PC1无默认网关/Proxy-ARP(代理ARP)
阅读量:6256 次
发布时间:2019-06-22

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

1、实验拓扑:

1.1-PC1无默认网关/Proxy-ARP(代理ARP)

2、命令部署:

PC1(config)#no ip default-gateway 12.1.1.2
拓展:PC1(config)#default int int f0/0

3、验证:

(1)默认开启代理:
R2#debug arp
ARP packet debugging is on
PC1#ping 3.3.3.3

R2#

Mar 1 00:16:17.167: IP ARP: rcvd req src 12.1.1.1 c001.1858.0000, dst 3.3.3.3 FastEthernet0/0
Mar 1 00:16:17.171: IP ARP: creating entry for IP address: 12.1.1.1, hw: c001.1858.0000
*Mar 1 00:16:17.171: IP ARP: sent rep src 3.3.3.3 c002.3430.0000,
dst 12.1.1.1 c001.1858.0000 FastEthernet0/0
注意:可以看到3.3.3.3对应的MAC是:c002.3430.0000,这是R2 f0/0的接口MAC地址。
证明:此过程是Proxy-ARP

PC1#show arp

Protocol Address Age (min) Hardware Addr Type Interface
Internet 3.3.3.3 3 c002.3430.0000 ARPA FastEthernet0/0
Internet 12.1.1.1 - c001.1858.0000 ARPA FastEthernet0/0

(2)关闭代理功能:

R2(config)#int f0/0
R2(config-if)#no ip proxy-arp

PC1#ping 3.3.3.3

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 3.3.3.3, timeout is 2 seconds:
.....
Success rate is 0 percent (0/5)

R2#

*Mar 1 00:56:05.231: IP ARP: rcvd req src 12.1.1.1 c001.1858.0000, dst 3.3.3.3 FastEthernet0/0

1.1-PC1无默认网关/Proxy-ARP(代理ARP)

转载于:https://blog.51cto.com/13856092/2137351

你可能感兴趣的文章
Java位运算符
查看>>
智能手表ticwatch穿戴体验
查看>>
暑假第五周总结(2018.8.6-8.12)
查看>>
MFC下拉框Combo Box
查看>>
TCP带外数据读写
查看>>
uni-app采坑记录
查看>>
TP方法中打印地址栏中所有的参数:
查看>>
这是一个蒟蒻的计划……QAQ
查看>>
设置局域网共享文件不需要用户名密码
查看>>
raft--分布式一致性协议
查看>>
Solidity notes
查看>>
网上购物系统(Task005)——通用数据库访问函数集SqlHelper类
查看>>
java 单例模式浅析
查看>>
Codeforces Round #389 (Div. 2,) B C
查看>>
python中configparser模块记录
查看>>
IIIDX[九省联考2018]
查看>>
Protobuf3 序列化
查看>>
C语言面试题大汇总
查看>>
JavaSE-List常用方法
查看>>
json 和 pickel 详解
查看>>