迈普交换机_配置手册_IS420
- 第一,初始化
- 第二,配置远程
- 第三,配置默认路由
- 第四,上联接口配置
- 第五,业务VLAN创建和配置业务口
第一,初始化
1.配置交换机名称、时间、特权模式密码和console密码
#clock 2021 2 19 8 52 0 //2021年2月19日 8:52
(config)# hostname xxxx //设置主机名为xxxx
(config)# enable password xxxx //指定特权模式密码
(config)# line con 0
(config-line)# password 0 xxxx //设置console密码
(config-line)# login
第二,配置远程
(config)# line vty 0 4
(config-line)# password 0 xxxx //配置虚拟终端登陆数和登陆密码
(config-line)# login
(config)# telnet server enable //开启telnet服务
(config)# vlan xxx //创建管理VLAN
(config)# int vlan xxx
(config-if-vlanxxx)# ip address 192.168.254.254 //配置管理地址
第三,配置默认路由
(config)#ip route 0.0.0.0 0.0.0.0 x.x.x.x //配置默认路由,x.x.x.x是网关
第四,上联接口配置
(config)int tengigabitethernet 0/36
(config-if-tengigabitethernet0/36)#switchport mode trunk
(config-if-tengigabitethernet0/36)#switchport trunk allowed vlan all //允许所有VLAN通过
第五,业务VLAN创建和配置业务口
(config)# vlan aaa
(config-vlanaaa)# name xxx //创建VLAN,添加描述
(config)# int gigabitethernet 0/1
(config-if-gigabitethernet0/1)#switchport mode access
(config-if-gigabitethernet0/1)#switchport access vlan aaa //端口配置access模式,并加入VLAN