标签:lacp 计算机 配置链路聚合 sys 拓扑 子网掩码 项目实施 inter 核心交换机
某企业在不断发展,业务量也在不断扩大,同时对计算机网络应用的依赖程度与日俱增.为适应互联网时代的发展,目前公司正面临转型,急需成立IT部门.你作为几年前入职的网络工程师被任命为IT部门的技术经理,并担任本次网络规划的项目经理.你需要根据企业网络需要优化现有网络资源。
假设某企业有员工1000人,有销售部(300人),技术部(100人),财务部(50人),综合部(50人),研发部(500人);各部门相互隔离,完成所有网络的互联互通。
公司项目经理已经按照上述要求对网络设备进行了相应的地址规划.要求先对网络设备进行配置使之可以实现互连互通,具体要求如下:
l 按照拓扑图完成IP地址规划表的规划;
l 配置网络设备的接口IP地址;
l 给交换机接口配置正确的接口模式(如access、trunk等)
l 配置链路聚合;
l 配置生成树协议;
l 配置Vlan间路由;
设备名称 |
IP地址 |
子网掩码 |
描述 |
PC1 |
10.42.4.1 |
/22 |
VLAN10 |
PC2 |
10.42.8.1 |
/22 |
VLAN20 |
PC3 |
10.42.12.1 |
/22 |
VLAN30 |
PC4 |
10.42.4.2 |
/22 |
VLAN10 |
PC5 |
10.42.8.2 |
/22 |
VLAN20 |
PC6 |
10.42.12.2 |
/22 |
VLAN30 |
PC7 |
10.42.16.1 |
/22 |
VLAN40 |
PC8 |
10.42.20.1 |
/22 |
VLAN50 |
PC9 |
10.42.16.2 |
/22 |
VLAN40 |
PC10 |
10.42.20.2 |
/22 |
VLAN50 |
PC11 |
10.42.24.1 |
/24 |
VLAN60 |
设备名称 |
接口 |
IP地址 |
子网掩码 |
描述 |
LSW11 |
Vlanif10 |
10.42.7.254 |
/22 |
Vlan10的网关 |
Vlanif20 |
10.42.9.254 |
/22 |
Vlan20的网关 |
|
Vlanif30 |
10.42.12.254 |
/22 |
Vlan30的网关 |
|
LSW9 |
Vlanif40 |
10.42.16.254 |
/22 |
Vlan40的网关 |
Vlanif50 |
10.42.20.254 |
/22 |
Vlan50的网关 |
|
Vlanif60 |
10.42.24.254 |
/24 |
Vlan60的网关 |
任务一:配置接口IP地址;
任务二:在接入交换机创建Vlan,把接口加入到规划的Vlan中;
任务三:在核心交换机配置业务Vlan的网关地址;
任务四:在核心交换机配置链路聚合;
任务五:在交换机配置生成树协议;
任务六:完成网络测试。
步骤一:配置接口地址(采用基于接口的VLAN划分方式配置)
(1) LSW1-LSW4交换机配置:
创建相关VLAN
指定E接口号——配置接口类型为access——将接口加入到指定VLAN
指定G接口号——配置接口类型为trunk——配置Trunk类型接口加入的VLAN
命令如下:
system-view
vlan batch 10 20 30
Access类型接口配置:
int e0/0/1
port link-type access
port default vlan 10
int e0/0/2
port link-type access
port default vlan 20
int e0/0/3
port link-type access
port default vlan 30
Trunk类型接口配置:
int g0/0/2
port link-type trunk
port trunk allow-pass vlan 10 20 30
其余同层交换机也如上配置
(2) LSW5-LSW8交换机配置
创建相关VLAN
指定G接口号——配置接口类型为trunk——配置Trunk类型接口加入的VLAN
链路聚合配置:
创建并进入Eth-Trunk1接口——配置工作模式为LACP模式——将相关G口加入到指 定E-Trunk
system-view
vlan batch 10 20 30
Trunk类型接口配置:
int g0/0/1
port link-type trunk
port trunk allow-pass vlan 10 20 30
int g0/0/22
port link-type trunk
port trunk allow-pass vlan 10 20 30
链路聚合:
interface
Eth-Trunk 1
mode lacp-static
interface
GigabitEthernet 0/0/24
eth-trunk 1
interface GigabitEthernet 0/0/23
eth-trunk 1
interface
Eth-Trunk 1
port link-type trunk
port trunk allow-pass vlan 10 20 30
其余同层交换机也如上配置
(3) LSW9-LSW10交换机配置
创建相关VLAN
指定G接口号——配置接口类型为trunk——配置Trunk类型接口加入的VLAN
链路聚合配置:
创建并进入Eth-Trunk1接口——配置工作模式为LACP模式——将相关G口加入到指 定E-Trunk
VLAN间配置:
创建并进入VLANIF接口——配置相应的IP地址——配置单播静态路由
STP生成树协议配置:
LSW5、LSW6和LSW9形成环路,把LSW5和LSW6之间阻塞,设置LSW10优先级最高, 把 LSW10设置为根桥:stp priority 0.
LSW7、LSW8和LSW10形成环路,把LSW7和LSW8之间阻塞,设置LSW10优先级最高, 把 LSW10设置为根桥:stp priority 0.
system-view
vlan batch 10 20 30
Trunk类型接口配置:
int g0/0/1
port link-type trunk
port trunk allow-pass vlan 10 20 30
int g0/0/3
port link-type trunk
port trunk allow-pass vlan 10 20 30
链路聚合:
interface
Eth-Trunk 1
mode lacp-static
interface
GigabitEthernet 0/0/1
eth-trunk 1
interface GigabitEthernet 0/0/2
eth-trunk 1
interface
Eth-Trunk 1
port link-type trunk
port trunk allow-pass vlan 10 20 30
VLAN间路由配置:
interface vlanif 10
ip address 10.42.7.254 22
interface
vlanif 20
ip address 10.42.9.254 22
interface
vlanif 30
ip address 10.42.12.254 22
int
g0/0/4
interface vlanif 1
ip address 172.16.42.1 24
ip route-static 0.0.0.0 0.0.0.0 172.16.42.2
STP生成树协议:
stp priority 0
其余同层交换机也如上配置
步骤二:
(1)相同VLAN间测试连通性PC1->PC4
(2)不同VLAN间测试连通性PC1->PC5、PC1->PC7
(3)远程管理机与其他PC间连通性PC11->PC1
标签:lacp 计算机 配置链路聚合 sys 拓扑 子网掩码 项目实施 inter 核心交换机
原文地址:https://www.cnblogs.com/X-Lee/p/11942267.html