三層交換配置常用命令

2021-05-02 02:31:53 字數 2786 閱讀 2368

三層交換相關知識

一、在路由器上配置單臂路由

router(config)#inte***ce fastethernet 0/0

router(config-if)#no shutdown

router(config-if)#exit

router(config)#inte***ce fastethernet 0/0.1

router(config-subif)#encapsulation dot1q 1

router(config-subif)#ip address10.1.1.1 255.0.0.0

router(config-subif)#exit

router(config)#inte***ce fastethernet 0/0.2

router(config-subif)#encapsulation dot1q 2

router(config-subif)#ip address20.1.1.1 255.0.0.0

router(config-subif)#exit

交換機與路由器連線的介面需配置為 trunk 模式,配置了單臂路由後,就可以實現vlan之間的路由。

二、三層交換機的配置

1、在三層交換機上配置啟用路由

switch(config)#ip routing

2、配置vlan的ip位址

switch(config)#inte***ce vlan 2

switch(config-if)#ip address 192.168.1.1 255.255.255.0

switch(config-if)#no shutdown

3、查年fib表

switch#show ip cef

4、檢視鄰接關係表

switch#show adjacency detail

5、在三層交換機上配置路由介面

switch(config-if)#no switchport

6、在三層交換機上配置動態路由

router(config)#router rip

router(config-router)#version 2

router(config-router)#no auto-summary

router(config)#network 192.168.2.0

7、配置dhcp中繼**

在不連線dhcp伺服器的vlan上配置dhcp伺服器的位址,實現dhcp廣播資訊的中繼**,命令如下:

switch(config)#inte***ce vlan vlan-id

switch(config-if)#ip helper-address dhcpserver-address

三、三層交換機實現vlan互通配置步驟

1、在二層交換機上配置vlan與trunk,並把相關介面新增到相應vlan

switch#vlan database

switch(vlan)#vlan 2 name v2

switch(vlan)#exit

switch(config)#inte***ce range f0/1 - 8

switch(config-if-range)#switchport access vlan 2

switch(config-if-range)#switchport mode access

switch(config-if-range)#exit

switch(config)#inte***ce f0/0

switch(config-if)#switchport mode trunk

2、在三層交換機上配置vlan與trunk

switch#vlan database

switch(vlan)#vlan 2 name v2

switch(vlan)#exit

switch(config)#inte***ce f0/0

switch(config-if)#switchport mode trunk

3、在三層交換機上配置啟動路由功能

switch-3l(config)#ip routing

4、在三層交換機上配置各vlan的ip位址

switch-3l(config)#inte***ce vlan 2

switch-3l(config-if)#ip address 192.168.1.1 255.255.255.0

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

switch-3l(config-if)#exit

5、驗證

switch-3l#show ip route

switch-3l#show ip cef

switch-3l#show adjacency detail

四、在三層交換機配置路由步驟

1、在三層交換機上配置路由介面,並配置介面的ip位址

switch-3l(config)#inte***ce f0/0

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

switch-3l(config-if)#ip address 192.168.1.1 255.255.255.0

2、在三層交換機上配置路由

switch-3l(config)#ip route 0.0.0.0 0.0.0.0 192.168.1.2

3、在路由器上配置路由

router(config)#ip route 192.168.2.0 255.255.255.0 192.168.1.1

4、驗證

switch-3l#show ip route

三層交換機配置命令

1 建vlan vlan data vlan 10 vlan 20 vlan 30 vlan 40 2 設管理vlan ip conf t inte ce vlan 1 ip address 192.168.1.254 255.255.255.0 no shutdown 3 設定vlan 10 40...

思科三層交換機配置命令

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

華為eNSP 三層交換配置

sw2 vlan batch 10 20 建立vlan10 20 sw2 int e0 0 2 sw2 ethernet0 0 2 port link type access 設定access sw2 ethernet0 0 2 port default vlan 10 將介面放到vlan中 sw2...