vlan小实验
一、涉及知识点
1、vlan划分:sw1与sw2用作路由器,对此,在其之间配置access
(若为交换机使用可以配置trunk)
2、交换机:此实验将交换机做路由器使用,三层交换机相当于路由器
3、链路聚合:
手工负载分担:
方式一:
Interface eth-trunk 1
Mode manual load-balance(设置手动负载分担模式)(设备默认模式不需要配置)
Trunkport g0/0/1
Trunkport g 0/0/1 to g 0/0/3 (g0/0/1、g0/0/2、g0/0/3)
方式二:
Interface eth-trunk 1
int g0/0/1
eth-trunk 1
LACP模式:
Intface eth-trunk 1
mode lacp-static (修改模式为lacp)
4、静态:
(1)IP route-static 目的网段 目的掩码 出接口 下一跳
(2) IP route-static 目的网段 目的掩码 出接口()
(3)IP route-static 目的网段 目的掩码 下一跳()
此实验选用(3)
because:vlanif是虚拟接口,不是物理接口,如果加出接口就会走物理接口导致无法发到目的网段的路由
二、简单配置
sw2:
开启vlan batch,做vlan
interface GigabitEthernet0/0/1
port link-type access
port default vlan 10
interface GigabitEthernet0/0/3
port link-type access
port default vlan 20
interface GigabitEthernet0/0/4
port link-type access
port default vlan 40
在SW2上创建虚拟接口,
配置交换机使不同VLAN进行通信:(使交换机具备路由功能,创建vlanif,配置ip地址)
Vlan batch 10 20 40
Interface vlanif 10
Ip address 192.168.1.254 24
Interface vlanif 20
Ip address 192.168.2.254 24
Interface vlanif 40
Ip address 10.1.1.1 24
此时,PC1和PC2可以进行正常通信
将g0/0/5和g0/0/2做聚合
interface Eth-Trunk1
port link-type trunk
port trunk allow-pass vlan 50
mode lacp-static
同理在sw1上做将g0/0/1和g0/0/2做聚合
interface Eth-Trunk1
port link-type trunk
port trunk allow-pass vlan 50
mode lacp-static
与sw3之间做静态
ip route-static 192.168.3.0 255.255.255.0 10.1.1.2
SW3:
开启vlan batch,做vlan
interface GigabitEthernet0/0/3
port link-type access
port default vlan 30
interface GigabitEthernet0/0/4
port link-type access
port default vlan 40
使交换机具备路由功能,创建vlanif,配置ip地址
Vlan batch 30 40
Interface vlanif 30
Ip address 192.168.3.254 24
Interface vlanif 40
Ip address 10.1.1.2 24
与sw2之间做静态
ip route-static 192.168.1.0 255.255.255.0 10.1.1.1
ip route-static 192.168.2.0 255.255.255.0 10.1.1.1