核心層交換機
配置工廠彙聚層交換機三層端口
- 進入特權模式 enable
L3-Workshop>en
- 進入全局配置模式 configure terminal
L3-Workshop#conf t
- 進入 GigbitEthernet 0/1 的端口配置模式,因為它是工廠彙聚層交換機和萬事通公司核心層交換機相連的端口
L3-Workshop(config)#interface GigabitEthernet 0/1
- 将端口更新三級端口
L3-Workshop(config-if)#no switchport
- 配置端口的ip位址和子網路遮罩
L3-Workshop(config-if)#ip address 192.168.3.1 255.255.255.0
- 保持本端口為開啟狀态
L3-Workshop(config-if)#no shutdown
- 退回到特權模式
L3-Workshop(config-if)#end
- 将目前配置寫入工廠彙聚層交換機的記憶體中
L3-Workshop#write
- 在工廠的網絡拓撲旁邊建立辦公樓的網絡拓撲并對接入層和彙聚層進行相同的配置,得到整個公司的接入層和彙聚層的網絡拓撲
配置核心層交換機
- 在兩台彙聚層交換機的上方添加一台型号為3650-24PS的三層核心交換機,并為三層核心交換機添加電源子產品
- 用銅交叉線分别連接配接兩台彙聚層交換機的 GigbitEthernet 0/1 端口分别連接配接到核心層交換機的 GigbitEthernet 1/0/1 和 GigbitEthernet 1/0/2 端口
3. 打開核心層交換機的指令行界面
4. 輸入no進入使用者模式
% Please answer 'yes' or 'no'.
Would you like to enter the initial configuration dialog? [yes/no]: no
Press RETURN to get started!
- 配置基本資訊包括名稱和使能密碼
Switch>enable
Switch#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
Switch(config)#hostname Core
Core(config)#enable password 123456
配置核心層交換機的三層端口
配置核心層交換機與工廠彙聚層交換機連接配接的端口
- 進入GigabitEthernet1/0/1端口的端口配置模式,也就是與工廠彙聚層交換機連接配接的端口的配置模式
Core(config)#interface GigabitEthernet1/0/1
- 将其更新為三級端口
Core(config-if)#no switchport
Core(config-if)#
%LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet1/0/1, changed state to down
%LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet1/0/1, changed state to up
- 配置本端口的ip位址和子網路遮罩
Core(config-if)#ip address 192.168.3.2 255.255.255.0
- 保持接口為開啟狀态
Core(config-if)#no shutdown
%LINK-5-CHANGED: Interface GigabitEthernet1/0/1, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet1/0/1, changed state to up
配置核心層交換機與辦公樓彙聚層交換機連接配接的端口
指令和核心層交換機與工廠彙聚層交換機連接配接端口的配置指令相同
Core(config)#interface GigabitEthernet1/0/2
Core(config-if)#no switchport
Core(config-if)#
%LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet1/0/2, changed state to down
%LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet1/0/2, changed state to up
Core(config-if)#ip address 192.168.4.2 255.255.255.0
Core(config-if)#no shutdown
退回到特權模式
Core(config-if)#end
Core#
%SYS-5-CONFIG_I: Configured from console by console
Building configuration...
Compressed configuration from 7383 bytes to 3601 bytes[OK]
[OK]
将目前配置寫入到核心層交換機的記憶體中
Core#write
Building configuration...
Compressed configuration from 7383 bytes to 3601 bytes[OK]
[OK]
Core#
最後儲存工廠檔案。