三层交换机负载均衡的接口配置过程(1)

三层交换机配置——配置一组二层端口

  1. configure terminal 进入配置状态
  2. nterface range {port-range} 进入组配置状态

三层交换机配置——配置三层端口

  1. configure terminal 进入配置状态
  2. interface {{fastethernet | gigabitethernet} interface-id} | {vlan vlan-id} | {port-channel port-channel-number} 进入端口配置状态
  3. no switchport 把物理端口变成三层口
  4. ip address ip_address subnet_mask 配置IP地址和掩码
  5. no shutdown 激活端口

例:

  1. Switch(config)# interface gigabitethernet0/2
  2. Switch(config-if)# no switchport
  3. Switch(config-if)# ip address 192.20.135.21 255.255.255.0
  4. Switch(config-if)# no shutdown

三层交换机配置——配置VLAN

  1. configure terminal 进入配置状态
  2. vlan vlan-id 输入一个VLAN号, 然后进入vlan配态,可以输入一个新的VLAN号或旧的来进行修改
  3. name vlan-name 可选)输入一个VLAN名,如果没有配置VLAN名,缺省的名字是VLAN号前面用0填满的4位数,如VLAN0004是VLAN4的缺省名字
  4. mtu mtu-size (可选) 改变MTU大小

例:

  1. Switch# configure terminal
  2. Switch(config)# vlan 20
  3. Switch(config-vlan)# name test20
  4. Switch(config-vlan)# end
  5. Switch# vlan database
  6. Switch(vlan)# vlan 20 name test20
  7. Switch(vlan)# exit

三层交换机配置——端口分配给一个VLAN

  1. configure terminal 进入配置状态
  2. interface interface-id 进入要分配的端口
  3. switchport mode access 定义二层口
  4. switchport access vlan vlan-id 把端口分配给某一VLAN

例:

  1. Switch# configure terminal
  2. Enter configuration commands, one per line. End with CNTL/Z.
  3. Switch(config)# interface fastethernet0/1
  4. Switch(config-if)# switchport mode access
  5. Switch(config-if)# switchport access vlan 2
  6. Switch(config-if)# end
  7. Switch#
  8. 配置VLAN trunk
  9. configure terminal 进入配置状态
  10. interface interface-Id 进入端口配置状态
  11. switchport trunk encapsulation {isl | dot1q | negotiate}配置trunk封装ISL 或 802.1Q 或

三层交换机配置——自动协商

例:

  1. switchport mode {dynamic {auto | desirable} | trunk} 配置二层trunk模式。
  2. dynamic auto—自动协商是否成为trunk
  3. dynamic desirable—把端口设置为trunk如果对方端口是trunk, desirable, 配置Native VLAN
  4. (802.1q)或自动模式,trunk—设置端口为强制的trunk方式,而不理会对方端口是否为trunkswitchport access vlan vlan-id 可选)
  5. 指定一个缺省VLAN, 如果此端口不再是trunkswitchport trunk native vlan vlan-id 指定802.1Q native VLAN号

  1. Switch# configure terminal
  2. Enter configuration commands, one per line. End with CNTL/Z.
  3. Switch(config)# interface fastethernet0/4
  4. Switch(config-if)# switchport mode trunk
  5. Switch(config-if)# switchport trunk encapsulation dot1q
  6. Switch(config-if)# end

三层交换机配置——定义TRUNK允许的VLAN

  1. configure terminal子 进入配置状态
  2. interface interface-id 进入端口配置
  3. switchport mode trunk 配置二层口为trunk
  4. switchport trunk allowed vlan {add | all | except | remove} vlan-list可选) 配置trunk允许的VLAN.使用add, all, except, remove关健字
  5. no switchport trunk allowed vlan 允许所有VLAN通过

例:

  1. Switch(config)# interface fastethernet0/1
  2. Switch(config-if)# switchport trunk allowed vlan remove 2
  3. Switch(config-if)# end

三层交换机配置——配置Native VLAN(802.1q)

  1. configure terminal 进入配置状态
  2. interface interface-id 进入配置成802.1qtrunk的端口
  3. switchport trunk native vlan vlan-Id 配置native VLAN号
  4. no switchport trunk native vlan 端口配置命令回到缺省的状态

三层交换机配置——配置基于端口权值的负载均衡

  1. configure terminal 进入Switch 1配置状态
  2. vtp domain domain-name 配置VTP域
  3. vtp mode server 将Switch 1配置成VTP server.
  4. show vtp status 验证VTP的配置
  5. show vlan 验证VLAN
  6. configure terminal 进入配置状态
  7. interface fastethernet 0/1 进入F0/1端口
  8. switchport trunk encapsulation {isl | dot1q | negotiate}配置trunk封装
  9. switchport mode trunk 配置成trunk
  10. show interfaces fastethernet0/1 switchport 验证VLAN配置