单个交换机问题:
选设备
连线
配主机IP【IP配置位置,点击PC机小图标,下图】
配交换机
//进入特权模式switch>enableswitch(config)#hostname s1//配置vlans1(config)#vlan 10s1(config-vlan)#vlan 20s1(config-vlan)#exits1# show vlan//添加端口s1(config)#int f0/1s1(config-if)#switchport mode access s1(config-if)#switchport access vlan 10//接着将其他PC 机配置到各自的vlan 10/20里面即可
5. 查看vlan主要概况
s1#show vlan brief
多个交换机问题:
选设备
连线
配主机IP【与上述配置基本一致】
配交换机
vlan配置过程:
为所有交换机配置vtp:
其中一个配置为服务器模式
switch1#vlan database //并进入vlan配置模式switch1(vlan)#vtp domain csico //设置vtp的域switch1(vlan)#vtp password csico //设置vtp的域密码switch1(vlan)#vtp server//设置vtp的模式switch1(vlan)#vtp v2-mode//设置vtp的版本switch1(vlan)#exit //退出该模式
另一个配置为客户模式
switch2#vlan database //并进入vlan配置模式switch2(vlan)#vtp domain csico //设置vtp的域switch2(vlan)#vtp password csico //设置vtp的域密码switch2(vlan)#vtp client//设置vtp的模式switch2(vlan)#vtp v2-mode//设置vtp的版本switch2(vlan)#exit //退出该模式
2) 把交换机间互连的链路配置为trunk链路
switch1(config)#interface fastethernet0/1 //进入端口配置模式switch1(config-if)#switchport mode trunk//设置端口为trunk类型switch1(config-if)#no shut //激活
switch2(config)#interface fastethernet0/1 //进入端口配置模式switch2(config-if)#switchport mode trunk//设置端口为trunk类型switch2(config-if)#no shut //激活
3) 与单个交换机的vlan配置相似
switch#vlan database //并进入vlan配置模式switch(vlan)#vlan 10 name chinese //新建vlan 10并设置名字……switch(vlan)#exit //退出该模式
//在每个交换机把端口添加到相应的vlan中,比如服务器端switch1就配置连接到他端口的PC机switch(config)#interface fastethernet0/1 //进入端口配置模式switch(config-if)#switchport mode access//设置端口为access类型switch(config-if)#switchport access vlan 10 //把端口划分到vlan10……