静态路由和浮动静态路由
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了静态路由和浮动静态路由相关的知识,希望对你有一定的参考价值。
静态路由:
Router>enable -->进入到特权模式;
Route#configure terminal ->进入“全局配置模式”;
Route(config)#hostname R3 ->更改主机名;
R3(config)#no ip domain lookup ->关闭域名查询功能;
R3(config)#exit退回到上级模式
R3(config)#line console 0 进入console口
R3(config-line)#exec-timeout 0 0 ->永不超时;
R3(config-line)#password abc123 ->密码设置;
R3(config-line)#login ->启用认证功能;
R3#configure terminal 进入全局用户模式
R3(config)#interface vlan 1 -> 进入虚拟端口;
R3(config-if)#ip address 192.168.12.1 255.255.255.0 --->配置IP地址;
R3(config-if)#no shutdown -> 打开端口;
R3(config)#interface gi0/1 进入GI0/1口
R3(config-if)# no ip proxy-arp 关闭代理ARP
R3(config)# ip route 192.168.23.0 (所要访问的网段)255.255.255.0 gi0/0(下一跳)(配置静态路由)
R3(config)#show ip route(查看静态路由)
浮动静态路由
Router>enable -->进入到特权模式;
Route#configure terminal ->进入“全局配置模式”;
Route(config)#hostname R1 ->更改主机名;
R1(config)#no ip domain lookup ->关闭域名查询功能;
R1(config)#exit退回到上级模式
R1(config)#line console 0 进入console口
R1(config-line)#exec-timeout 0 0 ->永不超时;
R1(config-line)#password abc123 ->密码设置;
R1(config-line)#login ->启用认证功能;
R1#configure terminal 进入全局用户模式
R1(config)#interface vlan 1 -> 进入虚拟端口;
R1(config-if)#ip address 192.168.10.1 255.255.255.0 --->配置IP地址;
R1(config-if)#no shutdown -> 打开端口;
R3(config)# ip route 192.168.30.0 (所要访问的网段)255.255.255.0 192.168.10.2(下一跳)主链路
R3(config)# ip route 192.168.30.0 (所要访问的网段)255.255.255.0 192.168.20.2 9(下一跳)备份链路的路由 AD 调整为 9
1、配置完成之后,查看 R2 路由表,仅有主链路路由进入;
2、关闭R2上连接 R1 的端口(模拟主链路故障),此时备份链路
对应的路由(管理距离为9)进入路由表;
3、开启R2上连接 R1 的端口(模拟主链路故障修复), 此时备份
链路所对应的路由”跳出“路由表,主链路路由进入
噩梦般学习生活 2017.10.9
以上是关于静态路由和浮动静态路由的主要内容,如果未能解决你的问题,请参考以下文章