目录
前言
一、交换机介绍
二、交换机配置
1、基本命令
2、常用命令
3、交换机恢复出厂配置
4、telnet 远程登录设置
5、交换机VLAN设置
(1)添加,删除 vlan
(2)命名vlan
(3)将端口加入vlan
6、交换机设置VLAN IP地址
7、Trunk的配置
8、以太网通道配置(二层口)
9、以太网通道配ip地址(三层口)
10、VTP的配置
11、三层交换机配置
(1)配置虚拟接口IP地址
(2)配置物理接口IP地址
(3)配置DHCP中继
12、STP生成树配置
13、HSRP(热备份)配置
结语
交换机分为网管型交换机和非网管型交换机(俗称傻瓜式交换机)
非网管交换机插上网线即可使用,它可以识别数据包中的MAC地址信息, 然后根据MAC地址进行转发, 并将这些MAC地址与对应的端口记录在自己内部的一个地址表中
网管型交换机就是可以根据自己的配置进行网络管理的交换机,网管型交换机常用Console端口对交换机进行配置
switch>用户模式switch>enable进入特权模式switch#特权模式switch#config terminal进入配置模式switch(config)#配置模式switch(config)#enable password abc123设置特权模式密码为abc123switch(config)#enable secret abc123设置特权模式密码为加密的密码abc123switch(config)#hostname sw1设置主机名为sw1sw1(config)#主机名变为sw1sw1(config)#end退回到特权模式sw1#特权模式sw1#exit退回到上一个模式sw1>
用户模式
switch(config)#enable password 密码配置交换机进入特权模式密码switch(config)#no enable secret取消特权模式加密密码switch#show version查看系统中的所有版本信息switch#show ip int b查看各接口状态switch#show vlan 10查看交换机有关vlan10配置信息switch#show vlan int b查看交换机所有vlan信息switch#show running-configure查看交换机当前起作用的配置信息switch#show interface fastethernet0/1查看交换机接口1具体配置和统计信息switch#show mac-address-table查看mac地址转发表
switch#write
保存配置信息(写入配置信息)switch#show vtp查看vtp配置信息switch#show run查看当前配置信息switch#show vlan brief查看vlan配置信息switch#show interface brief查看端口信息switch#show int f0/0查看指定端口信息switch#copy running-config startup-config保存交换机配置switch(config-if)#speed 100设置速率switch(config-if)#duplex full设置该端口为全双工,full全双工 half半双工 auto为自动switch#show ip route查看是否有路由表,是否开启路由功能
在配置模式中无法使用show命令,如果要使用的话show前必须加do和空格
例:do show ip int b
switch> enableswitch# erase startup-configureswitch# write eraseswitch# reload
switch>enswitch#configure terminalswich(conf)#enable password abc123abc123特权模式密码(明文加密)swich(conf)#enable secret abc123密文加密swich(conf)#interface vlan 1以vlan 1端口作为远程登录的接口,其他端口亦可swich(conf-if)#ip address 192.168.1.1 255.255.255.0swich(conf-if)#no shutswich(conf-if)#exitswich(conf)line vty 0 4设置0-4个用户可以telnet 远程登陆swich(conf-line)#password
swich(conf-line)#login
(1)添加,删除 vlan
switch#vlan database进入vlan设置switch(vlan)#vlan 2建立vlan2switch(vlan)#no vlan 2删除vlan 2
(2)命名vlan
switch(config)# valn 2switch(config-vlan)# name 名字
(3)将端口加入vlan
switch(config)# interface range fastethernet 0/1 - 5进入同种类型多端口配置switch(config)#interface range fastethernet 0/1 - 5,gigabitethernet 0/1 - 2进入不同类型多端口配置switch(config-if)#switchport access vlan 2当前端口加入vlan 2
switch(config)#interface vlan 1进入vlan 1switch(config-if)#ip address ip地址设置IP地址switch(config-if)#exitswitch(config)#ip default-gateway 网关地址设置交换机默认网关,telnet交换机时可以使用vlan ip地址连接
switch(config-if)#switchport trunk encap dot1q设置vlan中继执行的协议switch(config-if)#switchport mode trunk将接口设置为中继switch(config-if)#switchport trunk allowed vlan 1,2设置允许通过的vlanswitch(config-if)#switchport trunk allowed vlan remove vlan号禁止trunk中某个VLAN的传输
switch1(config)#int range f0/1 -2进入接口f0/1和f0/2switch1(config-if-range)#channel-group 1 mode on绑定switch#show etherchannel summary查看绑定的接口
switch1(config)#int port-channel 1switch1(config-if)#ip add ip地址 子网掩码
sw1(config)#vtp domain 域名设置域名sw1(config)#vtp mode server或client或transparent设置交换机VTP模式sw1(config)#vtp password 密码设置服务器密码,需要同步vtp的交换机需要设相同的密码
VTP修剪
sw1(config)#vtp pruning启动VTP修剪sw1(config)#vtp version 2配置VTP版本,默认1sw1(config)#switchport trunk pruning vlan remove vlan号从可修剪列表中去除某VLAN例:switchport trunk pruning vlan remove 2-4,6,8sw1#show interface pruning查看哪些接口以及哪几个vlan被修剪了sw1#show vtp status查看vtp配置信息
(1)配置虚拟接口IP地址
switch(config)# interface vlan vlan号switch(config-if)# ip address ip地址 子网掩码switch(config-if)# no shutdown
(2)配置物理接口IP地址
switch(config)#ip routing启用路由功能switch(config)# interface f0/1switch(config-if)#no switchport将物理二层接口转换为物理三层接口switch(config-if)#ip address ip地址 子网掩码switch(config-if)# no shutdown
(3)配置DHCP中继
switch(config)#service dhcp开启DHCP服务switch(config-if)#ip helper-address dhcp服务器ip地址
启用stp生成树
switch(config)#spanning-tree vlan vlan号
设置网桥优先级,值小的优先级高
switch(config)#spanning-tree vlan vlan号 priority 32768{默认32768,范围0~65535}
指定根网桥
switch(config)#spanning-tree vlan vlan号 root primary (primary优先级为24576,secondary优先级为28672)
指定端口成本
switch(config-if)#spanning-tree vlan vlan号 cost 成本
指定交换机端口优先级
switch(config-if)#spanning-tree vlan vlan号 port-prioty 优先级 {优先级0~255,默认128}
配置速端口
switch(config-if)#spanning-tree portfast
查看生成树配置信息
switch#show spanning-tree
查看详细生成树配置信息
switch#show spanning-tree vlan detail
查看详细生成树端口配置信息
switch#show spanning-tree interface f0/1 detail
查看某个VLAN生成树配置信息
switch#show spanning-tree vlan vlan号 brief
sw1(config)#int vlan 10sw1(config-if)#ip add 192.168.10.1 255.255.255.0sw1(config-if)#standby hsrp组号{组号默认0,范围0~255} ip 网段网关地址配置为hsrp成员sw1(config-if)#standby hsrp组号 priority 200{默认100,范围0~255}配置端口优先级sw1(config-if)#standby hsrp组号 preempt配置抢占权sw1(config-if)#standby hsrp组号 track 端口类型 端口号 优先级配置端口跟踪和减去的优先级例:sw1(config-if)#standby 10 track fastethernet 1/1 100sw1#show standby brief查看hsrp的状态sw1#show standby 端口类型 端口号 hsrp组号 brief查看指定端口hsrp的状态
版权声明:
本文来源网络,所有图片文章版权属于原作者,如有侵权,联系删除。
本文网址:https://www.mushiming.com/mjsbk/4522.html