基本的VTP配置和VLAN的划分实验报告.docx
《基本的VTP配置和VLAN的划分实验报告.docx》由会员分享,可在线阅读,更多相关《基本的VTP配置和VLAN的划分实验报告.docx(9页珍藏版)》请在冰豆网上搜索。
基本的VTP配置和VLAN的划分实验报告
基本VTP配置和VLAN的划分
实验报告
实验项目:
配置VTP和划分Vlan
实验环境:
1.CiscoPacketTracer
2.Cisco2960交换机2台,主机4台
3.链接线缆若干
实验目的:
通过SWI管理和创建Vlan
实验要求:
将各PC机划分到对应Vlan中,各PC机IP地址根据情况设置,保证最终Vlan内部PC机可以互访,但各Vlan之间PC机不能互访。
实验步骤及具体操作
(恢复所有交换机的配置为出厂设置)
1.先将SW1设置为VTP服务器,再将SW2设置为VTP客户端模式
全局配置模式下,定义VTP模式:
Switch(config)#vtpmode{server|client|transparent}
定义VTP域名,在同一VLAN管理域的交换机的VTP域名必须相同.该域名长度为1到32字符:
Switch(config)#vtpdomain{domain-name}
设置VTP域的密码,同一VTP域里的交换机的VTP域的密码必须一致,密码长度为8到64字符.可选:
Switch(config)#vtppassword{password}
SW1(config)#vtpdomainvtp-1
ChangingVTPdomainnamefromNULLtovtp-1
SW1(config)#vtpmodese
SW1(config)#vtpmodeserver
DevicemodealreadyVTPSERVER.
SW1(config)#vtppass
SW1(config)#vtppassword123
SettingdeviceVLANdatabasepasswordto123
SW2(config)#vtpdom
SW2(config)#vtpdomainvtp-1
ChangingVTPdomainnamefromNULLtovtp-1
SW2(config)#vtpmodeclient
SettingdevicetoVTPCLIENTmode.
SW2(config)#vtppa
SW2(config)#vtppassword
%Incompletecommand.
SW2(config)#vtppass
SW2(config)#vtppassword123
SettingdeviceVLANdatabasepasswordto123
2.在SW1里创建vlan30和vlan40,那么SW2将自己学习得到vlan30和vlan40
全局配置模式下,输入VLANID,进入VLAN配置模式:
Sw1(config)#vlan{vlan-id}
为VLAN设置名字.可选:
Sw(config-vlan)#name{vlan-name}
SW1(config)#vlan30
SW1(config-vlan)#name111
SW1(config-vlan)#vlan40
SW1(config-vlan)#name222
SW2#shvlan
VLANNameStatusPorts
----------------------------------------------------------------------------
1defaultactiveFa0/1,Fa0/2,Fa0/3,Fa0/4
Fa0/5,Fa0/6,Fa0/7,Fa0/8
Fa0/9,Fa0/10,Fa0/11,Fa0/12
Fa0/13,Fa0/14,Fa0/15,Fa0/16
Fa0/17,Fa0/18,Fa0/19,Fa0/20
Fa0/21,Fa0/22,Fa0/23,Fa0/24
30111active
40222active
1002fddi-defaultact/unsup
1003token-ring-defaultact/unsup
1004fddinet-defaultact/unsup
1005trnet-defaultact/unsup
VLANTypeSAIDMTUParentRingNoBridgeNoStpBrdgModeTrans1Trans2
--------------------------------------------------------------------
1enet1000011500-----00
30enet1000301500-----00
40enet1000401500-----00
1002fddi1010021500-----00
--More--
3.将IP地址设置为192.168.1.0/24网段的PC机划入Vlan10中
将IP地址设置为192.168.2.0/24网段的PC机划入Vlan20中
创建了以太网VLAN之后,接下来把交换机端口分配到特定的VLAN里.假如你把端口分配进了不存在的VLAN里,那么新的VLAN将自动被创建.进入接口配置模式:
Switch(config)#interface{interface}
定义VLAN端口的成员关系,把它定义为层2接入端口:
Switch(config-if)#switchportmodeaccess
把端口分配进特定的VLAN里:
Switch(config-if)#switchportaccessvlan{vlan-id}
SW1(config)#intf0/1
SW1(config-if)#switchportaccessvlan10
SW1(config-if)#intf0/2
SW1(config-if)#switchportaccessvlan20
5.进入f0/24端口设置级联端口工作模式为trunk模式,并且允许所有vlan数据通过定义端口为层2的中继端口:
Sw1(config-if)#switchportmode{dynamicauto|dynamicdesirable|trunk}
SW1(config)#intf0/24
SW1(config-if)#switchportmodetrunk
SW1(config-if)#switchporttrunkallowedvlanall
查看各交换机的VTP信息和Vlan信息
Switch#showvtpstatus//查看vtp运行状态
Switch#showvlan//查看vlan信息
Switch#reload//重启设备
Switch#running-config//查看当前设备正在运行的配置信息
6.最后Vlan内部PC机可以互访,但两个Vlan之间PC机不能互访
实验结论:
通过VTP配置和划分VLAN,逐步了解了vtp的基本工作原理,运行模式及配置方法。