您的位置首页百科知识

多路由器之间的静态路由配置

多路由器之间的静态路由配置

的有关信息介绍如下:

多路由器之间的静态路由配置

多路由器之间的静态路由配置?在起初,我做了两个路由之间有静态路由配置,那么今天我们来分享三个路由器之间的静态路由配置,以便加深了解静态路由配置,静态路由的原理;

首先我们来熟悉静态路由的命令:ip route 目的IP地址 子网掩码 下一跳IP

其中下一跳IP地址是静态路由的根本,没有下一跳地址,那么路由就不可达到想要的网域;

好了,我们来看图:

如上图示:

首先,我们来和配置好每个路由器所连接端口IP地址:

R1#conf t

Enter configuration commands, one per line. End with CNTL/Z.

R1(config)#int fa

R1(config)#int fastEthernet 0/0

R1(config-if)#ip add

R1(config-if)#ip address 192.168.1.1 255.255.255.0

R1(config-if)#no shu

R1(config-if)#no shutdown

R1(config-if)#cdp run

R1(config)#end

如上操作,把每台路由器的端口IP配置正确,并PING通相邻的IP地址;

PC0:192.168.1.100/24 192.168.1.1

PC1:192.168.2.100/24 192.168.2.1

PC3: 192.168.3.100/24 192.168.3.1

如上配置好测试主机的IP地址与网关;

然后配置静态路由信息:look

R1(config)#ip route

R1(config)#ip route 192.168.2.0 255.255.255.0 10.2.2.2

R1(config)#ip route 192.168.3.0 255.255.255.0 10.2.2.2

R1(config)#show ip route

C 10.0.0.0/8 is directly connected, FastEthernet0/1

C 192.168.1.0/24 is directly connected, FastEthernet0/0

S 192.168.2.0/24 [1/0] via 10.2.2.2

S 192.168.3.0/24 [1/0] via 10.2.2.2

R2(config)#ip route 192.168.1.0 255.255.255.0 10.2.2.1

R2(config)#ip route 192.168.3.0 255.255.255.0 20.3.3.2

R2#show ip route

C 10.0.0.0/8 is directly connected, FastEthernet0/0

C 20.0.0.0/8 is directly connected, FastEthernet0/1

S 192.168.1.0/24 [1/0] via 10.2.2.1

C 192.168.2.0/24 is directly connected, Ethernet1/0

S 192.168.3.0/24 [1/0] via 20.3.3.2

R3(config)#ip route 192.168.1.0 255.255.255.0 10.2.2.1

R3(config)#ip route 192.168.2.0 255.255.255.0 10.2.2.1

R3#show ip route

C 20.0.0.0/8 is directly connected, FastEthernet0/0

S 192.168.1.0/24 [1/0] via 20.3.3.1

S 192.168.2.0/24 [1/0] via 20.3.3.1

C 192.168.3.0/24 is directly connected, FastEthernet0/1

最后我们来做测试:LOOK

无论是从那一台机都 可以PING通对方,也就是说我们实验成功;

总结:静态路由的命令:ip route 目的IP地址 子网掩码 下一跳IP;

这个命令很重要,当然在这里也可以使用默认路由命令:ip route 0.0.0.0 0.0.0.0 下一跳IP;

最后想说的是,静态路由是最基本的路由信息命令,只要会了,以后学习起其他路由协议就更加容易理解了;现在大家会多路由器之间的静态路由配置了吗?