CISCO R S 配置靜態

2021-09-28 15:33:32 字數 2151 閱讀 9604

ps:終端下方為本裝置配置資訊,接線上方為對應網段,埠配置主機號為對應路由器號

強調:終端(pc、伺服器等必須配置閘道器)

r1>en

r1#conf t

r1(config)#int g 0/0

r1(config-if)#ip ad 192.168.1.254 255.255.255.0

r1(config-if)#no shutd

r1(config-if)#exit

r1(config)#int g 0/01

r1(config-if)#ip ad 10.1.12.1 255.255.255.0

r1(config-if)#no shutd

r1(config-if)#exit

r1(config)#ip route

r1(config)#ip route 1.1.1.0 255.255.255.0 g0/1

r2>en

r2#conf t

r2(config)#int g 0/0

r2(config-if)#ip ad 10.1.12.2 255.255.255.0

r2(config-if)#no shut

r2(config-if)#exit

r2(config)# int g00/01

r2(config-if)#ip ad 10.1.23.2 255.255.255.0

r2(config-if)#no shut

r2(config-if)#exit

r2(config)#ip route 192.168.1.0 255.255.255.0 g 0/0

r2(config)#ip route 1.1.1.0 255.255.255.0 g 0/1

r3>

r3>en

r3#conf t

r3(config)#int g 0/0

r3(config-if)#ip ad 10.1.23.3 255.255.255.0

r3(config-if)#no shut

r3(config-if)#exit

r3(config)#int g 0/1

r3(config-if)#ip ad 1.1.1.254 255.255.255.0

r3(config-if)#no shutd

r3(config-if)#exit

r3(config)# ip route 192.168.1.0 255.255.255.0 g 0/0

靜態配置規則

router(config)#ip route 《目標網段》 《目標網段子網掩碼》 《出介面/下一跳》

路由器發包只可發到直連的埠

故r1在未配置靜態的情況下r1只可ping通r2的g0/0

如需使10.1.23.0網段對於r1可達

需在r1上配置靜態如下:

ip route 10.1.23.0 255.255.255.0 g 0/0 #出介面

或ip route 10.1.23.0 255.255.255.0 10.1.12.2 #下一跳

測試

10.1.23.2通

10.1.23.3不通

歇逼,翻車

排錯r3不知道包如何回發給r1

故給r3配置靜態

通了因此在上圖r1如需聯通r4

則需在r1r2上配置靜態指向r4

在r3r4上配置靜態指向r1

注意

1.配置靜態時目標網段指向的都是資料報的終點

2.配置完成後,如不能聯通,確認對應路由器擁有回包路由

配置靜態路由

使用ruote 命令新增靜態路由 route 在本地 ip 路由表中顯示和修改條目。使用不帶引數的 route 可以顯示幫助。語法 route f p command destination mask netmask gateway metric metric if inte ce 引數 f 清除所...

配置靜態路由

拓撲圖如下 配置靜態路由 1750 routera routera conf routera config int fa0 0 routera config fa0 ip add 20.0.0.1 255.0.0.0 routera config no shut routera config exi...

靜態路由配置

靜態路由配置 配置指令 路由設定 config ip route 目標網段掩碼 下一跳ip位址 例如路由a設定 ip route 192.168.30.0 255.255.255.0 192.168.20.2 路由a設定f0 1 10.0網段 設定閘道器 f0 0介面設定ip位址192.168.20...