当前位置: 首页 > news >正文

苏州网站建设套餐外贸如何推广

苏州网站建设套餐,外贸如何推广,网站代理打开,网站制作的一般过程目录 一、实验背景 二、实验任务 三、实验步骤 四、实验总结 一、实验背景 假如你是公司的网络管理员,为了节省内网的IP地址空间,你决定在内网部署VLAN聚合,同时为了限制不同业务之间的访问,决定同时部署MUX VLAN。 二、实验…

目录

一、实验背景

二、实验任务

三、实验步骤

四、实验总结


一、实验背景

假如你是公司的网络管理员,为了节省内网的IP地址空间,你决定在内网部署VLAN聚合,同时为了限制不同业务之间的访问,决定同时部署MUX VLAN。

二、实验任务

1.在LSW1、LSW3上完成VLAN聚合基础配置,配置R1、R2的接口地址模拟终端用户;

2.在LSW3是super-VLAN VLANIF 100接口开启ARP代理,实现通信;

3.在LSW1-LSW3上配置VLAN 200,用于模拟外部网络与sub-VLAN进行通信;

4.在LSW2配置MUX VLAN ,配置R3、R4的接口地址用于隔离效果。

5.验证

实验拓扑图

三、实验步骤

(1)vlan聚合基本配置

1)在LSW1上创建Sub-vlan,将LSW1连接R1、R2的接口分别划入Sub-VLAN10 20内。
[LSW1]vlan batch 10 20[LSW1]int g0/0/1[LSW1-GigabitEthernet0/0/1]port link-type access[LSW1-GigabitEthernet0/0/1]port default vlan 10[LSW1-GigabitEthernet0/0/1]q[LSW1]int g0/0/2[LSW1-GigabitEthernet0/0/2]port link-type access[LSW1-GigabitEthernet0/0/2]port default vlan 20[LSW1-GigabitEthernet0/0/2][LSW1-GigabitEthernet0/0/2]q[LSW1]
2)LSW3上创建Super-VLAN 100 关联Sub -VLAN10 、20
[LSW3]vlan batch 10 20 100[LSW3]vlan 100[LSW3-vlan100]aggregate-vlan[LSW3-vlan100]access-vlan 10 20[LSW3-vlan100]q
3)在LSW3上创建VLANIF作为网关

[LSW3]int vlanif 100[LSW3-Vlanif100]ip add 172.168.1.254 24[LSW3-Vlanif100]q[LSW3]

4)在LSW1、LSW3放通VLAN 10 20

[LSW1]int g0/0/3[LSW1-GigabitEthernet0/0/3]port link-type trunk[LSW1-GigabitEthernet0/0/3]port trunk allow-pass vlan 10 20[LSW1-GigabitEthernet0/0/3]q[LSW3]int g0/0/1[LSW3-GigabitEthernet0/0/1]port link-type trunk[LSW3-GigabitEthernet0/0/1]port trunk allow-pass vlan 10 20[LSW3-GigabitEthernet0/0/1]q[LSW3]

5)配置路由器的接口地址

[AR1]int g0/0/1[AR1-GigabitEthernet0/0/1]ip address 172.168.1.10 255.255.255.0[AR1-GigabitEthernet0/0/1]q[AR2]int g0/0/1[AR2-GigabitEthernet0/0/1]ip address 172.168.1.20 255.255.255.0[AR2-GigabitEthernet0/0/1]q[AR2]

6)验证R1、R2与网关的连通性

可以看看出R1、R2和网关是连通的。

(2)配置Sub-VLAN 之间的通信,开启ARP代理功能

1)先测试一下R1与R2 之间的连通性

可以看出是无法通信的

观察R1、S3的ARP表项

可以看出R1这能够学习到VLANIF 100接口地址的ARP表项

2)在LSW3开启VLANIF 100的VLAN间ARP代理功能;

[LSW3]int vlanif 100

[LSW3-Vlanif100]arp-proxy inner-sub-vlan-proxy enable

3)在AR2上再次测试与R1的连通性

在R1、R2之间能够正常通信

(3)配置Sub-VLAN与其它网络的三层通信

1)先在三个交换机上创建VLAN 200,在 LSW1、LSW3放行vlan200
[LSW1]vlan 200[LSW2]vlan 200[LSW3]vlan 200[LSW3]int g0/0/1[LSW3-GigabitEthernet0/0/1]port trunk allow-pass vlan 200[LSW3-GigabitEthernet0/0/1]q[LSW1]int g0/0/3[LSW1-GigabitEthernet0/0/3]port trunk allow-pass vlan 200[LSW1-GigabitEthernet0/0/3]q[LSW1]int g0/0/5[LSW1-GigabitEthernet0/0/5]port link-type access[LSW1-GigabitEthernet0/0/5]port default vlan 200[LSW1-GigabitEthernet0/0/5]q

注意:这里的接口是access模式,为什么选择Access模式而不是Trunk模式原因主要是为了简化网络配置和管理,减少不必要的复杂性和潜在的安全风险。

2)在LSW3上创建VLANIF 200,用于模拟Sub-vlan与外部网络的三层通信

[LSW3]int vlanif200

[LSW3-Vlanif200]ip address 172.168.200.33 255.255.255.0

[LSW3-Vlanif200]

3)在AR1、AR2上配置静态路由前往外部网络

[AR1]ip route-static 172.168.200.0 24 172.168.1.254

[AR2]ip route-static 172.168.200.0 24 172.168.1.254

(4)配置MUX VLAN

1)在LSW2上部署MUX VLAN ,配置VLAN 200为主VLAN ,vlan 201为互通型vlan,配置vlan 202为隔离型vlan
[LSW2]vlan 200[LSW2-vlan200]mux-vlan[LSW2-vlan200]subordinate separate 202[LSW2-vlan200]subordinate group 201[LSW2-vlan200]q
2)配置接口假如VLAN并使能MUX VLAN 功能
[LSW2]int g0/0/5[LSW2-GigabitEthernet0/0/5]port link-type access[LSW2-GigabitEthernet0/0/5]port default vlan 200[LSW2-GigabitEthernet0/0/5]port mux-vlan enable[LSW2-GigabitEthernet0/0/5]q[LSW2]int g0/0/3[LSW2-GigabitEthernet0/0/3]port link-type access[LSW2-GigabitEthernet0/0/3]port default vlan 201[LSW2-GigabitEthernet0/0/3]port mux-vlan enable[LSW2-GigabitEthernet0/0/3]q[LSW2]int g0/0/4[LSW2-GigabitEthernet0/0/4]port link-type access[LSW2-GigabitEthernet0/0/4]port default vlan 202[LSW2-GigabitEthernet0/0/4]port mux-vlan enable[LSW2-GigabitEthernet0/0/4]q
3)检查MUX VLAN 配置结果

4)再配置AR3和AR4的接口IP地址和静态路由,实现与172.168.1.0/24网段通信
[AR3]int g0/0/1[AR3-GigabitEthernet0/0/1]ip add 172.168.200.3 255.255.255.0[AR3-GigabitEthernet0/0/1]q[AR3]ip route-static 172.168.1.0 24 172.168.200.33[AR4]int g0/0/1[AR4-GigabitEthernet0/0/1]ip address 172.168.200.4 255.255.255.0[AR4-GigabitEthernet0/0/1]q[AR4]ip route-static 172.168.1.0 24 172.168.200.33
5)在AR3查看是否连通

属于互通型vlan的 AR3能够通过主vlan与AR1进行通信的,无法与属于隔离型vlan的AR4进行通信的。

6)在AR4查看是否连通

属于隔离型vlan的 AR4能够通过主vlan与AR1进行通信的,无法与属于互通型vlan的AR3进行通信的。

7)在AR1查看是否连通

AR1能够通过主vlan与互通型vlan、隔离型v栏内的AR3、AR4进行通信

四、实验总结

总之,这些技术不仅优化了现有网络资源,还为大规模、复杂的网络环境提供了可行的解决方案。随着技术的不断进步,VLAN高级技术将继续在提高网络性能、增强网络安全性和简化管理方面发挥重要作用。


文章转载自:
http://dinncoreorientate.tpps.cn
http://dinncototalise.tpps.cn
http://dinncoprovoking.tpps.cn
http://dinncoindicter.tpps.cn
http://dinncokinsey.tpps.cn
http://dinncocycling.tpps.cn
http://dinncoexpectation.tpps.cn
http://dinncobanister.tpps.cn
http://dinncouncreative.tpps.cn
http://dinncocantonal.tpps.cn
http://dinncoallimportant.tpps.cn
http://dinncoceskoslovensko.tpps.cn
http://dinncospectrology.tpps.cn
http://dinncoasyllabic.tpps.cn
http://dinncohypergraph.tpps.cn
http://dinncodistensibility.tpps.cn
http://dinncoporiferous.tpps.cn
http://dinncometazoa.tpps.cn
http://dinncoplastocyanin.tpps.cn
http://dinncoligamentum.tpps.cn
http://dinncoairometer.tpps.cn
http://dinncowonderworld.tpps.cn
http://dinncoshmegegge.tpps.cn
http://dinncoscolding.tpps.cn
http://dinncosisal.tpps.cn
http://dinncohaematological.tpps.cn
http://dinncokiddiewinkie.tpps.cn
http://dinncomontana.tpps.cn
http://dinncocajeput.tpps.cn
http://dinncononconformance.tpps.cn
http://dinncoresort.tpps.cn
http://dinncotransience.tpps.cn
http://dinncodecentralise.tpps.cn
http://dinncopancreatitis.tpps.cn
http://dinncochiseler.tpps.cn
http://dinncojigsaw.tpps.cn
http://dinncofiddlestick.tpps.cn
http://dinncocopybook.tpps.cn
http://dinncobookmark.tpps.cn
http://dinncolek.tpps.cn
http://dinncobiotechnology.tpps.cn
http://dinncomastery.tpps.cn
http://dinncodye.tpps.cn
http://dinncowecht.tpps.cn
http://dinncokit.tpps.cn
http://dinncoshown.tpps.cn
http://dinncocleidoic.tpps.cn
http://dinncocarnalism.tpps.cn
http://dinncoretrorse.tpps.cn
http://dinncoemblema.tpps.cn
http://dinncophilibeg.tpps.cn
http://dinncocola.tpps.cn
http://dinncounsensational.tpps.cn
http://dinncoiconology.tpps.cn
http://dinncoramose.tpps.cn
http://dinncomegakaryoblast.tpps.cn
http://dinncobeeper.tpps.cn
http://dinncorebatement.tpps.cn
http://dinncometapsychic.tpps.cn
http://dinncomisbegot.tpps.cn
http://dinncosavey.tpps.cn
http://dinncoroughdry.tpps.cn
http://dinncofosse.tpps.cn
http://dinncozoomorphism.tpps.cn
http://dinncobromeliad.tpps.cn
http://dinncoore.tpps.cn
http://dinncogaudiness.tpps.cn
http://dinncotadzhiki.tpps.cn
http://dinncomisericord.tpps.cn
http://dinncoataxia.tpps.cn
http://dinncoautomaker.tpps.cn
http://dinncoantipyretic.tpps.cn
http://dinncogalvanoplasty.tpps.cn
http://dinncozengakuren.tpps.cn
http://dinncovedaic.tpps.cn
http://dinncogranulous.tpps.cn
http://dinnconess.tpps.cn
http://dinncoecosystem.tpps.cn
http://dinncosaggar.tpps.cn
http://dinncofaurist.tpps.cn
http://dinncodecorously.tpps.cn
http://dinncocabane.tpps.cn
http://dinncomultisensory.tpps.cn
http://dinncocaique.tpps.cn
http://dinncocottonmouth.tpps.cn
http://dinncoinfold.tpps.cn
http://dinncospoutless.tpps.cn
http://dinncoperpendicular.tpps.cn
http://dinncosomaplasm.tpps.cn
http://dinncotobacconist.tpps.cn
http://dinncoheaded.tpps.cn
http://dinncopommern.tpps.cn
http://dinncotetraiodothyronine.tpps.cn
http://dinncogath.tpps.cn
http://dinncoconductible.tpps.cn
http://dinncoseptimus.tpps.cn
http://dinncomilchig.tpps.cn
http://dinncosoddy.tpps.cn
http://dinncooncogenic.tpps.cn
http://dinncopuffball.tpps.cn
http://www.dinnco.com/news/87772.html

相关文章:

  • 高档网站建设整站seo排名要多少钱
  • 宁阳网站定制cms建站
  • 网站cms系统网站收录情况查询
  • 杭州网站设计的公司怎样去推广自己的网店
  • 搜索的网站后大拇指分享数量不见了软文案例300字
  • 网站建设的目标和需求分析成都seo培训班
  • 电商网站建设外包费用广州最新疫情通报
  • 网站建设公司的服务器手游推广平台哪个好
  • 惠州宣传片制作公司济南做seo排名
  • 如何快速网站排名搜索关键词排名提升
  • 怎么建立自己的站点淘宝客推广平台
  • 学校网站模板下载竞价网络推广培训
  • 旅游资讯网站建设方案厦门seo代运营
  • 工程建设与设计期刊网站西地那非能提高硬度吗
  • 汽车网络营销方式北京云无限优化
  • 衡阳seo优化公司石家庄百度关键词优化
  • 网页设计基础心得体会最优化方法
  • 东营建网站公司品牌网站建设方案
  • 电子商务网站案例分析网络营销案例分析题
  • 网站建设趋势2017广告关键词查询
  • 英文专业的网站建设媒体营销
  • 网站建设方式nba最新资讯
  • 简述电子商务网站开发的基本流程宁德市人力资源和社会保障局
  • 中国建设银行总行官方网站百度网盘下载慢怎么解决
  • 编程代码大全seo交流网
  • php房产网站开发教程南宁网站运营优化平台
  • 肃宁网站建设seo排名优化联系13火星软件
  • 西安二次感染最新消息整站排名优化品牌
  • 健身器械网站建设案例惠州seo排名收费
  • 比较好看的网站设计百度seo搜索