HCNA练习拓扑

华为HCNA实验拓扑

  • 实验拓扑图
    • 拓扑需要
    • 实验要求
    • 实验中的各设备的配置
      • 结语

此拓扑图出自 @ My teacher~

实验拓扑图

HCNA练习拓扑_第1张图片

拓扑需要

1.两台PC
2.两台二层交换机
3.两台路由器
3.一台dns服务器

实验要求

1.在两台SW上划分vlan 10 20
2.pc1在vlan10 pc2在vlan20
3.pc1网段192.168.1.0/24
	pc2网段192.168.2.0/24
4.两台SW做lacp链路聚合
5.在R1上做单臂路由
6.在R1上做DHCP
7.在R1与R2上做静态默认路由

实验中的各设备的配置

第一台交换机

sys
sys SW1
vlan ba 10 20
int e0/0/1
po link-type ac
po def vl 10

第二台交换机

sys
sys SW2
vl ba 10 20
int e0/0/1
po link-t ac
po def vl 10

第一台交换机

int Eth-trunk 1
mode lacp-static
trunk g 0/0/1 0/0/2 
port link-type trunk
port trunk allow-pass vl 10 20

第二台交换机

int Eth-trunk 1
mode lacp-static
trunk g 0/0/1 0/0/2 
port link-type trunk
port trunk allow-pass vl 10 20
int e0/0/2
port link-type trunk
port trunk allow-pass vl 10 20

第一台路由器

sys
sys R1
Int g0/0/0.10
Ip add 192.168.1.254 24
Dot1Q termination vid 10
Arp broadcast enable



Int g0/0/0.20
Ip add 192.168.2.254 24
Dot1Q termination vid 20
Arp broadcast enable

dhcp enable
ip pool HCIA10
gateway-list 192.168.1.254
network 192.168.1.0 mask 255.255.255.0
dns-list 100.1.1.100
quit

ip pool HCIA20
gateway-list 192.168.2.254
network 192.168.2.0 mask 255.255.255.0
dns-list 100.1.1.100
quit

Int g0/0/0/0.10
dhcp select global

Int g0/0/0/0.10
dhcp select global

int g0/0/1
ip add 200.1.1.1 24

quit

ip route-static 0.0.0.0 0 200.1.1.2

第二台路由器

sys
sys R2
int g0/0/1
ip add 200.1.1.2 24
int g0/0/0
ip add 100.1.1.254 24
quit 
ip route-static 0.0.0.0 0 200.1.1.1

结语

本人小白一枚,喜欢网络和云计算,web安全,感兴趣的可以一起交流哦。

你可能感兴趣的:(网络,网络,路由器,交换机,局域网)