静态路由怎么配置?
静态路由是指由用户或网络管理员手工配置的路由信息。当网络的拓扑结构或链路的状态发生变化时,网络管理员需要手工去修改路由表中相关的静态路由信息。
静态路由信息在缺省情况下是私有的,不会传递给其他的路由器。当然,网管员也可以通过对路由器进行设置使之成为共享的。静态路由一般适用于比较简单的网络环境,在这样的环境中,网络管理员易于清楚地了解网络的拓扑结构,便于设置正确的路由信息。
配置路由器R1端口:
Router>en
Router#config // 进入配置模式
Configuring from terminal, memory, or network [terminal]? t
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#hostname r1//更改主机名为r1
R1(config)#int f0/0 //配置端口f0/0
R1(config-if)#ip add 192.168.1.1 255.255.255.0//设置端口ip
R1(config-if)#no shut//打开端口
%LINK-5-CHANGED: Interface FastEthernet1/0, changed state to up
R1(config-if)#
%SYS-5-CONFIG_I: Configured from console by console
R1(config)#int f1/0//配置端口f1/0
R1(config-if)#ip add 192.168.2.1 255.255.255.0//设置端口ip
R1(config-if)#no shut//打开端口
%LINK-5-CHANGED: Interface FastEthernet1/0, changed state to up
配置路由器r2端口
Router(config)#hostname R2//更改主机名为R2
R2(config)#int f0/0 //配置端口f0/0
R2(config-if)#ip add 192.168.2.2 255.255.255.0//设置端口ip
R2config-if)#no shut//打开端口
R2(config)#int f0/0 //配置端口f1/0
R2(config-if)#ip add 192.168.3.1 255.255.255.0//设置端口ip
R2(config-if)#no shut//打开端口
&n
R2(config-if)#ip add 192.168.3.1 255.255.255.0//设置端口ip
R2(config-if)#no shut//打开端口
配置路由器R3端口
Router(config)#hostname R3//更改主机名为R3
R3(config)#int f0/0 //配置端口f0/0
R3(config-if)#ip add 192.168.3.2 255.255.255.0//设置端口ip
R3config-if)#no shut//打开端口
R3(config)#int f0/0 //配置端口f1/0
R3(config-if)#ip add 192.168.4.1 255.255.255.0//设置端口ip
R3config-if)#no shut//打开端口
2023-07-25 广告