怎么配置路由ip route

2024-12-02 10:09:16
推荐回答(4个)
回答1:

Router0:配置
Router0>en
Router0#conf t

Router0(config)#int f0/0
Router0(config-if)#ip add 192.168.1.254 255.255.255.0
Router0(config-if)#no sh

Router0(config-if)#int f0/1
Router0(config-if)#ip add 172.139.23.1 255.255.255.0
Router0(config-if)#no sh

Router0(config)#ip route 168.30.0.0 255.255.0.0 172.30.23.2

Router0(config)#interface FastEthernet0/1
Router0(config-if)#ip address 172.30.23.1 255.255.255.0

router1:配置
Router1>en
Router1#conf t

Router1(config)#int f0/1
Router1(config-if)#ip add 168.30.23.254 255.255.0.0

Router1(config-if)#int f0/0
Router1(config-if)#ip add 172.30.23.2 255.255.255.0
Router1(config-if)#no sh

Router1(config)#ip route 192.168.1.0 255.255.255.0 172.30.23.1

Router1(config)#int f0/1
Router1(config-if)#ip add 168.30.23.254 255.255.0.0
Router1(config-if)#no sh

回答2:

因为你这图中间路由器的端口没有标示出来,我只能认为是10.1.1.0/24网段,
左边的路由器
interface FastEthernet0/0 //中间路由器的端口地址
ip address 10.1.1.1 255.255.255.0
no sh
interface FastEthernet0/1 //连接客户端的端口地址
ip address 192.168.1.1 255.255.255.0
no sh
ip route 0.0.0.0 0.0.0.0 10.1.1.2 //默认路由
右边路由器配置
interface FastEthernet0/0 //中间路由器的端口地址
ip address 10.1.1.2 255.255.255.0
no sh
interface FastEthernet0/1 //连接客户端的端口地址
ip address 168.30.23.1 255.255.255.0
no sh
ip route 0.0.0.0 0.0.0.0 10.1.1.1 //默认路由
左边客户端
IP地址192.168.1.5 子网掩码 255.255.255.0 网关192.168.1.1
右边客户端
IP地址 168.30.23.5 子网掩码 255.255.255.0 网关168.30.23.1
互PING,全网互通

回答3:

1.PC0 网关 设置为192.168.1.1
PC1 网关 设置为168.30.1.1
2. 在Router0 连接到PC0的端口上配置IP 192.168.1.1 子网掩码255.255.255.0
在Router1 连接到PC1的端口上配置IP 168.30.1.1 子网掩码255.255.0.0
3. 在Router0 连接到Router1的端口上配置172.30.23.1 子网掩码255.255.255.0
在Router1 连接到Router0的端口上配置172.30.23.2 子网掩码255.255.255.0

回答4:

你要配置静态路由还是动态路由还是静态默认路由,配置方法有很多种,动态路由协议常见的有RIP,RIPV2 ,OSPF,EIGRP,BGP,IGP。你这种就配置静态路由或默认路由就OK了,静态路由的写法:全)# ip route 目的地网络 子网掩码 下一跳IP地址