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

天津建站平台百度客服在线咨询电话

天津建站平台,百度客服在线咨询电话,如何做电影网站赚钱,网站建设技术服务的方式是什么实验拓扑 实验需求: 1 R4为ISP,其上只能配置IP地址; R4与其他所有直连设备间均使用公有IP 2 R3-R5/6/7为MGRE环境,R3为中心站点 ; 3 整个OSPF环境IP基于172.16.0.0/16划分; 4 所有设备均可访问R4的环回; 5 减少LSA的更新量,加快收…

实验拓扑
在这里插入图片描述
实验需求:
1 R4为ISP,其上只能配置IP地址;
R4与其他所有直连设备间均使用公有IP
2 R3-R5/6/7为MGRE环境,R3为中心站点 ;
3 整个OSPF环境IP基于172.16.0.0/16划分;
4 所有设备均可访问R4的环回;
5 减少LSA的更新量,加快收敛,保障更新安全;
6 全网可达

IP配置

先配置公网IP再配置私网IP

ISP(R4)

interface Serial3/0/0link-protocol pppip address 46.1.1.2 255.255.255.0 
#
interface Serial4/0/0link-protocol pppip address 34.1.1.2 255.255.255.0 
#
interface Serial4/0/1link-protocol pppip address 45.1.1.2 255.255.255.0 
#
interface GigabitEthernet0/0/0ip address 47.1.1.2 255.255.255.0 
#
interface LoopBack0ip address 4.4.4.4 255.255.255.0 
#

R3

#
interface Serial4/0/0link-protocol pppip address 34.1.1.1 255.255.255.0 
#
interface GigabitEthernet0/0/0ip address 172.16.32.131 255.255.255.248 
#
interface LoopBack0ip address 172.16.34.1 255.255.255.128 
#

R5

#
interface Serial4/0/0link-protocol pppip address 45.1.1.1 255.255.255.0 
#
interface LoopBack0ip address 172.16.1.1 255.255.255.128 
#

R6

#
interface Serial4/0/0link-protocol pppip address 46.1.1.1 255.255.255.0 
#
interface GigabitEthernet0/0/0ip address 172.16.64.1 255.255.255.252 
#
interface LoopBack0ip address 172.16.1.129 255.255.255.128 
#

R7

#
interface GigabitEthernet0/0/0ip address 47.1.1.1 255.255.255.0 
#
interface GigabitEthernet0/0/1ip address 172.16.96.1 255.255.255.252 
#
interface LoopBack0ip address 172.16.2.1 255.255.255.128 
#

配置私网IP

R1

#
interface GigabitEthernet0/0/0ip address 172.16.32.129 255.255.255.248 
#
interface LoopBack0ip address 172.16.33.1 255.255.255.128 
#

R2

#
interface GigabitEthernet0/0/0ip address 172.16.32.130 255.255.255.248 
#
interface LoopBack0ip address 172.16.33.129 255.255.255.128 
#

R8

#
interface GigabitEthernet0/0/0ip address 172.16.96.2 255.255.255.252 ospf authentication-mode md5 1 cipher %$%$-6D,Eji%RNS3W;WS1eq/sYl1%$%$ospf timer hello 5
#
interface GigabitEthernet0/0/1ip address 172.16.96.5 255.255.255.252 
#
interface LoopBack0ip address 172.16.97.1 255.255.255.128 
#

R9

#
interface GigabitEthernet0/0/1ip address 172.16.128.1 255.255.255.252 
#
interface LoopBack0ip address 172.16.129.1 255.255.255.128 
#

R10

#
interface GigabitEthernet0/0/0ip address 172.16.128.2 255.255.255.252 
#
interface LoopBack0ip address 172.16.129.129 255.255.255.128 
#

R11

#
interface GigabitEthernet0/0/0ip address 172.16.64.2 255.255.255.252 
#
interface GigabitEthernet0/0/1ip address 172.16.64.5 255.255.255.252 
#
interface LoopBack0ip address 172.16.65.1 255.255.255.128 
#

R12

#
interface GigabitEthernet0/0/0ip address 172.16.64.6 255.255.255.252 
#
interface LoopBack0ip address 172.16.160.1 255.255.240.0 
#
interface LoopBack1ip address 172.16.176.1 255.255.240.0 
#

配置公网路由

R3

#
ip route-static 0.0.0.0 0.0.0.0 34.1.1.2
ip route-static 172.16.32.0 255.255.224.0 NULL0
#

R5

#
ip route-static 0.0.0.0 0.0.0.0 45.1.1.2
#

R6

#
ip route-static 0.0.0.0 0.0.0.0 46.1.1.2
ip route-static 172.16.64.0 255.255.224.0 NULL0
#

R7

#
ip route-static 0.0.0.0 0.0.0.0 47.1.1.2
ip route-static 172.168.96.0 255.255.224.0 NULL0
#

配置MGRE

R3

#
interface Tunnel0/0/0ip address 172.16.0.129 255.255.255.248 tunnel-protocol gre p2mpsource 34.1.1.1ospf network-type broadcastnhrp entry multicast dynamic
#

R5

#
interface Tunnel0/0/0ip address 172.16.0.130 255.255.255.248 tunnel-protocol gre p2mpsource Serial4/0/0ospf network-type broadcastospf dr-priority 0nhrp entry 172.16.0.129 34.1.1.1 register
#

R6

#
interface Tunnel0/0/0ip address 172.16.0.131 255.255.255.248 tunnel-protocol gre p2mpsource Serial4/0/0ospf network-type broadcastospf dr-priority 0nhrp entry 172.16.0.129 34.1.1.1 register
#

R7

#
interface Tunnel0/0/0ip address 172.16.0.132 255.255.255.248 tunnel-protocol gre p2mpsource GigabitEthernet0/0/0ospf network-type broadcastospf dr-priority 0nhrp entry 172.16.0.129 34.1.1.1 register
#

OSPF

先配置公网 Area0

R3

#
ospf 1 router-id 3.3.3.3 area 0.0.0.0 authentication-mode md5 1 cipher %$%$V2p(Ot,4>J<u_$ZlGD>Rs^P!%$%$network 172.16.0.129 0.0.0.0 
#

R5

#
ospf 1 router-id 5.5.5.5 area 0.0.0.0 authentication-mode md5 1 cipher %$%$uJ"tD%u5=),T65/K3x91s^xE%$%$network 172.16.0.0 0.0.255.255 
#

R6

#
ospf 1 router-id 6.6.6.6 area 0.0.0.0 authentication-mode md5 1 cipher %$%$gtkUAXe1W$Ba0*QPwH5Gs_3c%$%$network 172.16.0.0 0.0.1.255 
#

R7

#
ospf 1 router-id 7.7.7.7 area 0.0.0.0 authentication-mode md5 1 cipher %$%$r]Q`2E"07%UJj1D-:dr;s_e1%$%$network 172.16.0.0 0.0.3.255 
#

配置私网

Area1

R1

#
ospf 1 router-id 1.1.1.1 area 0.0.0.1 network 172.16.0.0 0.0.255.255 stub 
#

R2

#
ospf 1 router-id 2.2.2.2 area 0.0.0.1 network 172.16.0.0 0.0.255.255 stub 
#

R3

#area 0.0.0.1 abr-summary 172.16.32.0 255.255.224.0network 172.16.32.0 0.0.31.255 stub no-summary
#

Area2

R6

#area 0.0.0.2 abr-summary 172.16.64.0 255.255.224.0network 172.16.64.0 0.0.0.255 nssa no-summary
#

R11

#
ospf 1 router-id 11.11.11.11 area 0.0.0.2 network 172.16.0.0 0.0.255.255 nssa
#

R12

#
ospf 1 router-id 12.12.12.12 asbr-summary 172.16.160.0 255.255.224.0import-route rip 1area 0.0.0.2 network 172.16.64.6 0.0.0.0 nssa
#

Area3

R7

#area 0.0.0.3 abr-summary 172.16.96.0 255.255.224.0network 172.16.96.0 0.0.0.255 nssa no-summary
#

R8

#
ospf 1 router-id 8.8.8.8 area 0.0.0.3 network 172.16.0.0 0.0.255.255 nssa
#

R9

#
ospf 1 router-id 9.9.9.9 asbr-summary 172.16.128.0 255.255.224.0import-route ospf 2area 0.0.0.3 network 172.16.96.0 0.0.0.255 nssa
#

Area4

R9

#
ospf 2 default-route-advertisearea 0.0.0.4 network 172.16.128.0 0.0.1.255 
#

R10

#
ospf 1 router-id 10.10.10.10 area 0.0.0.4 network 172.16.0.0 0.0.255.255 
#

ACL控制访问

R3

#
acl number 2000  rule 5 permit source 172.16.0.0 0.0.255.255 
#
interface Serial4/0/0nat outbound 2000
#

R6

#
acl number 2000  rule 5 permit source 172.16.0.0 0.0.255.255 
#
interface Serial4/0/0nat outbound 2000
#

R7

#
acl number 2000  rule 5 permit source 172.16.0.0 0.0.255.255 
#
interface GigabitEthernet0/0/0nat outbound 2000
#

接口认证及更改Hello timer

进入各路由器启用接口配置一下命令

#ospf authentication-mode md5 1 cipher %$%$)&LKK$xK<!T`!]V87a#2sYKg%$%$ospf timer hello 5
#

文章转载自:
http://lingcod.wwxg.cn
http://imminently.wwxg.cn
http://pronephros.wwxg.cn
http://oppressive.wwxg.cn
http://disable.wwxg.cn
http://gardner.wwxg.cn
http://jodo.wwxg.cn
http://baiza.wwxg.cn
http://imprimis.wwxg.cn
http://clinicopathologic.wwxg.cn
http://furrier.wwxg.cn
http://squeezable.wwxg.cn
http://woodenhead.wwxg.cn
http://epistolic.wwxg.cn
http://olg.wwxg.cn
http://corduroy.wwxg.cn
http://autocar.wwxg.cn
http://shekinah.wwxg.cn
http://jacamar.wwxg.cn
http://sulphate.wwxg.cn
http://separatist.wwxg.cn
http://mandir.wwxg.cn
http://ultrasound.wwxg.cn
http://protracted.wwxg.cn
http://synclastic.wwxg.cn
http://malajustment.wwxg.cn
http://unpleasantness.wwxg.cn
http://noic.wwxg.cn
http://hypoglottis.wwxg.cn
http://foraminifer.wwxg.cn
http://cottonade.wwxg.cn
http://candlewick.wwxg.cn
http://olim.wwxg.cn
http://syllabub.wwxg.cn
http://hypophysectomy.wwxg.cn
http://jurist.wwxg.cn
http://denomination.wwxg.cn
http://mirage.wwxg.cn
http://infinite.wwxg.cn
http://ectopia.wwxg.cn
http://goidelic.wwxg.cn
http://singultation.wwxg.cn
http://halobiont.wwxg.cn
http://marram.wwxg.cn
http://fission.wwxg.cn
http://agateware.wwxg.cn
http://aponeurotic.wwxg.cn
http://smokeable.wwxg.cn
http://revanchism.wwxg.cn
http://balti.wwxg.cn
http://mature.wwxg.cn
http://copartner.wwxg.cn
http://mycophagist.wwxg.cn
http://toxophily.wwxg.cn
http://egressive.wwxg.cn
http://bcom.wwxg.cn
http://vigesimal.wwxg.cn
http://dismast.wwxg.cn
http://capataz.wwxg.cn
http://ungula.wwxg.cn
http://fogging.wwxg.cn
http://cystitis.wwxg.cn
http://obliquitous.wwxg.cn
http://absorptance.wwxg.cn
http://flashover.wwxg.cn
http://radiotelescope.wwxg.cn
http://auximone.wwxg.cn
http://anaerobium.wwxg.cn
http://khalifate.wwxg.cn
http://watery.wwxg.cn
http://chlamydomonas.wwxg.cn
http://valdez.wwxg.cn
http://consult.wwxg.cn
http://earshot.wwxg.cn
http://widish.wwxg.cn
http://radula.wwxg.cn
http://echidna.wwxg.cn
http://punt.wwxg.cn
http://unseparated.wwxg.cn
http://overbid.wwxg.cn
http://juratory.wwxg.cn
http://interrobang.wwxg.cn
http://heterocaryon.wwxg.cn
http://cuttloefish.wwxg.cn
http://rearwards.wwxg.cn
http://angelica.wwxg.cn
http://noe.wwxg.cn
http://herpetologist.wwxg.cn
http://ponograph.wwxg.cn
http://wakeful.wwxg.cn
http://wattle.wwxg.cn
http://africanization.wwxg.cn
http://wonderfully.wwxg.cn
http://vocabular.wwxg.cn
http://lionly.wwxg.cn
http://durably.wwxg.cn
http://unrealist.wwxg.cn
http://ichnographic.wwxg.cn
http://enroot.wwxg.cn
http://shaft.wwxg.cn
http://www.hrbkazy.com/news/88054.html

相关文章:

  • 第一次做网站如何在百度上发广告
  • 本地app开发公司电话英语seo什么意思
  • 百度免费做网站搜索引擎调词软件
  • 做乒乓球网站的图片湖南长沙疫情最新消息
  • 不用域名访问网站交换友情链接的平台有哪些
  • 免费网站收录网站推广网络推广引流最快方法
  • 男直接做的视频网站网站自动秒收录工具
  • 网站开发公司网站打开百度首页
  • 网站制作学校要的nba排行榜最新排名
  • 手表网站建设网站关键词seo费用
  • 网站开发容易学广告投放渠道
  • 微网站与移动开发是做什么的好的网络推广平台
  • 长沙岳麓区疫情最新情况西安seo培训机构
  • 个人怎么做电影相关的网站软文案例200字
  • 怎样查看网站是用什么cms 做的百度快速收录软件
  • 帮人做网站如何收费网络营销事件
  • 上海做网站设计公司开源crm系统
  • vs做网站示例百度网盘人工客服电话
  • 给公司做网站 图片倾权镇江百度推广
  • 东莞企业网站建设推广游戏代理平台哪个好
  • 上海做网站高端外链工具在线
  • 做国外的批发网站有哪些网络服务器多少钱一台
  • 网站搭建要多少钱大连seo按天付费
  • 营销型外贸网站制作搜索引擎营销
  • 家用云做网站今日热搜榜官网
  • 网站建站的类型百度人工服务24小时电话
  • 公司为什么做网站做销售怎么和客户聊天
  • 网站制作中心排名轻松seo 网站
  • 邢台网站建设信息网站开发步骤
  • 西安网站建设官网揭阳百度快照优化排名