思科交換機靜態路由配置思科交換機靜態路由配置

2021-03-04 06:31:54 字數 6207 閱讀 7286

1樓:百度文庫精選

最低0.27元開通文庫會員,檢視完整內

原發布者:liu296788874

1、靜態路由的配置命令:例如:iproute129.

1.0.01610.

0.0.2iproute129.

1.0.0255.

255.0.010.

0.0.2iproute129.

1.0.016serial0/0/0注意:

只有下一跳所屬的的介面是點對點(ppp、hdlc)的介面時,才可以填寫,否則必須填寫。2、在路由器routera上配置:routera(config)#inte***cefastether***0/0routera(config-if)#ipadd192.

168.1.1255.

255.255.0routera(config-if)#inte***ces0/0/0routera(config-if)#ipadd221.

237.46.2255.

255.255.0routera(config-if)#encapsulationppproutera(config-if)#exitroutera(config)#iproute61.

139.2.0255.

255.255.0221.

237.46.13、在路由器routerb上配置:

routerb(config)#inte***cefastether***0/0routerb(config-if)#ipadd61.139.2.

68255.255.255.

0routerb(config-if)#inte***ces0/0routerb(config-if)#ipadd221.237.46.

1255.255.255.

0routerb(config-if)#encapsulationppprouterb(config-if)#clockrate64000routerb(config-if)#exitrouterb(config)#iproute192.168.1.

0255.255.255.

0221.237.46.2

2樓:匿名使用者

靜態路由命令:

enconf t

ip route 目的網段 子網掩碼 下一跳/出口比如,要通往192.168.1.0這個網段,下一跳為192.168.2.1,出口為fa0/0

命令就是:

ip route 192.168.1.0 255.255.255.0 192.168.2.1

或者ip route 192.168.1.0 255.255.255.0 fa0/0都可以

3樓:

如果是2層交換機比如:2960系列的那麼是不可以配置靜態路由的,只能配置預設路由。

ip default-gateway x.x.x.x

4樓:李增惠

在配置模式下:

switch(config)#

switch(config)# ip route 192.168.10.

0 255.255.255.

0 192.168.2.

1 /去往10網段的下一跳地址是192.168.2.

1switch(config)# ip route 192.168.10.

0 255.255.255.

0 fa0/0 /去往10網段的下一跳是fa0/0 這個介面

三層交換機路由配置(靜態路由)

5樓:匿名使用者

inte***ce vlanif2                             //此為pc1的閘道器

ip address 192.168.1.254 255.255.255.0

inte***ce vlanif12                           //此為交換機1和2的直連路由

ip address 1.1.1.1 255.255.255.252

inte***ce gigabitether***0/0/1

port link-type access

port default vlan 2

inte***ce gigabitether***0/0/2

port link-type trunk

port trunk allow-pass vlan 2 5 12

ip route-static 3.3.3.2 255.255.255.252 1.1.1.2

6樓:菸草

你貌似在用hw-routesim 在做實驗

參考下面的配置和圖吧

實驗九 靜態路由實驗

pca:10.65.

1.1  pcb:10.

66.1.1  pcc:

10.70.1.

1  pcd:10.71.

1.1[routera]inte***ce ether***0

[routera-ether***0]ip addrress 10.65.1.2 255.255.0.0

[routera-ether***0]undo shutdown

[routera-ether***0]int e1

[routera-ether***1]ip addrress 10.66.1.2 255.255.0.0

[routera-ether***1]undo shutdown

[routera-ether***1]int s1

[routera-serial1]ip addrress 10.68.1.2 255.255.0.0

[routera-serial1]undo shutdown

[routera-serial1]clock rate 64000

[routera-serial1]quit

[routera]ip routing

[routera]dis curr

[routerb]inte***ce ether***0

[routerb-ether***0]ip addrress 10.70.1.2 255.255.0.0

[routerb-ether***0]undo shutdown

[routerb-ether***0]int e1

[routerb-ether***1]ip addrress 10.71.1.2 255.255.0.0

[routerb-ether***1]undo shutdown

[routerb-ether***1]int s0

[routerb-serial0]ip addrress 10.68.1.1 255.255.0.0

[routerb-serial0]undo shutdown

[routerb-serial0]quit

[routerb]ip routing

[routerb]dis curr

[root@pca root]#ifconfig eth0 10.65.1.1 ***mask 255.255.0.0

[root@pca root]#route add default gw 10.65.1.2

[root@pca root]#ping 10.65.1.2 通

[root@pca root]#ping 10.66.1.2 通

[root@pca root]#ping 10.67.1.2 通

[root@pca root]#ping 10.68.1.2 不通

[root@pca root]#ping 10.69.1.2 不通

[routera]ip route-static 10.69.0.0 255.255.0.0 10.67.1.1

[root@pca root]#ping 10.69.1.1 通

三個路由器的靜態路由 (參考實驗九圖)

設定routera的ip:

f0/0: 10.65.1.2  --->pca:10.65.1.1

f0/1: 10.66.1.2  --->pcb:10.66.1.1

s0/0: 10.67.1.2

s0/1: 10.68.1.2  --->接routerc s0/0

設定routerc的ip:

s0/0: 10.68.1.1  <---

s0/1: 10.78.1.2  --->接routerb s0/0

設定routerb的ip:

s0/0: 10.78.1.1  <---

s0/1: 10.67.1.1

f0/0: 10.69.1.2  --->pcc:10.69.1.1

f0/1: 10.70.1.2  --->pcd:10.70.1.1

設定從pca到pcc的靜態路由

[roa]ip routing

[roa]ip route-static 10.69.0.0 255.255.0.0 10.68.1.1

[roa]display ip route

[rob]ip route-static 10.69.0.0 255.255.0.0 10.78.1.1

[rob]display ip route

[root@pca root]#ping 10.69.1.1 (通)

[root@pca root]#ping 10.78.1.1 (不通)

[root@pca root]#ping 10.70.1.1 (不通)

為什麼pca 到10.78.1.1不通呢?它是去10.69.1.1要經過的地方啊,這是由於在

routera上,沒有去10.78.0.0網路的路由,所以到這個網路它不知道要向哪去送。

如何讓pca到10.70.1.1 (pcd)通呢,像10.69.0.0網路一樣,在路徑的路由器上

,再各寫一條到10.70.0.0網路的靜態路由就可以了。

如果每一條路徑都寫一組靜態路由顯然不好,由於pca在這個網路中實際只有一條

主通路,所以使用預設路由較好。

我們再做一個使用預設路由的小實驗,先去掉原有的靜態路由。

[roa]undo ip route-static 10.69.0.0 255.255.0.0 10.68.1.1

[roa]display ip route

[roa]undo ip route-static 10.69.0.0 255.255.0.0 10.78.1.1

[rob]display ip route

[root@pca root]#ping 10.69.1.1 (不通)

[roa]ip route-static 0.0.0.0 0.0.0.0 10.68.1.1

[rob]display ip route

[rob]ip route-static  0.0.0.0 0.0.0.0 10.69.1.1

[rob]display ip route

[root@pca root]#ping 10.69.1.1 (通)

[root@pca root]#ping 10.70.1.1 (通)

[root@pca root]#ping 10.78.1.1 (通)

路由表是路由器實現路由的指導思想。到一個網路通不通,要看路由表中有沒有去

目的網路的路由表項,動態路由可以自動建立路由表,定時更新。

[routerb-serial0]undo ip addrress 10.67.1.1 255.255.0.0

[routerb-serial0]ip addrress 10.70.1.1 255.255.0.0

[routerc]inte***ce serial0

[routerc-serial0]ip addrress 10.67.1.1 255.255.0.0

[routerc-serial0]undo shutdown

[routerc-serial0]clock rate 64000

[routerc-serial0]int s1

[routerc-serial1]ip addrress 10.70.1.1 255.255.0.0

[routerc-serial1]undo shutdown

[routerc-serial1]quit

[routerc]ip route-static 10.69.0.0 255.255.0.0 10.70.1.1

[routerc]dis curr

[root@pca root]#ping 10.69.1.1 通

[root@pca root]#ping 10.68.1.1 不通

思科交換機路由器命令,思科路由器和交換機的配置命令全集

no ip domain lookup 打下不存在的指令,不用等待查詢直接錯誤返回。username cisco password cisco 設定使用者名稱和密碼 enable secret cisco 設定enable密碼 line console 0 console口 logging syn ...

思科三層交換機ACL配置,思科三層交換機ACL配置

int vlan 2 ip add 192.168.0.1 255.255.255.0int vlan 3 ip add 192.168.3.1 255.255.255.0int vlan 4 ip add 192.168.4.1 255.255.255.0int vlan 5 ip add 192...

思科交換機問題

用最簡單的acl就可以了!下面是命令 以2621為例 這裡假設你的web伺服器的ip是 192.168.0.1 router en router conf t router config access list 101 permit tcp any host 192.168.0.1 eq 80 ro...