HCIP---企业三层架构实验

题目:

实验拓扑及ip划分:

 

实验步骤:

 1.起Eth-Trunk通道(作用:将多个接口逻辑的整合成一个接口,实现带宽叠加)

SW1和SW2起eth-trunk,并划入接口:

[sw1]interface Eth-Trunk 0
[sw1-Eth-Trunk0]int g0/0/3
[sw1-GigabitEthernet0/0/3]eth-trunk 0
[sw1-GigabitEthernet0/0/3]int g0/0/4	
[sw1-GigabitEthernet0/0/4]eth-trunk 0

SW2相同;

2. 创建VLAN

所有交换机只创建VLAN2,默认有VLAN1

[sw1]vlan 2
[sw2]vlan 2
[sw3]vlan 2
[sw4]vlan 2

3. trunk干道

[sw1]port-group group-member Eth-Trunk 0 GigabitEthernet 0/0/1 to GigabitEthernet 0/0/2	
[sw1-port-group]port link-type trunk 
[sw1-Eth-Trunk0]port link-type trunk 
[sw1-GigabitEthernet0/0/1]port link-type trunk 
[sw1-GigabitEthernet0/0/2]port link-type trunk 
[sw1-port-group]port trunk allow-pass vlan 2
[sw1-Eth-Trunk0]port trunk allow-pass vlan 2
[sw1-GigabitEthernet0/0/1]port trunk allow-pass vlan 2
[sw1-GigabitEthernet0/0/2]port trunk allow-pass vlan 2

SW2与1相同;

[sw3]port-group group-member GigabitEthernet 0/0/1 to GigabitEthernet 0/0/2
[sw3-port-group]port link-type trunk 
[sw3-GigabitEthernet0/0/1]port link-type trunk 
[sw3-GigabitEthernet0/0/2]port link-type trunk 
[sw3-port-group]port trunk allow-pass vlan 2
[sw3-GigabitEthernet0/0/1]port trunk allow-pass vlan 2
[sw3-GigabitEthernet0/0/2]port trunk allow-pass vlan 2

SW4与3相同;

4. 接口划入VLAN

[sw3]int Ethernet0/0/3
[sw3-Ethernet0/0/3]port link-type access 
[sw3-Ethernet0/0/3]port default vlan 1	
[sw3]int Ethernet0/0/4	
[sw3-Ethernet0/0/4]port link-type access 	
[sw3-Ethernet0/0/4]port default vlan 2

SW4相同;

5. 配置STP

[sw1]stp enable 	
[sw1]stp region-configuration 
[sw1-mst-region]region-name a
[sw1-mst-region]instance 1 vlan 1	
[sw1-mst-region]instance 2 vlan 2	
[sw1-mst-region]active region-configuration 

SW2/3/4相同;

我们需要调整根网桥的位置,让SW1成为组1的主根,组2的备份根,让SW2成为组1的备份根,组2的主根

[sw1]stp instance 1 root primary 
[sw1]stp instance 2 root secondary 
[sw2]stp instance 1 root secondary 
[sw2]stp instance 2 root primary 

在连接终端的接口上设置边缘端口,可以加速

[sw3]int eth0/0/3
[sw3-Ethernet0/0/3]stp edged-port enable 
[sw3-Ethernet0/0/3]int eth0/0/4
[sw3-Ethernet0/0/4]stp edged-port enable 
 
[sw4]int eth0/0/3
[sw4-Ethernet0/0/3]stp edged-port enable 
[sw4-Ethernet0/0/3]int eth0/0/4
[sw4-Ethernet0/0/4]stp edged-port enable 

6. 在sw1和sw2中创建vlan1和vlan2的svi

[sw1]int Vlanif1
[sw1-Vlanif1]ip add 172.16.1.11 24
[sw1]int Vlanif2
[sw1-Vlanif1]ip add 172.16.2.11 24
 
[sw2]int Vlanif1
[sw2-Vlanif1]ip add 172.16.1.12 24
[sw2]int Vlanif2
[sw2-Vlanif1]ip add 172.16.2.12 24

测试:

7. 使用VRRP 协议配置虚拟网关和定义主备设备

[sw1]int Vlanif 1
[sw1-Vlanif1]vrrp vrid 1 virtual-ip 172.16.1.110
[sw1-Vlanif1]vrrp vrid 1 priority 11
[sw1-Vlanif1]vrrp vrid 1 track interface GigabitEthernet 0/0/5 reduced 10
[sw1-Vlanif1]q
[sw1]int Vlanif 2	
[sw1-Vlanif2]vrrp vrid 1 virtual-ip 172.16.2.110
[sw2]int Vlanif 1	
[sw2-Vlanif1]vrrp vrid 1 virtual-ip 172.16.1.110
[sw2-Vlanif1]q
[sw2]int Vlanif 2
[sw2-Vlanif2]vrrp vrid 2 virtual-ip 172.16.2.110
[sw2-Vlanif2]vrrp vrid 2 priority 11
[sw2-Vlanif2]vrrp vrid 2 track interface GigabitEthernet 0/0/5 reduced 10

测试:

 

8. DHCP 

[sw1]dhcp enable
[sw1]ip pool v1
[sw1-ip-pool-v1]network 172.16.1.0 mask 24
[sw1-ip-pool-v1]gateway-list 172.16.1.110
[sw1-ip-pool-v1]q	
[sw1]int Vlanif 1	
[sw1-Vlanif1]dhcp select global 
[sw1]int Vlanif 2
[sw1]ip pool v2
[sw1-ip-pool-v2]network 172.16.2.0 mask 24
[sw1-ip-pool-v2]gateway-list 172.16.2.110
[sw1-ip-pool-v2]q	
[sw1]int Vlanif 2
[sw1-Vlanif2]dhcp select global  
[sw2]dhcp enable 
[sw2]ip pool v1
[sw2-ip-pool-v1]network 172.16.1.0 mask 24	
[sw2-ip-pool-v1]gateway-list 172.16.1.110
[sw2-ip-pool-v1]q
[sw2]int Vlanif 1
[sw2-Vlanif1]dhcp select global 
[sw2-Vlanif1]q
[sw2]ip pool v2
[sw2-ip-pool-v2]network 172.16.2.0 mask 24
[sw2-ip-pool-v2]gateway-list 172.16.2.110
[sw2-ip-pool-v2]q	
[sw2]int Vlanif 2
[sw2-Vlanif2]dhcp select global

用ipconfig命令查看pc1/2/3/4IP地址:

 

 

 

9. 配置路由接口IP 

#配公网IP
[r2]int g0/0/0
[r2-GigabitEthernet0/0/0]ip add 12.1.1.1 24
[r2-GigabitEthernet0/0/0]int lo0
[r2-LoopBack0]ip add 2.2.2.2 24
[r1]int g0/0/2
[r1-GigabitEthernet0/0/2]ip add 12.1.1.2 24
 
#配私网IP
[r1-GigabitEthernet0/0/2]int g0/0/0
[r1-GigabitEthernet0/0/0]ip add 172.16.0.1 30
[r1-GigabitEthernet0/0/0]int g0/0/1
[r1-GigabitEthernet0/0/1]ip add 172.16.0.5 30

10. 使用svi给sw1和sw2的上行链路g0/0/1接口配置ip 

[sw1]vlan 3
[sw1-vlan3]q
[sw1]int Vlanif 3
[sw1-Vlanif3]ip add 172.16.0.2 30
[sw1-Vlanif3]int g0/0/5
[sw1-GigabitEthernet0/0/5]port link-type access 
[sw1-GigabitEthernet0/0/5]port default vlan 3
 
[sw2]vlan 3
[sw2-vlan3]q
[sw2]int Vlanif 3
[sw2-Vlanif3]ip address 172.16.0.6 30
[sw2-Vlanif3]int g0/0/5
[sw2-GigabitEthernet0/0/5]port link-type access 
[sw2-GigabitEthernet0/0/5]port default vlan 3

11. SW1/2和r1启用ospf获取路由

[r1]ospf 1 router-id 1.1.1.1
[r1-ospf-1]ar 0
[r1-ospf-1-area-0.0.0.0]network 172.16.0.0 0.0.255.255
[sw1]ospf 1 router-id 3.3.3.3
[sw1-ospf-1]ar 0
[sw1-ospf-1-area-0.0.0.0]ne	
[sw1-ospf-1-area-0.0.0.0]network 172.16.0.2 0.0.0.0
[sw1-ospf-1-area-0.0.0.0]q
[sw1-ospf-1]ar 1
[sw1-ospf-1-area-0.0.0.1]network 172.16.1.0 0.0.0.255
[sw1-ospf-1-area-0.0.0.1]network 172.16.2.0 0.0.0.255
[sw2]ospf 1 router-id 4.4.4.4
[sw2-ospf-1]ar 0
[sw2-ospf-1-area-0.0.0.0]network 172.16.0.6 0.0.0.0
[sw2-ospf-1-area-0.0.0.0]q
[sw2-ospf-1]ar 1
[sw2-ospf-1-area-0.0.0.1]network 172.16.1.0 0.0.0.255
[sw2-ospf-1-area-0.0.0.1]network 172.16.2.0 0.0.0.255

查看:

 

把仅接收不发送路由协议信息的接口调成沉默接口

[sw1-ospf-1]silent-interface g0/0/1
[sw1-ospf-1]silent-interface g0/0/2
[sw1-ospf-1]silent-interface Vlanif 2
 
[sw2-ospf-1]silent-interface g0/0/1
[sw2-ospf-1]silent-interface g0/0/2
[sw2-ospf-1]silent-interface Vlanif 2

 查看:

 

边界路由器需要手动在R1上写一条到达ISP的缺省路由,然后向内网下放一条缺省

[r1]ip route-static 0.0.0.0 0 12.1.1.1
[r1]ospf 1	
[r1-ospf-1]default-route-advertise

查看:

12. NAT地址转换测试 

[r1]acl 2000	
[r1-acl-basic-2000]rule permit source 172.16.0.0 0.0.255.255
[r1-acl-basic-2000]q
[r1]int g0/0/2
[r1-GigabitEthernet0/0/2]nat outbound 2000

 测试:

测试:

pc1:

pc2:

ping2.2.2.2:

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值