你的情况,如下提示:
配置VTP协议,如果此交换机设置的是CLIENT mode,这台设备只能从server mode 的主设备那里学习VTP的各个参数,所以CLIENT mode不能建立VLAN,只能学习VLAN,如果想建立VLAN需要在server主设备建立,然后这个交换机学习。
而且一般加入网络的新交换机,不建议直接联网配置,需要启动设备在server mode下配置VTP相应参数后,变成CLIENT mode再接入网络,否则会引起原有网络vtp server 设备互相学习,引起网络问题。
你把这个设置成服务端模式
以下给你一点相关知识:
Switch#configure terminal——进入全局配置模式
Enter configuration commands, one per line. End with CNTL/Z.
Switch(config)#hostname 2950——改变交换机名字为2950
2950(config)#int vlan1
2950(config-if)#ip address 192.168.1.100 255.255.255.0 ——VLAN1里面设置IP地址及子网掩码
2950(config)#ip default-gateway 192.168.1.1——设置默认网关(路由器E0口IP地址)
2950(config)#exit——退出全局配置模式
2950#vlan database——进入vlan配置模式
2950(vlan)#vtp server——进入VTPserver工作模式
Device mode already VTP SERVER.
2950(vlan)#vtp domain 456——设置VTP域名为456
Changing VTP domain name from NULL to 456
2950(vlan)#vtp password 2950456——设置VTP域密码为2950456
Setting device VLAN database password to 2950456
2950(vlan)#vtp pruning——启用VTP裁剪
Pruning switched ON
2950(vlan)#exit——退出vlan配置模式
2950#show vtp status——查看VTP配置
VTP Version : 2
Configuration Revision : 3
Maximum VLANs supported locally : 64
Number of existing VLANs : 7
VTP Operating Mode : Server——VTP工作模式
VTP Domain Name : 456——VTP域名字
VTP Pruning Mode : Enabled——VTP裁剪已经启用
VTP V2 Mode : Disabled
VTP Traps Generation : Disabled
MD5 digest : 0xFA 0x65 0x40 0x17 0xD7 0xAE 0xEA 0xF3
Configuration last modified by 192.168.8.2 at 3-1-93 00:17:41
Local updater ID is 192.168.8.2 on interface Vl1 (lowest numbered VLAN interface
found)
2950#vlan database——进入vlan配置模式
2950(vlan)#vlan 2 name v2——创建vlan,vlan ID为2、vlan名字为v2,如果不创建名字,则系统默认vlan名字为VLAN0002
2950(vlan)#exit——退出vlan配置模式
2950#configure terminal——进入全局配置模式
Enter configuration commands, one per line. End with CNTL/Z.
2950(config)#interface f0/2——进入快速以太网接口第0槽第2个接口
2950(config-if)#switchport access vlan 2——将这个接口加入vlan 2
2950(config-if)#switchport mode access ——设置该接口为ACCESS模式
2950(config-if)#switchport mode ?
access Set trunking mode to ACCESS unconditionally
dynamic Set trunking mode to dynamically negotiate access or trunk mode
trunk Set trunking mode to TRUNK unconditionally
2950(config-if)#switchport mode dynamic ?
auto Set trunking mode dynamic negotiation parameter to AUTO
desirable Set trunking mode dynamic negotiation parameter to DESIRABLE
cisco网络中,交换机在局域网中最终稳定状态的接口类型主要有四种:access/ trunk/ multi/ dot1q-tunnel。
1、access:主要用来接入终端设备,如PC机、服务器、打印服务器等。
2、trunk:主要用在连接其它交换机,以便在线路上承载多个vlan。
3、multi:在一个线路中承载多个vlan,但不像trunk,它不对承载的数据打标签。主要用于接入支持多vlan的服务器或者一些网络分析设备。
设置成vtp mode sever模式 client模式不能修改VLAN
标签:vlan