1.1通过TELNET方式来配置设备
提问:如何通过telnet方式来配置设备?
答复:
步骤一:配置VLAN1IP地址
S5750>en    ----进入特权形式
S5750#conf  ----进入全局配置形式
S5750(config)#int vlan 1    ----进入vlan 1接口
S5750(config-if)#ip address 192.168.0.230 255.255.255.0 
----vlan 1接口上设置管理ip
S5750(config-if)#exit    ----退回到全局配置形式
步骤二:配置telnet密码
S5750(config)#line vty 0 4        ----进入telnet密码配置形式
S5750(config-line)#login  ---启用需输入密码才能telnet成功
S5750(config-line)#password rscstar  ----telnet密码设置为rscstar
S5750(config-line)#exit  ----回到全局配置形式
S5750(config)# enable secret level 15 0 rscstar
----配置进入特权形式的密码为rscstar
1.2更改IOS命令的特权等级
提问:如何只允许dixy这个用户使用与ARP相关的命令?
答复:
S5750(config)#username dixy password dixy        ----设置dixy用户名和密码
S5750(config)#username dixy privilege 10        ----dixy帐户的权限为10
S5750(config)#privilege exec level 10 show arp
----权限10可以使用show arp命令
S5750(config)#privilege config all level 10 arp 
----权限10可以使用所有arp打头的命令
S5750(config)#line vty 0 4              ----配置telnet登陆用户
S5750(config-line)#no password
太原大学专科S5750(config-line)#login local
设备时钟设置
提问:如何设置设备时钟?
答复:
S5750#clock set 12:45:55 11 25 2021 
----设置时间为20211125124555
S5750#clock update-calendar    ----设置日历更新
S5750(config)#clock timezone CN 8 22  ----时间名字为中国,东822
2.1 交换机vlan和trunk的配置
提问:如何在交换机上划分vlan,配置trunk接口?
答复:
步骤一:给交换机配置IP地址
S2724G#conf
S2724G(config)#int vlan 1
----VLAN 1配置IP地址
S2724G(config-if)#no shutdown   ----激活该VLAN接口
S2724G(config-if)#exit
S2724G(config)#ip default-gateway 192.168.0.1 ---指定交换机的网关地址
步骤二:创立VLAN
S2724G#conf
S2724G(config)#vlan 10    ----创立VLAN 10
S2724G(config-vlan)#exit
S2724G(config)# vlan 20      ----创立VLAN 20
S2724G(config-vlan)#exit
步骤三:把相应接口指定到相应的VLAN
S2724G(config)#int gi 0/10
S2724G(config-if)#switch access vlan 10  ----把交换机的第10端口划到VLAN 10
S2724G(config-if)#exit
S2724G(config)#int gi 0/20
S2724G(config-if)#switch access vlan 20  ----把交换机的第20端口划到VLAN 20
S2724G(config-if)#exit
S2724G(config)#int gi 0/24
S2724G(config-if)#switch mode trunk  ----设置24口为Trunk形式〔与三层交换机的连接口
田蕊妮照片
S2724G(config-if)#
步骤四:保存配置怎样给电脑设置密码
S2724G(config-if)#end
S2724G#write
2.2 turnk接口修剪配置
提问:如何让trunk接口只允许局部vlan通过?
答复:
Switch(config)#int fa 0/24
Switch (config-if)#switch mode trunk
Switch (config-if)#switchport trunk allowed vlan remove 10,20,30-40
----不允许VLAN10,20,30-40通过Trunk
 
2.3 PVLAN配置
提问:如何实现几组用户之间的隔离,但同时又都能访问公用效劳?
答复:
步骤一:创立隔离VLAN
S2724G#conf
S2724G(config)#vlan 3      ----创立VLAN3
S2724G(config-vlan)#private-vlan community    ----VLAN3设为隔离VLAN
S2724G(config)#vlan 4        ----创立VLAN4
S2724G(config-vlan)#private-vlan community    ----VLAN4设为隔离VLAN
S2724G(config-vlan)#exit          ----退回到特权形式
步骤二:创立主VLAN
S2724G(config)#vlan 2          ----进入VLAN2
S2724G(config-vlan)#private-vlan primary  林心如归宁宴 ----VLAN2为主VLAN
步骤三:将隔离VLAN加到到主VLAN
VLANS2724G(config-vlan)#private-vlan association add 3-4 
----VLAN3VLAN4参加到公用VLAN中,VLAN3VLAN4的用户可以访问公用接口澳大利亚大学
步骤四:将实际的物理接口与VLAN相对应
S2724G(config)#interface GigabitEthernet 0/1   
----进入接口1,该接口连接效劳器或者上联设备
S2724G(config-if)#switchport mode private-vlan promiscuous 
----接口形式为混杂形式
S2724G(config-if)#switchport private-vlan mapping 2 add 3-4 
----VLAN3VLAN4映射到VLAN2
S2724G(config)#int gi 0/10            ----进入接口10
S2724G(config-if)#switchport mode private-vlan host
S2724G(config-if)#switchport private-vlan host-association 2 3 
----该接口划分入VLAN3
S2724G(config)#int gi 0/20                          ----进入接口20
S2724G(config-if)#switchport mode private-vlan host
S2724G(config-if)#switchport private-vlan host-association 2 4         
----该接口划分入VLAN4
步骤五:完成VLAN的映射
S2724G(config)#int vlan 2                            ----进入VLAN2SVI接口
S2724G(config-if)#ip address 192.168.2.1 255.255.255.0 
----配置VLAN2ip地址
S2724G(config-if)#private-vlan mapping add 3-4 
----VLAN3VLAN4参加到VLAN2
注释:
1.  S20S21不支持私有VLAN章子怡身高,可以通过保护端口实现类似功能
2.  S3250S3750S5750同时支持保护端口和私有VLAN
3.  S3760不支持私有VLAN和保护端口
2.4 端口会聚配置
提问:如何将交换机的端口捆绑起来使用?
答复:
S5750#conf
S5750(config)#interface range gigabitEthernet 0/1 – 4 ----同时进入14号接口
S5750(config-if)#port-group 1                      ----设置为聚合口1
S5750(config)#interface aggregateport 1          ----进入聚合端口1
注意:配置为AP口的接口将丧失之前所有的属性,以后关于接口的操作只能在AP1口上面进展
2.5 生成树配置
提问:如何配置交换机的生成树?
答复:
步骤一:根桥的设置
switch_A#conf t