您当前的位置:首页 > 电脑百科 > 网络技术 > 网络技术

一文教你明明白白完整配置大型企业网络

时间:2022-10-18 12:45:03  来源:今日头条  作者:山里娃007

写了不少文章讲解不同厂商设备的配置,很多小伙伴希望我给讲讲如何构建一个大型企业网,这里我借一个实例讲讲中大型企业网络如何搭建。所有实验配置我全部无偿奉献给各位小伙伴,该网络涉及到防火墙的配置、无线网络组网、VRRP、mstp、OSPF及认证、BGP、DHCP中继、nat技术、路由选路,欢迎有兴趣的小伙伴收藏加关注。

需求如下:

1.做必要隔离,且放环;

2.终端接口接入网络后无延迟转发;

3.汇聚后交换机之间要增加带宽;

4.网关配置在汇聚层上,要保证网关冗余;

5.内部使用可靠的IGP进行路由学习和发布,并保证设备身份的合法性;

6.通过BGP协议跟总部进行路由学习,实现互访,要求缺省互访流量都经过AR1访问总部,当AR1出现故障能自动切换至AR2;

7.要求园区网内所有PC终端都通过公司统一的DHCP服务器完成地址分发;

8.使用AC+瘦AP进行无线网络组网;

9.出口防火墙需要做必要的安全策略,只能内网主动发起访问外网;

10.出口防火墙要配置必要的NAT技术使得内网能够访问ISP或者互联网。

 

 

具体配置如下:

AR1配置:

interface Ethe.NET3/0/0

ip address 10.1.14.1 255.255.255.0

#

interface GigabitEthernet0/0/0

ip address 10.1.100.1 255.255.255.0

#

interface GigabitEthernet0/0/1

ip address 10.1.103.1 255.255.255.0

#

interface GigabitEthernet0/0/2

ip address 10.1.12.1 255.255.255.0

#

interface Pos5/0/0

link-protocol ppp

ip address 10.1.13.1 255.255.255.0

#

interface LoopBack0

ip address 10.1.1.1 255.255.255.255

#

interface Ethernet3/0/1

ip address 10.1.15.1 255.255.255.0

#

ospf 1 router-id 1.1.1.1

area 0

network 10.1.14.1 0.0.0.0

network 10.1.15.1 0.0.0.0

network 10.1.100.1 0.0.0.0

network 10.1.12.1 0.0.0.0

network 10.1.103.1 0.0.0.0

network 10.1.13.1 0.0.0.0

network 10.1.1.1 0.0.0.0

authentication-mode md5 1 cipher huawei@123

AR2配置:

interface GigabitEthernet0/0/0

ip address 10.1.102.2 255.255.255.0

#

interface GigabitEthernet0/0/1

ip address 10.1.104.2 255.255.255.0

#

interface GigabitEthernet0/0/2

ip address 10.1.12.2 255.255.255.0

#

interface Pos2/0/0

link-protocol ppp

ip address 10.1.23.2 255.255.255.0

#

interface LoopBack0

ip address 10.1.2.2 255.255.255.255

#

ospf 1 router-id 2.2.2.2

area 0

network 10.1.2.2 0.0.0.0

network 10.1.12.2 0.0.0.0

network 10.1.23.2 0.0.0.0

network 10.1.102.2 0.0.0.0

network 10.1.104.2 0.0.0.0

authentication-mode md5 1 cipher huawei@123

AR3配置:

interface Pos2/0/0

ip address 10.1.23.3 255.255.255.0

#

interface Pos5/0/0

ip address 10.1.13.3 255.255.255.0

#

interface LoopBack0

ip address 200.200.200.200 255.255.255.255

AR4配置:

#

interface GigabitEthernet0/0/0

ip address 10.1.14.4 255.255.255.0

#

interface LoopBack0

ip address 10.1.4.4 255.255.255.0

#

dhcp enable

#

ip pool vlan10

gateway-list 192.168.10.254

network 192.168.10.0 mask 255.255.255.0

excluded-ip-address 192.168.10.251 192.168.10.253

DNS-list 114.114.114.114

domAIn-name hcie

#

ip pool vlan20

gateway-list 192.168.20.254

network 192.168.20.0 mask 255.255.255.0

excluded-ip-address 192.168.20.251 192.168.20.253

dns-list 114.114.114.114

domain-name hcie

#

#

ip pool vlan30

gateway-list 192.168.30.254

network 192.168.30.0 mask 255.255.255.0

excluded-ip-address 192.168.30.251 192.168.30.253

dns-list 114.114.114.114

domain-name hcie

#

#

ip pool vlan40

gateway-list 192.168.40.254

network 192.168.40.0 mask 255.255.255.0

excluded-ip-address 192.168.40.251 192.168.40.253

dns-list 114.114.114.114

domain-name hcie

#

ip route-static 0.0.0.0 0.0.0.0 10.1.14.1

FW配置:

interface GigabitEthernet1/0/2

undo shutdown

ip address 10.1.15.11 255.255.255.0

service-manage ping permit

#

firewall zone tRust

add interface GigabitEthernet1/0/2

#

inter gig 1/0/1

ip addre 202.1.10.1 24

#

firewall zone untrust

add interface GigabitEthernet1/0/1

#

ospf 1 router-id 33.33.33.33

area 0

network 10.1.15.11 0.0.0.0

authentication-mode md5 1 cipher huawei@123

quit

#

security-policy

rule name permit_local_trust_ospf

source-zone local

destination-zone trust

action permit

quit

#

security-policy

rule name permit_trust_untrust_all

source-zone trust

destination-zone untrust

action permit

quit

#

ip route-static 0.0.0.0 0.0.0.0 202.1.10.254

#

ospf 1

default-route-advertise

#

nat-policy

rule name EASYIP

source-zone trust

destination-zone untrust

action source-nat easy-ip

quit

ISP配置:

sysname ISP

#

interface GigabitEthernet0/0/1

ip address 202.1.10.254 255.255.255.0

#

interface LoopBack0

ip address 114.114.114.114 255.255.255.255

AC配置:

#

interface GigabitEthernet0/0/1

port link-type trunk

port trunk allow-pass vlan all

#

vlan 101

interface vlan101

ip addre 192.168.101.254 24

dhcp select interface

quit

#

wlan

ap-group name ap-group1

quit

regulatory-domain-profile name default

country-code CN

quit

ap-group name ap-group1

regulatory-domain-profile default

Warning: Modifying the country code will clear channel, power and antenna gain c

onfigurations of the radio and reset the AP. Continue?[Y/N]:y

quit

quit

#

capwap source interface vlan101

#

ap-id 0

ap-name SZ1

ap-group ap-group1

Warning: This operation may cause AP reset. If the country code changes, it will

clear channel, power and antenna gain configurations of the radio, Whether to c

ontinue? [Y/N]:y

Info: This operation may take a few seconds. Please wait for a moment.. done.

[AC6605-wlan-ap-0]ap-id 1

ap-name SZ2

ap-group ap-group1

ap-id 2

ap-name SZ3

ap-group ap-group1

ap-id 3

ap-name SZ4

ap-group ap-group1

quit

ap auth-mode mac-auth

#

wlan

security-profile name wlan-net

security wpa-wpa2 psk pass-phrase a1234567 aes

quit

#

[AC6605-wlan-view]ssid-profile name wlan-net

[AC6605-wlan-ssid-prof-wlan-net]ssid hcie2022

Info: This operation may take a few seconds, please wait.done.

[AC6605-wlan-ssid-prof-wlan-net]quit

[AC6605-wlan-view]vap-profile name wlan-net

[AC6605-wlan-vap-prof-wlan-net]forward-mode direct-forward

[AC6605-wlan-vap-prof-wlan-net]service-vlan vlan-pool hcie2022

Error: The VLAN pool does not exist. Please create it first.

[AC6605]wlan

[AC6605-wlan-view]vap-profile name wlan-net

[AC6605-wlan-vap-prof-wlan-net]service-vlan vlan-pool hcie2022

Info: This operation may take a few seconds, please wait.done.

[AC6605-wlan-vap-prof-wlan-net]security-profile wlan-net

Info: This operation may take a few seconds, please wait.done.

[AC6605-wlan-vap-prof-wlan-net]ssid-profile wlan-net

[AC6605]wlan

[AC6605-wlan-view]ap-group name ap-group1

[AC6605-wlan-ap-group-ap-group1]vap-profile wlan-net wlan 1 radio 0

Info: This operation may take a few seconds, please wait...done.

[AC6605-wlan-ap-group-ap-group1]vap-profile wlan-net wlan 1 radio 1

Info: This operation may take a few seconds, please wait...done.

[AC6605-wlan-ap-group-ap-group1]quit

[AC6605-wlan-view]quit

[AC6605]dis vap ssid hcie2022

Info: This operation may take a few seconds, please wait.

WID : WLAN ID

-----------------------------------------------------------------------------

AP ID AP name RfID WID BSSID Status Auth type STA SSID

-----------------------------------------------------------------------------

0 SZ1 0 1 00E0-FC43-22F0 ON WPA/WPA2-PSK 0 hcie2022

0 SZ1 1 1 00E0-FC43-2300 ON WPA/WPA2-PSK 0 hcie2022

1 SZ2 0 1 00E0-FC86-80D0 ON WPA/WPA2-PSK 0 hcie2022

1 SZ2 1 1 00E0-FC86-80E0 ON WPA/WPA2-PSK 0 hcie2022

2 SZ3 0 1 00E0-FC04-6A40 ON WPA/WPA2-PSK 0 hcie2022

2 SZ3 1 1 00E0-FC04-6A50 ON WPA/WPA2-PSK 0 hcie2022

3 SZ4 0 1 00E0-FC0E-0BC0 ON WPA/WPA2-PSK 0 hcie2022

3 SZ4 1 1 00E0-FC0E-0BD0 ON WPA/WPA2-PSK 0 hcie2022

-----------------------------------------------------------------------------

Total: 8

SW1配置:

#

vlan batch 10 20 30 40

#

interface GigabitEthernet0/0/2

port link-type trunk

port trunk allow-pass vlan 2 to 4094

#

interface GigabitEthernet0/0/3

port link-type trunk

port trunk allow-pass vlan 2 to 4094

#

interface eth-Trunk 12

mode lacp-static

trunkport gig 0/0/19 to 0/0/20

port link-type trunk

port trunk allow-pass vlan 2 to 4094

#

stp region-configuration

region-name hcie

revision-level 1

instance 1 vlan 10 30

instance 2 vlan 20 40

active region-configuration

#

stp instance 1 root primary

stp instance 2 root secondary

#

#

interface Vlanif10

ip address 192.168.10.251 255.255.255.0

#

interface Vlanif20

ip address 192.168.20.251 255.255.255.0

#

interface Vlanif30

ip address 192.168.30.251 255.255.255.0

#

interface Vlanif40

ip address 192.168.40.251 255.255.255.0

#

interface Vlanif10

vrrp vrid 10 virtual-ip 192.168.10.254

vrrp vrid 10 priority 120

#

interface Vlanif30

vrrp vrid 30 virtual-ip 192.168.30.254

vrrp vrid 30 priority 120

#

interface Vlanif20

vrrp vrid 20 virtual-ip 192.168.20.254

#

interface Vlanif40

vrrp vrid 40 virtual-ip 192.168.40.254

#

vlan batch 100 200

#

#

interface GigabitEthernet0/0/10

port link-type access

port default vlan 100

stp edged-port enable

#

interface GigabitEthernet0/0/11

port link-type access

port default vlan 200

stp edged-port enable

#

#

interface Vlanif100

ip address 10.1.100.10 255.255.255.0

#

interface Vlanif200

ip address 10.1.102.10 255.255.255.0

#

#

ospf 1 router-id 11.11.11.11

import-route direct

area 0

network 10.1.100.10 0.0.0.0

network 10.1.102.10 0.0.0.0

authentication-mode md5 1 cipher huawei@123

#

dhcp enable

#

interface vlan10

dhcp select relay

dhcp relay server-ip 10.1.14.4

#

interface vlan20

dhcp select relay

dhcp relay server-ip 10.1.14.4

#

interface vlan30

dhcp select relay

dhcp relay server-ip 10.1.14.4

#

interface vlan40

dhcp select relay

dhcp relay server-ip 10.1.14.4

#

vlan 101

SW2配置:

#

vlan batch 10 20 30 40

#

interface GigabitEthernet0/0/2

port link-type trunk

port trunk allow-pass vlan 2 to 4094

#

interface GigabitEthernet0/0/4

port link-type trunk

port trunk allow-pass vlan 2 to 4094

#

interface eth-Trunk 12

mode lacp-static

trunkport gig 0/0/19 to 0/0/20

port link-type trunk

port trunk allow-pass vlan 2 to 4094

#

stp region-configuration

region-name hcie

revision-level 1

instance 1 vlan 10 30

instance 2 vlan 20 40

active region-configuration

#

stp instance 1 root secondary

stp instance 2 root primary

#

interface Vlanif10

ip address 192.168.10.252255.255.255.0

#

interface Vlanif20

ip address 192.168.20.252 255.255.255.0

#

interface Vlanif30

ip address 192.168.30.252 255.255.255.0

#

interface Vlanif40

ip address 192.168.40.252 255.255.255.0

#

interface Vlanif10

vrrp vrid 10 virtual-ip 192.168.10.254

#

interface Vlanif30

vrrp vrid 30 virtual-ip 192.168.30.254

#

interface Vlanif20

vrrp vrid 20 virtual-ip 192.168.20.254

vrrp vrid 20 priority 120

#

interface Vlanif40

vrrp vrid 40 virtual-ip 192.168.40.254

vrrp vrid 40 priority 120

#

#

vlan batch 300 400

#

#

interface GigabitEthernet0/0/10

port link-type access

port default vlan 400

stp edged-port enable

#

interface GigabitEthernet0/0/11

port link-type access

port default vlan 300

stp edged-port enable

#

#

interface Vlanif300

ip address 10.1.103.10 255.255.255.0

#

interface Vlanif400

ip address 10.1.104.10 255.255.255.0

#

ospf 1 router-id 22.22.22.22

import-route direct

area 0

network 10.1.103.10 0.0.0.0

network 10.1.104.10 0.0.0.0

authentication-mode md5 1 cipher huawei@123

#

dhcp enable

#

interface vlan10

dhcp select relay

dhcp relay server-ip 10.1.14.4

#

interface vlan20

dhcp select relay

dhcp relay server-ip 10.1.14.4

#

interface vlan30

dhcp select relay

dhcp relay server-ip 10.1.14.4

#

interface vlan40

dhcp select relay

dhcp relay server-ip 10.1.14.4

#

#

interface GigabitEthernet0/0/1

port link-type trunk

port trunk allow-pass vlan all

#

vlan 101

SW3配置:

vlan batch 10 20 30 40

#

interface GigabitEthernet0/0/1

port link-type access

port default vlan 10

stp edged-port enable

#

interface GigabitEthernet0/0/3

port link-type access

port default vlan 30

stp edged-port enable

#

interface GigabitEthernet0/0/2

port link-type trunk

port trunk allow-pass vlan all

#

interface GigabitEthernet0/0/4

port link-type trunk

port trunk allow-pass vlan all

#

stp region-configuration

region-name hcie

revision-level 1

instance 1 vlan 10 30

instance 2 vlan 20 40

active region-configuration

#

vlan 101

#

interface GigabitEthernet0/0/5

port link-type trunk

port trunk pvid vlan 101

port trunk allow-pass vlan all

#

interface GigabitEthernet0/0/6

port link-type trunk

port trunk pvid vlan 101

port trunk allow-pass vlan all

SW4配置:

vlan batch 10 20 30 40

#

interface GigabitEthernet0/0/1

port link-type access

port default vlan 20

stp edged-port enable

#

interface GigabitEthernet0/0/4

port link-type access

port default vlan 40

stp edged-port enable

#

interface GigabitEthernet0/0/2

port link-type trunk

port trunk allow-pass vlan all

#

interface GigabitEthernet0/0/3

port link-type trunk

port trunk allow-pass vlan all

#

stp region-configuration

region-name hcie

revision-level 1

instance 1 vlan 10 30

instance 2 vlan 20 40

active region-configuration

#

vlan 101

#

interface GigabitEthernet0/0/5

port link-type trunk

port trunk pvid vlan 101

port trunk allow-pass vlan all

#

interface GigabitEthernet0/0/6

port link-type trunk

port trunk pvid vlan 101

port trunk allow-pass vlan all

 


 


 


 



Tags:企业网络   点击:()  评论:()
声明:本站部分内容及图片来自互联网,转载是出于传递更多信息之目的,内容观点仅代表作者本人,不构成投资建议。投资者据此操作,风险自担。如有任何标注错误或版权侵犯请与我们联系,我们将及时更正、删除。
▌相关推荐
To B 企业网络营销效果差,谁的“锅”?
文 | 严国新在今天数据化、智能化的时代,众多大平台,亿级日活、海量企业,让网络营销拥有无可比拟的优势。平台官方的宣传语是,关键词搜索精准展现,来得都是有需求客户;全链路数据...【详细内容】
2023-10-24  Search: 企业网络  点击:(170)  评论:(0)  加入收藏
一文教你明明白白完整配置大型企业网络
写了不少文章讲解不同厂商设备的配置,很多小伙伴希望我给讲讲如何构建一个大型企业网,这里我借一个实例讲讲中大型企业网络如何搭建。所有实验配置我全部无偿奉献给各位小伙伴...【详细内容】
2022-10-18  Search: 企业网络  点击:(553)  评论:(0)  加入收藏
大型企业组网应该如何规划企业网络?
对于1000多个节点的企业组网,需要考虑网络规划,网络可靠性设计,网络安全设计等,不仅仅是交换机,路由器和防火墙的问题。下文针对这个问题说一说。首先是需求分析与不同的业务部门...【详细内容】
2022-09-07  Search: 企业网络  点击:(422)  评论:(0)  加入收藏
企业网络安全高防护大存储服务器选用666IDC
业务安全 互联网数据存储 高防硬抗服务器 联系666idc-诸葛亮 qq30277201 tel:13044503387中小企业提高网络安全的五种方式?据外媒报道,绝大多数网络罪犯的目标是中小企业,然而...【详细内容】
2022-07-20  Search: 企业网络  点击:(478)  评论:(0)  加入收藏
简单企业网络三层模型模拟
目录实验拓扑图子网划分路由器:端口IP分配及net进出口分配-net分配-路由表设置-标准ACL及拓展ACL-TELNET配置-端口IP分配三层交换机:trunk口分配及IP分配-路由表设置-TELNET配...【详细内容】
2022-02-02  Search: 企业网络  点击:(340)  评论:(0)  加入收藏
VPN在企业网络中的典型应用
Virtual Private Network翻译为虚拟专用网络,简称VPN,多用于企业网络,还用于网络游戏加速。VPN通过在公用网络(因特网或其他专用网络)上建立专用网络,进行加密通讯,常用协议有PPT...【详细内容】
2021-06-09  Search: 企业网络  点击:(1376)  评论:(0)  加入收藏
保证企业网络安全ACL实战
一、拓扑 二、OSPF关键配置通过OSPF实现全网互通1、R1 OSPF关键配置:[R1]di cu confi os[V200R003C00]ospf 1area 0.0.0.0network 1.1.1.1 0.0.0.0network 10.1.12.1 0.0.0.0...【详细内容】
2020-08-25  Search: 企业网络  点击:(430)  评论:(0)  加入收藏
中小型企业网络安全应对策略
最近有粉丝提及网络安全的问题,之前接触了不少硬件厂家及防病毒方面的专家,其实病毒并不可怕,可怕的是你没有做好预防工作,例如数据备份,应用备份,异地备份等策略。针对病毒问题整...【详细内容】
2020-05-14  Search: 企业网络  点击:(420)  评论:(0)  加入收藏
中小企业网络架构:内网安全部署之DHCP,防止恶意DHCP与IP冲突
1拓扑 1 实现控制只能获取企业内部合法的DHCP服务分配的地址,而其余的DHCP服务器则不能通过。说明:为什么需要该技术呢,因为DHCP的工作原理是最先响应的服务器,PC就获取该服务器...【详细内容】
2019-12-10  Search: 企业网络  点击:(614)  评论:(0)  加入收藏
面向企业网络的九大带宽监控工具详解
带宽监控工具会持续观察网络上的带宽使用情况。它可以检测高带宽使用情况,并在耗尽网络资源时向用户发出警报。对于企业网络而言,密切关注带宽使用情况,以确保有效的网络运营,...【详细内容】
2019-11-14  Search: 企业网络  点击:(575)  评论:(0)  加入收藏
▌简易百科推荐
手机就可以修改WiFi密码,进行网络提速,还能防止别人蹭网
随着网络的普及和使用频率的增加,很多人可能遇到了一些网络管理上的问题,比如忘记了WiFi密码、网络速度缓慢、或者发现有不明设备在家中蹭网。相信朋友们也曾遇到过吧?但是,你知...【详细内容】
2024-04-03  老毛桃    Tags:WiFi密码   点击:(7)  评论:(0)  加入收藏
手机WiFi信号满格却接收消息延迟?这里有妙招帮你解决!
在现代社会,手机已经成为了我们生活中不可或缺的一部分。无论是工作、学习还是娱乐,手机都扮演着重要的角色。然而,有时我们会遇到一些令人烦恼的问题,比如明明手机WiFi信号满格...【详细内容】
2024-04-03  蔡前进    Tags:手机WiFi   点击:(6)  评论:(0)  加入收藏
SASE技术应用落地的五个关键趋势
在Gartner 最新发布的《2023网络技术成熟度曲线》报告中认为,SASE技术已经开始走出最初的技术炒作期,将逐步迈向新一轮的实用落地阶段。在Gartner发布的《Hype Cycle for Ente...【详细内容】
2024-04-01    安全牛  Tags:SASE   点击:(10)  评论:(0)  加入收藏
提示“该网站安全证书存在问题,连接可能不安全”如何解决
在你输入网址并浏览网页时,如果你的浏览器弹出一个警告,提示“网站的安全证书存在问题”,或是显示一个红色的锁标志,这些都是网站不安全的警示。这些提示通常是由HTTPS协议中的S...【详细内容】
2024-03-18  倏然间    Tags:网站安全证书   点击:(9)  评论:(0)  加入收藏
如何有效排除CAN总线错误
控制器局域网(CAN)控制器局域网(CAN)是现代车辆中电子元件无缝运行的基础。在远程信息处理领域,CAN总线系统的效率至关重要,其能够实现支撑当今汽车技术的复杂功能。然而,CAN总...【详细内容】
2024-02-20    千家网  Tags:CAN   点击:(49)  评论:(0)  加入收藏
网络连接受限或无连接怎么办?这里提供几个修复办法
可能错误提示 连接受限或无连接:连接具有有限的连接或无连接。你可能无法访问Internet或某些网络资源。 连接受限。排除和解决“连接受限或无连接”错误此错误可能由计算机上...【详细内容】
2024-02-06  驾驭信息纵横科技    Tags:网络连接受限   点击:(43)  评论:(0)  加入收藏
如何将Mac连接到以太网?这里有详细步骤
在Wi-Fi成为最流行、最简单的互联网连接方式之前,每台Mac和电脑都使用以太网电缆连接。这是Mac可用端口的标准功能。如何将Mac连接到以太网如果你的Mac有以太网端口,则需要以...【详细内容】
2024-02-03  驾驭信息纵横科技    Tags:Mac   点击:(66)  评论:(0)  加入收藏
简易百科之什么是端口映射
端口映射,也称为端口转发,是一种网络通信中的技术手段,通过将内网中的一个端口上的数据流量转发到另一个端口,使得外部网络能够访问到内部网络中的特定服务。在实现上,端口映射通...【详细内容】
2024-01-26    简易百科  Tags:端口映射   点击:(156)  评论:(0)  加入收藏
ip因频繁登陆已被禁止访问 无法显示图片 怎么办
首先,我们要明白,部分网站为了有效遏制数据爬取和非法攻击,保证访问速度和普通用户查询,会在系统中增加网络安全设备,加强安全防护机制,并提前设置安全访问规则。因此,一旦用户的行...【详细内容】
2024-01-20  何福意思    Tags:ip   点击:(64)  评论:(0)  加入收藏
电脑连上wifi却上不了网怎么办
当电脑连接上 WiFi 却无法上网时,可能会让人感到困惑和沮丧。这个问题通常会有多种可能的原因,包括网络配置问题、路由器故障、无线适配器问题等。在面对这个问题时,可以尝试以...【详细内容】
2024-01-16  编程资料站    Tags:wifi   点击:(69)  评论:(0)  加入收藏
站内最新
站内热门
站内头条