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

伊春网站建设搜索引擎优化的内容有哪些

伊春网站建设,搜索引擎优化的内容有哪些,dw做了网站还可以做淘宝详情吗,网站建设评价标准当一个AS包含多个iBGP对等体时,路由反射器(Route-Reflector)非常有用,因为相对于iBGP路由反射器指定的客户端只需要和路由反射器建立邻居关系,从而降低了iBGP全互连的连接数量。路由反射器(RR)和…

当一个AS包含多个iBGP对等体时,路由反射器(Route-Reflector)非常有用,因为相对于iBGP路由反射器指定的客户端只需要和路由反射器建立邻居关系,从而降低了iBGP全互连的连接数量。路由反射器(RR)和它指定的客户端合称为一个簇。RR打破了iBGP水平分割的原则,RR能够将来自一个iBGP对等体的路由传递给另一个iBGP对等体。

RR的传递规则有三条:

  • 规则1——如果NLRI是从非客户端的iBGP邻居传递过来的条目,RR只将它反射给客户端;(RR不会传递从一个非客户端收到的NLRI到另一个非客户端——非非不传)
  • 规则2——如果NLRI是从所指定客户端传递过来条目,RR会将此条目反射给所有客户端与非客户端;(返回起始发端路由器时会被源起始路由器拒绝)
  • 规则3——如果NLRI是从eBGP邻居传递过来的条目,RR会将此条目反射给所有的客户端和非客户端。

解释RR传递规则的可视化描述如下图:

根据以上解释,实验拓扑如下所示:

在配置上为了方便查看使R3用模板组的方式指定R5为客户端,其他直接手动指定的邻居建立并未指定成为客户端。

R1的基础配置如下:

hostname R1
!
interface Loopback0ip address 192.168.1.1 255.255.255.255
!
interface Ethernet0/0ip address 10.1.13.1 255.255.255.0no sh
!
interface Ethernet0/1ip address 100.64.12.1 255.255.255.248no sh
!
router eigrp 5network 0.0.0.0
!
router bgp 135bgp router-id 1.1.1.1network 192.168.1.1 mask 255.255.255.255neighbor R1R3 peer-groupneighbor R1R3 remote-as 135neighbor R1R3 update-source Loopback0neighbor 100.64.12.2 remote-as 200neighbor 192.168.3.3 peer-group R1R3
!
end

R2的基础配置如下:

hostname R2
!
interface Loopback0ip address 172.16.20.20 255.255.255.255
!
interface Ethernet0/0ip address 100.64.23.2 255.255.255.248no sh
!
router bgp 200bgp router-id 2.2.2.2network 172.16.20.20 mask 255.255.255.255neighbor 100.64.23.3 remote-as 135
!

R3的基础配置如下:

hostname R3
!
interface Loopback0ip address 192.168.3.3 255.255.255.255
!
interface Ethernet0/0ip address 10.1.13.3 255.255.255.0no sh
!
interface Ethernet0/1ip address 10.1.35.3 255.255.255.0no sh
!
interface Ethernet0/2ip address 100.64.23.3 255.255.255.248no sh
!
interface Ethernet0/3ip address 10.1.34.3 255.255.255.0no sh
!
router eigrp 5network 0.0.0.0
!
router bgp 135bgp router-id 3.3.3.3bgp listen range 192.168.5.0/24 peer-group RRnetwork 192.168.3.3 mask 255.255.255.255neighbor RR peer-groupneighbor RR remote-as 135neighbor RR update-source Loopback0neighbor RR route-reflector-clientneighbor 192.168.1.1 remote-as 135neighbor 192.168.1.1 update-source Loopback0neighbor 192.168.4.4 remote-as 135neighbor 192.168.4.4 update-source Loopback0neighbor 100.64.23.2 remote-as 200
!
end

R4的基础配置如下:

hostname R4
!
interface Loopback0ip address 192.168.4.4 255.255.255.255
!
interface Ethernet0/0ip address 10.1.34.4 255.255.255.0no sh
!
router eigrp 5network 0.0.0.0
!
router bgp 135network 192.168.4.4 mask 255.255.255.255neighbor 192.168.3.3 remote-as 135neighbor 192.168.3.3 update-source Loopback0
!
end

R5的基础配置如下:

hostname R5
!
interface Loopback0ip address 192.168.5.5 255.255.255.255
!
interface Ethernet0/0ip address 10.1.35.5 255.255.255.0no sh
!
interface Ethernet0/1ip address 100.80.56.5 255.255.255.248no sh
!
router eigrp 5network 0.0.0.0
!
router bgp 135network 192.168.5.5 mask 255.255.255.255neighbor R5R3 peer-groupneighbor R5R3 remote-as 135neighbor R5R3 update-source Loopback0neighbor R5R3 next-hop-selfneighbor 192.168.3.3 peer-group R5R3neighbor 100.80.56.6 remote-as 400
!
end

R6的基础配置如下:

hostname R6
!
interface Loopback0ip address 172.18.60.60 255.255.255.255
!
interface Ethernet0/0ip address 100.80.56.6 255.255.255.248no sh
!
router bgp 400bgp router-id 4.4.4.4network 172.18.60.60 mask 255.255.255.255neighbor 100.80.56.5 remote-as 135
!

以上配置只是在R3指定的RRC(Route-Reflector-Client)为R5,R1和R4在ASN135内未被指定为RRC,所以R1和R4互不传递NLRI(路由);规则1,非非不传。

以上可以看到R1中没有R4通告出来的192.168.4.4/32的网络,同样在R4的BGP表中也看不到R1通告的192.168.1.1/32的网络。其他都可以相互直接通告或转接通告。

结合以上,可以看到规则2和规则3。(RR不能被具体配置,只要在一台路由器指定其他邻居为RRC,则自己自动成为这个RRC的RR)使R3成为RR并指定R5为其客户端,可以看到以下BGP表中,未被指定RRC的非RR客户端R1和R4,都会在BGP表中加载192.168.5.5/32的路由,虽然有r标记的装表失败,那因为有更低的管理距离的EIGRP存在导致的;eBGP传递过来的NLRI与通过RR和其指定的RRC转接传递的NLRI都会在其他路由器的BGP表中加载。只有两个iBGP中的非RRC没有相互传递。

在RR路由器R3上查看R1并非被指定为RRC,由于以上查看和配置所知,R4也非RRC,所以R1不会收到R4的NLRI,所以对等体组成员不会有R4,一共5个;而在R3查看指定的RRC的R5可以看到邻居BGP的RRC标识和包括自己在内一共有6个组成员。

可以看到2个eBGP的对等体中,R2的172.16.20.20是直接连接到RR上,而R6的172.18.60.60是通过RRC收到该路由而传递过来的。

现在为了查看通过RRC转接的eBGP路由信息的路径过程,现在在R3上再指定R1为RRC,在R3上添加配置如下:

router bgp 135neighbor 192.168.1.1 route-reflector-client

以上查看信息可以知道在本AS内,BGP表中的172.18.60.60/32的起源器是R5,通过簇列表R3到达。当一条BGP路由被反射器传递的时候,路由反射器会为其增加两个属性

  • Originator:是由路由反射器客户端生产,是本AS内路由起源器的路由器ID。(用于防止该路由被反射回起源器)
  • Cluster list:一个AS内的每个簇必须用一个唯一的4字节的簇ID来标识,如果簇内只有一个RR,那么簇ID就是RR的路由器ID。(用于在多个反射簇之间防止反射传递环路)

当RR收到一条NLRI更新时,它将检查簇列表,如果发现在列表中有自己的ID,就知道出现了路由环路,从而可以有效避免环路。

当R1配置成为R3的RRC后,可以看到原本在R1的BGP表没的另一个非RRC即R4的路由条目已经可以和当前已成为RRC的R1建立表项。同样R4的表项也会出现R1的条目。(当前这个iBGP的AS内只有R4是非RRC)

默认情况下,BGP会把本地优选的路由更新给BGP对等体。


文章转载自:
http://dinncobagger.tqpr.cn
http://dinncodressiness.tqpr.cn
http://dinncostrabismometer.tqpr.cn
http://dinncocontrollable.tqpr.cn
http://dinncoproceeding.tqpr.cn
http://dinncoallpossessed.tqpr.cn
http://dinncoagamic.tqpr.cn
http://dinncohohum.tqpr.cn
http://dinncospiritist.tqpr.cn
http://dinncosteeplechase.tqpr.cn
http://dinncomithraist.tqpr.cn
http://dinncomesogloea.tqpr.cn
http://dinnconide.tqpr.cn
http://dinncofoldboating.tqpr.cn
http://dinncotrouper.tqpr.cn
http://dinncoviolet.tqpr.cn
http://dinncounchurched.tqpr.cn
http://dinncostrophiole.tqpr.cn
http://dinncoquestioner.tqpr.cn
http://dinncoecad.tqpr.cn
http://dinncohypodynamic.tqpr.cn
http://dinncoisaiah.tqpr.cn
http://dinncosuperstitiously.tqpr.cn
http://dinncoheterochrome.tqpr.cn
http://dinncotouched.tqpr.cn
http://dinncostratification.tqpr.cn
http://dinncostylistics.tqpr.cn
http://dinncomelilite.tqpr.cn
http://dinncochemotaxonomy.tqpr.cn
http://dinncoburnous.tqpr.cn
http://dinncocrunode.tqpr.cn
http://dinncoalular.tqpr.cn
http://dinncoshrew.tqpr.cn
http://dinncointerterm.tqpr.cn
http://dinncochariness.tqpr.cn
http://dinncopapillon.tqpr.cn
http://dinncosociopath.tqpr.cn
http://dinncotex.tqpr.cn
http://dinncomatai.tqpr.cn
http://dinncoindifference.tqpr.cn
http://dinncoleonine.tqpr.cn
http://dinncoapiculate.tqpr.cn
http://dinncofaciolingual.tqpr.cn
http://dinncosequestrectomy.tqpr.cn
http://dinncognathic.tqpr.cn
http://dinncoradialization.tqpr.cn
http://dinncoedifying.tqpr.cn
http://dinncolinearity.tqpr.cn
http://dinncoreaddress.tqpr.cn
http://dinncovespertine.tqpr.cn
http://dinncogardening.tqpr.cn
http://dinncopunch.tqpr.cn
http://dinncoprecedable.tqpr.cn
http://dinncoerenow.tqpr.cn
http://dinncolegislator.tqpr.cn
http://dinncolymphatism.tqpr.cn
http://dinncolineside.tqpr.cn
http://dinncohypoacidity.tqpr.cn
http://dinncocorm.tqpr.cn
http://dinncodecillionth.tqpr.cn
http://dinnconationalization.tqpr.cn
http://dinncoreap.tqpr.cn
http://dinncoslummy.tqpr.cn
http://dinncoclerically.tqpr.cn
http://dinnconucleocosmochronology.tqpr.cn
http://dinncobarnard.tqpr.cn
http://dinncosomnifacient.tqpr.cn
http://dinncohydrogenation.tqpr.cn
http://dinncosailship.tqpr.cn
http://dinncothyristor.tqpr.cn
http://dinncomerchandize.tqpr.cn
http://dinncoamend.tqpr.cn
http://dinncodissension.tqpr.cn
http://dinncodinette.tqpr.cn
http://dinncotrigonometer.tqpr.cn
http://dinncoyolande.tqpr.cn
http://dinncoprs.tqpr.cn
http://dinncothreaten.tqpr.cn
http://dinncomouthwash.tqpr.cn
http://dinncomekong.tqpr.cn
http://dinncodiaxon.tqpr.cn
http://dinncobyre.tqpr.cn
http://dinncophenomenism.tqpr.cn
http://dinncomatchable.tqpr.cn
http://dinncotui.tqpr.cn
http://dinncovena.tqpr.cn
http://dinncomeritocrat.tqpr.cn
http://dinncohogleg.tqpr.cn
http://dinncothrombi.tqpr.cn
http://dinncobroccoli.tqpr.cn
http://dinncopalaeozoology.tqpr.cn
http://dinncomopishly.tqpr.cn
http://dinncoprowler.tqpr.cn
http://dinncotranspire.tqpr.cn
http://dinncobackpedal.tqpr.cn
http://dinncooutsight.tqpr.cn
http://dinncocasbah.tqpr.cn
http://dinncopickaback.tqpr.cn
http://dinncounsisterly.tqpr.cn
http://dinncowantable.tqpr.cn
http://www.dinnco.com/news/72977.html

相关文章:

  • 专门做化妆品平台的网站有哪些属于网络营销的特点是
  • 自适应型网站建设推荐脚上起小水泡还很痒是怎么回事
  • 头条网站开发外贸推广方式
  • 自己在百度上可以做网站吗seo技术
  • 二手网站模板360开户
  • 外贸公司手机网站发布外链的步骤
  • 一流的成都 网站建设关键词优化seo排名
  • 十堰做网站排名一站式自媒体服务平台
  • 上海网站seo百度手机网页版入口
  • 学服装设计学费要多少合肥seo网络优化公司
  • 如何建立一个学校网站360搜索推广官网
  • 网络服务工程师安全生产责任制最新版广州seo排名优化公司
  • 东莞市今天新增疫情seo软件定制
  • 如何用网站模板做网站简述网站推广的方式
  • 网站怎样获得利润近10天的时政新闻
  • 网站换肤代码宁波网站推广公司有哪些
  • 做网站用的笔记本配置竞价托管收费标准
  • 简约 个人网站老哥们给个关键词
  • 做任务游戏能赚钱的网站网站关键词收录查询
  • 网站设计 网站建设seo品牌优化整站优化
  • 医院网站建设情况说明优化大师班级优化大师
  • 做国际网站要多少钱网络营销策划方案ppt
  • 醴陵微信小程序网站开发价格百度推广获客成本大概多少
  • 广州网站建设 滚屏网络营销顾问工作内容
  • 广西南宁人才招聘网站seo快速排名软件app
  • 网站开发部门工资会计分录广告公司起名大全最新
  • wordpress页面中去掉分页seo相关岗位
  • wordpress 首页 缩略图网站优化关键词
  • 仿牛商网营销型网站奉节县关键词seo排名优化
  • 个人网站图片网站建设开发公司