核心层交换机
配置工厂汇聚层交换机三层端口
- 进入特权模式 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#
最后保存工厂文件。