* vlan 思路 (access 、Trunk)
(1)创建Vlan 在基于IOS的上配置静态VLAN: switch# vlan database switch(vlan)# vlan vlan-num name vlan-name switch(vlan)# exit switch# configure teriminal switch(config)# interface interface module/number switch(config-if)# switchport mode access // 设置端口模式为access模式 switch(config-if)# switchport access vlan vlan-num // 设置端口所属的VLAN switch(config-if)# end 核验配置:show vlan (2)配置干道链路 干道是在两台catalyst交换机端口或catalyst交换机与路由器间的一条点对点链路。 干道链路可以承载多个vlan。 在基于IOS的交换机上配置干道链路 switch(config)# interface interface mod/port switch(config-if)# switchport mode // 设置端口模式为模式 switch(config-if)# switchport trunk encapsulation {isl dotlq} // 设置trunk所封装的帧 switch(config-if)# switchport trunk allowed vlan remove vlan-list // 允许那些VLAN通过干路 ( 附:switchport trunk allowed vlan {add all except remove} vlan-list ) * no switchport no switchport // 把物理端口变成三层口,即把三层口当成路由器上的口,当将一个端口配置成三层端口之后,就可以在此端口上分配IP地址了,当然还是可以连接PC机的,。 路由口:路由口是指某一物理端口在端口配置状态下用no switchport命令生成的端口,所有的三层都需要IP地址以实现路由交换。 配置举例如下: Switch# configure terminal Switch(config)# interface gigabitethernet0/2 Switch(config-if)# no switchport Switch(config-if)# ip address 192.20.135.21 255.255.255.0 Switch(config-if)# no shutdown Switch(config-if)# end 附:show interfaces [interface-id] switchport // 显示二层端口的状态,可以用来决定此口是否为二层或三层口。 Eg:Switch# show interfaces fastethernet 0/1 switchport * 三层交换机上VLAN的设置 (1)方法一:一般常规配置 Switch# configure terminal Switch(config)# vlan 20 Switch(config-vlan)# name test20 Switch(config-vlan)#ip address 1.1.1.1 255.255.255.0 Switch(config-vlan)# end 方法二:也可以在enable状态下,进行VLAN配置: Switch# vlan database // 进入VLAN配置状态 Switch(vlan)# vlan 20 name test20 // 加入VLAN号及VLAN名 Switch(vlan)# exit 更新VLAN数据库并退出 (2)将端口分配给某个VLAN Switch# configure terminal Switch(config)# interface fastethernet0/1 Switch(config-if)# switchport mode access // 定义二层口的工作模式为接入模式 Switch(config-if)# switchport access vlan 2 // 把端口分配给某一VLAN Switch(config-if)# end Switch#
|
如果要配置二台6509之间的Trunk联接,首先将二6509用千兆光纤相联好,然后分别配置二相联端口的trunk,可以是只用一双光纤,或用二对光纤做port channel,配置如下:
一双光纤相联时,分别在二台65上进行以下的配置:
interface GigabitEthernet1/1
no ip address
switchport
switchport trunk encapsulation dot1q
switchport trunk native vlan 1
二对光纤相联时,必须要做port channel,分别在二台65上进行以下的配置:
interface port-channe1
no ip address
switchport
switchport trunk encapsulation dot1q
switchport trunk native vlan 1
!
interface GigabitEthernet1/1
no ip address
duplex full
speed 1000
switchport mode trunk
switchport trunk encapsulation dot1q
switchport trunk native vlan 1
channel-group 1 mode on
!
interface GigabitEthernet1/2
no ip address
duplex full
speed 1000
switchport mode trunk
switchport trunk encapsulation dot1q
switchport trunk native vlan 1
channel-group 1 mode on
* VTP裁剪
(1)在基于IOS的交换机上配置VTP 模式:
switch# vlan database
switch(vlan)# vtp domain domain-name
switch(vlan)# vtp {sever cilent transparent}
switch(vlan)# vtp password password
在基于CLI的交换机上配置VTP 模式:
switch(enable) set vtp [domain domain-name] [mode{ sever cilent transparent }][password password]
(2)在基于IOS的交换机上配置VTP版本:
switch# vlan database
switch(vlan)# vtp v2-mode
在基于CLI的交换机上配置VTP版本:
switch(enable) set vtp v2 enable
(3)在基于IOS的交换机上启动VTP剪裁:
switch# vlan database
switch(vlan)# vtp pruning
在基于CLI 的交换机上启动VTP剪裁:
switch(enable) set vtp pruning enable