路由器基本配置----无编号ip地址配置
2011-07-22 10:52:12
资源来自网络视频,我做笔记
视频教程请移步此处处http://www.verycd.com/topics/2802335/
视频教程请移步此处处http://www.verycd.com/topics/2802335/
1.CDP协议 (Cisco Discovery Protocol,发现相邻设备,看到相邻设备信息)
2.ISO管理 (备份恢复升级工作)
3.口令恢复 (两种)
4.静态路由 (单向,通常用于一个末梢网络的出口)
5.DHCP服务 (不同网段dhcp中继)
*6.无编号地址 (***经常用到)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
无编号ip地址 (意为两个接口共享同一个ip地址)
命令为:(串行接口上配置)
route(config-if)# ip unnumbered type number
例如:(R1的s1/0口,接R2的s1/1口.R1的f0/0接pc1,R2的f0/0接pc2)
对于R1:
en
conf t
int f0/0
ip add 201.0.0.1 255.255.255.0
no shu
exi
int s1/0
ip unnumbered f0/0
no shu
exi
ip route 0.0.0.0 0.0.0.0 s1/0
end
sh ip int b
sh ip route
对于R2:
en
conf t
int f0/0
ip add 202.0.0.1 255.255.255.0
no shu
exi
int s1/1
ip nunumbered f0/0
no shu
exi
ip rou 0.0.0.0 0.0.0.0 s1/1
end
sh ip int b
sh ip rou
此时,pc设置ip地址201.0.0.11 后,ping 202.0.0.11通.
转载于:https://blog.51cto.com/wugai/621675