三層交換機路由配置靜態路由路由器和三層交換機配置靜態路由後不能連通

2021-03-05 09:19:27 字數 6116 閱讀 2273

1樓:匿名使用者

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

2樓:菸草

你貌似在用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 不通

路由器和三層交換機配置靜態路由後不能連通 5

3樓:匿名使用者

這種情況一般是靜態路由設定為了單向,你試著再加一條由192.168.15.111到192.168.1.1的靜態路由,

靜態路由配置(三層交換機,劃分vlan,路由器)

4樓:匿名使用者

乙太網介面不是點對點的協議,是無法指定介面的

,也就是說他是以廣播方式傳送的,下一介面是分不出來具體資料的。如介面是ppp協議的就可以指定了,一般都在路由器上使用

如ip rout 0.0.0.0 0.0.0.0 s0 (串列埠)

5樓:匿名使用者

192.168.1.2 0.0.0.0 0.0.0.0

不需要配置制定**埠

只需要在3層上配置預設的**就可以了吧

6樓:匿名使用者

通俗點說,只有下一跳的裝置才是網路的開始。

路由器指定乙個**出口就行這事我配靜態路由時沒用到過,只有動態路由才是這麼配的。

7樓:

是不是你這款交換機這個功能只能用0-9做這個命令啊??什麼交換機?

關於三層交換機靜態路由配置問題

8樓:百度文庫精選

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

原發布者:夏黑設計

期中考試實驗:三層交換

機的靜態

路由配置姓名:夏黑

一、實驗名稱三層交換機的靜態路由配置

二、實驗原理將兩層交換埠變換為三層交換口,在三層交換機上配置靜態路由,不增加路由器開銷。實現兩台pc機網路互連功能。

三、實驗環境及裝置環境:packettracer5.0軟體裝置:

兩台s3560switch(sw1sw2)兩台pc機(pc1pc2)三根coppercross-over線介面:fastether***0/1fastether***0/5

四、實驗內容1)根據拓撲圖連線2)測試連線未配置路由情況下,pc1不能ping通pc2。期望目標:在s3560上啟用靜態路由,到192.

168.1.0走10.

0.0.1,到192.

168.2.0走10.

0.0.2。

pc1可以ping通pc23)測試結果4)實驗總結5)實驗心得

五、實驗步驟及命令清單/*參考老師傳的實驗指導書和思科路由器配置命令大全*/步驟1:先根據描述搭建拓撲、進行連線在空白面新增:兩台s3560交換機(switches->356024ps)兩台pc機(enddevices->generic)介面連線:

使用coppercross-over線(connections->coppercross-over)分別fastether***0/1連線兩台交換機,fastether***0/5連線pc及與交換機步驟2:配置交換機資訊單擊交換機,更改名稱為sw1和sw2(config->displayname)使用配置命令(->cli)sw1:switch>enable//進入私有模式switch#conft//進入全域性模式switch(config)#hostnamesw1//給三層交換機定義名稱sw1(config)#inte***cefa0/1//進入fastether***0/1sw1(config-if)#noswitchports

三層交換機加路由器ospf路由的問題

交換機之間配了ospf域。同樣和交換機相連的路由器之間也要配置ospf域,才能學習到路由器的路由表,你只在交換機之間配ospf,路由器之間的靜態路由路由並不會通告給ospf內部 肯定是你沒有配置好,你可以把pt搭建好,這樣便於排查 你的這個問題,在於你對ospf的通告及路由條目學習的理解上,從你的描...

關於路由器和三層交換機的直連路由

路由器上寫 ip route 172.16.1.0 255.255.255.0 172.16.10.3 ip route 172.16.6.0 255.255.255.0 172.16.10.3 這兩條命令式複製一樓的,你之所以路由器沒有ping通pc 是因為三層交換機的原因,三層交換機的意義就在於...

路由器一層交換機二層交換機,三層交換機等什麼意思

如果你把本地設定為10.198.18.01肯定上不去網了,因為閘道器ip是192.168.1.1,除非.嘿嘿vpn,pppoe啥的,你還不懂 另外交換機沒有一層的.這個不是啥數字大小的問題,是osi模型的問題,三層交換機帶有路由功能,所以屬於第三層裝置網路層,所以叫三層交換機 你要設定的是每個分機的...