R1配置信息:SourceByrd's Weblog-https://note.t4x.org/route/static-routing-first/
R1(config)#interface fastethernet 0/0
R1(config-if)#ip address 172.28.12.1 255.255.0.0
R1(config-if)#no shutdown
R1(config-if)#interface fastethernet 0/1
R1(config-if)#ip address 10.10.10.10 255.0.0.0
R1(config-if)#no shutdown
R1(config)#ip route 200.200.200.0 255.255.255.0 172.28.12.2 (方法1:正常模式)
格式:Router(config)#ip route network [mask] [address] (ip route 网络号 子网掩码 下一跳IP)
R1(config)#ip route 200.200.200.0 255.255.255.0 fastEthernet 0/0 (方法2:仅适用于点对点网络)
格式:Router(config)#ip route network [mask] [interface] (ip route 网络号 子网掩码 本路由器出栈接口)
R1(config)#do show ip route (S= static 200.200.200.0/24 [1/0] via 172.28.12.2)SourceByrd's Weblog-https://note.t4x.org/route/static-routing-first/
R2配置信息:SourceByrd's Weblog-https://note.t4x.org/route/static-routing-first/
R2(config)#interface fastethernet 0/0
R2(config-if)#ip address 200.200.200.200 255.255.255.0
R2(config-if)#no shutdown
R2(config)#interface fastethernet 0/1
R2(config-if)#ip address 172.28.12.2 255.255.0.0
R2(config-if)#no shutdown
R2(config)#ip route 10.0.0.0 255.0.0.0 172.28.12.1 (方法1:正常模式)
格式:Router(config)#ip route network [mask] [address] (ip route 网络号 子网掩码 下一跳IP)
R2(config)#ip route 10.0.0.0 255.0.0.0 fastEthernet 0/1 (方法2:仅适用于点对点网络)
格式:Router(config)#ip route network [mask] [interface] (ip route 网络号 子网掩码 本路由器出栈接口)
相关阅读:《静态路由配置试验(02)》SourceByrd's Weblog-https://note.t4x.org/route/static-routing-first/
SourceByrd's Weblog-https://note.t4x.org/route/static-routing-first/
Trackbacks