思科高階配置 三層交換配置路由

2021-09-22 18:45:18 字數 3388 閱讀 1643

問題

三層交換機實現了vlan間互通後,還要與其他網路進行通訊,這樣就需要有相關的路由機制。

1)交換介面配置為三層介面實現路由間通訊

方案三層交換機既然具有三層功能,也就可以實現與路由器相似的配置。既可以把交換介面配置為三層介面,也可以在其上配置靜態、動態路由。通過對三層交換機的路由配置,實現vlan與其他網路的互通。

網路的拓撲結構如所示:

步驟實現此案例需要按照如下步驟進行。

步驟一:vlan等配置與上面2 三層交換vlan間通訊通完全一致,不再贅述
三層交換機的物理埠預設是二層埠,只具有二層特性,不能配置ip位址。把二層埠配置為三層埠後,該埠就具備路由功能了,可以配置ip位址,但同時也就關閉了其二層特性,比如不能把三層埠加入vlan。

二層埠(交換機上的埠預設都是二層埠)預設是啟用狀態,那些沒有使用到的埠為了安全應該手工將其禁用(shutdown);而三層埠(路由器上的埠或是三層交換機上被配置成路由埠的埠)預設是禁用狀態,在使用之前務必要將其啟用(no shutdown)。

tarenasw-3l(config)#inte***ce f0/23

tarenasw-3l(config-if)#no switchport

tarenasw-3l(config-if)#ip address 192.168.10.2 255.255.255.0

tarenasw-3l(config-if)#no shutdown

tarena-rouer(config)#inte***ce f0/0tarena-rouer(config-if)#ip address 192.168.10.1 255.255.255.0

tarena-rouer(config-if)#no shutdown

tarena-rouer(config-if)#inte***ce f0/1

tarena-rouer(config-if)#ip address 200.1.1.1 255.255.255.0

tarena-rouer(config-if)#no shutdown

步驟四:在三層交換機上配置預設路由,以便vlan內主機可以與外界網路互聯
tarenasw-3l(config)#ip route 0.0.0.0 0.0.0.0 192.168.10.1

tarenasw-3l(config)#exit

tarenasw-3l#show ip route

codes: c - connected, s - static, i - igrp, r - rip, m - mobile, b - bgp

d - eigrp, ex - eigrp external, o - ospf, ia - ospf inter area

n1 - ospf nssa external type 1, n2 - ospf nssa external type 2

e1 - ospf external type 1, e2 - ospf external type 2, e - egp

i - is-is, l1 - is-is level-1, l2 - is-is level-2, ia - is-is inter area

* - candidate default, u - per-user static route, o - odr

p - periodic downloaded static route

gateway of last resort is 192.168.10.1 to network 0.0.0.0

c 192.168.1.0/24 is directly connected, vlan1

c 192.168.2.0/24 is directly connected, vlan2

c 192.168.3.0/24 is directly connected, vlan3

c 192.168.10.0/24 is directly connected, fastethernet0/23

s 0.0.0.0/0 [1/0] via 192.168.10.1*

步驟五:在路由器上配置到達三個vlan網路的靜路由
tarena-rouer(config)#ip route 192.168.1.0 255.255.255.0 192.168.10.2

tarena-rouer(config)#ip route 192.168.2.0 255.255.255.0 192.168.10.2

tarena-rouer(config)#ip route 192.168.3.0 255.255.255.0 192.168.10.2

tarena-rouer(config)#exit

tarena-rouer#show ip route

codes: c - connected, s - static, i - igrp, r - rip, m - mobile, b - bgp

d - eigrp, ex - eigrp external, o - ospf, ia - ospf inter area

n1 - ospf nssa external type 1, n2 - ospf nssa external type 2

e1 - ospf external type 1, e2 - ospf external type 2, e - egp

i - is-is, l1 - is-is level-1, l2 - is-is level-2, ia - is-is inter area

* - candidate default, u - per-user static route, o - odr

p - periodic downloaded static route

gateway of last resort is not set

s 192.168.1.0/24 [1/0] via 192.168.10.2

s 192.168.2.0/24 [1/0] via 192.168.10.2

s 192.168.3.0/24 [1/0] via 192.168.10.2

c 192.168.10.0/24 is directly connected, fastethernet0/0

c 200.1.1.0/24 is directly connected, fastethernet0/1

tarena-rouer#

步驟六:在server上測試與三個vlan的連通性

思科三層交換機配置命令

enable 進入私有模式 configure terminal 進入全域性模式 service password encryption 對密碼進行加密 hostname catalyst 3550 12t1 給三層交換機定義名稱 enable password 123456.enable密碼 en...

三層交換機路由配置

1.用三層交換機配置靜態路由實現不同vlan間通訊 2.rip動態路由配置 3.ospf動態路由配置 4.預設路由配置 一 給兩台pc設定ip 掩碼和閘道器 pc0 192.168.1.2 255.255.255.0 pc1 192.168.2.2 255.255.255.0 二 給兩台三層交換機劃...

三層交換機配置靜態路由實驗

根據上圖實現全網互通。首先將ip位址和閘道器掩碼都配置上,配置後如下圖 分配的ip如下 pc0 192.168.10.10 255.255.255.0 pc1 192.168.20.20 255.255.255.0 pc2 192.168.30.30 255.255.255.0 pc3 192.16...