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

网络公司网站做的不错的免费宣传平台有哪些

网络公司网站做的不错的,免费宣传平台有哪些,重庆网络,网站的布局结构PIM(Protocol Independent Multicast)是一种组播路由协议。PIM不依赖于某一特定的单播路由协议,它可以利用任意单播路由协议建立的单播路由表完成RPF检查功能,从而建立组播路由。由于PIM无需收发组播路由更新,所以与其它组播路由协议相比&…
       PIM(Protocol Independent Multicast)是一种组播路由协议。PIM不依赖于某一特定的单播路由协议,它可以利用任意单播路由协议建立的单播路由表完成RPF检查功能,从而建立组播路由。由于PIM无需收发组播路由更新,所以与其它组播路由协议相比,PIM开销降低了许多。
       PIM定义了两种模式:稠密模式(Dense Mode)、稀疏模式(Sparse Mode)。PIM-DM(Protocol Independent Multicast-Dense Mode),即PIM的稠密模式,适用于网络规模比较小、组播成员相对集中的情况。PIM-DM在RFC 3973文档中定义。
PIM-DM设备之间通过Hello消息来发现邻居。一旦PIM-DM设备启动,它就周期性地在每个配置了PIM-DM的接口上发送Hello消息。Hello消息有一个保持时间(Hello Hold Time)字段,这个时间参数定义了邻居等待下一个Hello消息的最长时间。如果邻居在这个时间内没有收到另一个Hello消息,就会将这个设备从邻居关系表中删除。
一、组播的转发方式
1、与单播路由的方向相反,单播路由关心的目的地址ip,而组播是关心源ip,组播关心流量从哪里来!组播的路由相当于单播路由的反向路径,简称RPF(Reverse Path Forwarding逆向路径转发技术)这个RPF是针对于单播来说的。
2、组播的RPF Check(逆向路径转发技术检查)
因为组播和单播的路径是相反的,所以这个检测是检测单播和组播的路径是不是相反(相对应)的。
这个图中R3作为组播Router所进行的RPF检查是:当单播流量的目的ip是去往R1的从S1/0口出去的流量,那么组播的源发来的流量也必须是从R1源发来经过S1/0接口收到的组播源流量才可以通过RPF检测,否则如果单播流量从S1/0发出,但是组播流量从S1/1收到(而不是从S1/0收到)那么这个从S1/1收到的组播流量将会被dorp,安全考虑。(单播中也有RPF技术)
PIM(protocol Independent协议无关,意为支持多种单播协议来搭建底层路径):用于路由器之间的组播流量的协议(IGMP是组播客户端与组播网关之间的协议)
PIM分为两种类型和两种模式(类型和模式可以任意搭配):
一、PIM的两种类型:
1、最短路径树(有源树),接受者到达组播流量源的距离最短,成为有源树。树根是源!
类似直销,厂家直接卖给客户
2、共享树,共享分布树,特点是组播流量的源是*,代表所有都是源。其中有RP集合点这个概念,RP是一台或者多台组播路由器,在共享树中有多个根(RP)。源发的组播流量是经过RP来代理转发和接收的。
类似分销,厂家通过代理卖给客户,所以没有有源树的组播流量的路由优(因为中间经过了RP转发一手)
二、PIM的两种模式
1、Dense-mode,密集模式,客户端相对集中
1)、组播中离源最近的设备叫做:第一跳设备(first hop),
2)、组播中客户端源最近的设备叫做:最末跳设备(last hop)
1)、组播中离源最近的设备叫做:第一跳设备(first hop),在Dense-mode模式中当有了源以后first hop负责初始化泛红(类似switch的arp查询广播),这个初始化泛红的意义是:让所有收到组播流量的路由器产生(S源 G组)表项,然后根据收到的所有路由器回应的报文来进行最短路径的选择,修剪掉不必要的路径,找出(到源)最短的路径。如下图中所示的,经过组播流量的修剪,最终路径确定为红色的箭头路径为receive客户端到源最短的路径(叫做SPT最短路径),其余的路径被修剪掉了,以节省网络带宽。
2)、组播中客户端源最近的设备叫做:最末跳设备(last hop)
其中R1就是first hop设备,而R2就是last hop设备。假如最右边的R后面也是客户端的话,那么最右边的R也同样是一个last hop设备。
2、Spares-mode,稀疏模式,客户端相对分散(实际部署当中一般都使用spares-mode)
RP(集合点):代理源来转发和接收组播流量的路由器。
R2lasthop会将join信息发给R3,由R3到达源(从R3到达源的路径最短,比走RP要短),而不是走RP,只是开始从RP哪里得到了源的位置,然后开始自己选择最优的路径(但是可以人为的控制让R2lasthop强制从RP到达源而不去自己做switchover的最短路径切换,命令是:ip pim spt-threshold infinity,这个命令有特殊要求的时候和做实验的时候使用,能看到完整的过程。这个命令只有在lasthop上配置才有用)
show ip pim neighbor              查看pim邻居
show ip pim interface               查看哪些接口运行了pim,可以查看到当前的pim是哪种模式
组播中ping是组播ping,单播回复。ping一个组地址,有多少个单播回复,就知道这个组中有多少客户加入。
ping 224.1.1.1         可以得到该组中有哪些客户端 show ip mrouter     查看组播路由表,也就是(S G)表项,其中包括(* G)父表项和子表项(S G)
R1(config-if)#ip pim dense-mode               配置接口为稀疏模式 R1(config-if)#ip pim sparse-mode              配置接口为密集模式 R1(config)#ip pim rp-address x.x.x.x           密集模式中手动指定RP地址
R1(config)#ip pim spt-threshold infinity    密集模式中关闭SPT的switch-over最短路径切换功能(客户端的流量只从RP到源,而不选择最短到源的路径)
debug ip pim
debug ip mrouter *
拓扑如下:
组播Multicast <wbr>2 <wbr>PIM
组播Multicast <wbr>2 <wbr>PIM
一、PIM的dens-mode密集模式
1、底层R1-R3使用IGP搭建,eigrp 1
2、源和PC指网关,并且加入组224.1.1.1
source#show run interface s0/0   Building configuration...
Current configuration : 136 bytes ! interface Serial0/0  ip address 192.168.1.100 255.255.255.0  no ip route-cache  ip igmp join-group 224.1.1.1  clock rate 2000000 end
source(config)#no ip routing source(config)#ip default-gateway 192.168.1.100
source#show run interface s0/0   Building configuration...
Current configuration : 136 bytes ! interface Serial0/3  ip address 172.16.1.1 255.255.255.0  no ip route-cache  ip igmp join-group 224.1.1.1  clock rate 2000000 end
pc(config)#no ip routing pc(config)#ip default-gateway 172.16.1.100
R1上:
interface Serial0/0  ip address 192.168.1.1 255.255.255.0  ip pim dense-mode  clock rate 2000000 !
interface Serial0/0  ip address 12.1.1.1 255.255.255.0  ip pim dense-mode  clock rate 2000000 !
R2上:
interface Serial0/0  ip address 12.1.1.2 255.255.255.0  ip pim dense-mode  clock rate 2000000 !
interface Serial0/0  ip address 23.1.1.2 255.255.255.0  ip pim dense-mode  clock rate 2000000 !
R3上:
interface Serial0/0  ip address 23.1.1.3 255.255.255.0  ip pim dense-mode  clock rate 2000000 !
interface Serial0/0  ip address 172.16.1.1 255.255.255.0  ip pim dense-mode  clock rate 2000000 !
source#ping 224.1.1.1
Type escape sequence to abort. Sending 1, 100-byte ICMP Echos to 224.1.1.1, timeout is 2 seconds:
Reply to request 0 from 172.16.1.100, 36 ms                                                 PC已经响应源的ping source#
R2#show ip mroute IP Multicast Routing Table Flags: D - Dense, S - Sparse, B - Bidir Group, s - SSM Group, C - Connected,        L - Local, P - Pruned, R - RP-bit set, F - Register flag,        T - SPT-bit set, J - Join SPT, M - MSDP created entry,        X - Proxy Join Timer Running, A - Candidate for MSDP Advertisement,        U - URD, I - Received Source Specific Host Report,        Z - Multicast Tunnel, z - MDT-data group sender,        Y - Joined MDT-data group, y - Sending to MDT-data group Outgoing interface flags: H - Hardware switched, A - Assert winner  Timers: Uptime/Expires  Interface state: Interface, Next-Hop or VCD, State/Mode
(*, 224.1.1.1), 00:21:32/00:03:23, RP 2.2.2.2, flags: S   Incoming interface: Null, RPF nbr 0.0.0.0   Outgoing interface list:     Serial0/1, Forward/Sparse, 00:16:21/00:02:47     Serial0/2, Forward/Sparse, 00:21:32/00:03:23                  该接口信息表明S0/2口有组播流量,如IGMP的加组信息流量等,如果没有组播流量(IGMP或者PIM的)的话该接口不会出现在组播路由表中
(192.168.1.100, 224.1.1.1), 00:00:34/00:02:25, flags:   Incoming interface: Serial0/1, RPF nbr 12.1.1.1   Outgoing interface list:     Serial0/2, Forward/Sparse, 00:00:35/00:03:21
(*, 224.0.1.40), 00:22:40/00:03:26, RP 2.2.2.2, flags: SJCL   Incoming interface: Null, RPF nbr 0.0.0.0   Outgoing interface list:     Serial0/2, Forward/Sparse, 00:21:33/00:03:26     Serial0/1, Forward/Sparse, 00:22:40/00:02:49
R2#
二、PIM的sparse-mode稀疏模式
1、R1-R3底层IGP eigrp保证通信
2、源、PC配置不变
source#show run interface s0/0   Building configuration...
Current configuration : 136 bytes ! interface Serial0/0  ip address 192.168.1.100 255.255.255.0  no ip route-cache  ip igmp join-group 224.1.1.1  clock rate 2000000 end
source(config)#no ip routing source(config)#ip default-gateway 192.168.1.100
source#show run interface s0/0   Building configuration...
Current configuration : 136 bytes ! interface Serial0/3  ip address 172.16.1.1 255.255.255.0  no ip route-cache  ip igmp join-group 224.1.1.1  clock rate 2000000 end
pc(config)#no ip routing pc(config)#ip default-gateway 172.16.1.100
R1:
R1#show run interface s0/0 Building configuration...
Current configuration : 105 bytes ! interface Serial0/0  ip address 192.168.1.1 255.255.255.0  ip pim sparse-mode  clock rate 2000000 end
R1#show run interface s0/1 Building configuration...
Current configuration : 102 bytes ! interface Serial0/1  ip address 12.1.1.1 255.255.255.0  ip pim sparse-mode  clock rate 2000000 end
R1#
R1(config)#ip pim rp-address 2.2.2.2                  手工指定RP
R1(config)#exit
R2#show run interface s0/0 Building configuration...
Current configuration : 72 bytes ! interface Serial0/0  no ip address  shutdown  clock rate 2000000 end
R2#show run interface s0/1 Building configuration...
Current configuration : 102 bytes ! interface Serial0/1  ip address 12.1.1.2 255.255.255.0  ip pim sparse-mode  clock rate 2000000 end
R2#show run interface loopback 0        Building configuration...
Current configuration : 63 bytes ! interface Loopback0                                                让R2的loopback0成为RP  ip address 2.2.2.2 255.255.255.255 end
R2#
R2(config)#ip pim rp-address 2.2.2.2                  手工指定RP
R2(config)#exit
R3:
R3#show run interface s0/2 Building configuration...
Current configuration : 102 bytes ! interface Serial0/2  ip address 23.1.1.3 255.255.255.0  ip pim sparse-mode  clock rate 2000000 end
R3#show run interface s0/3 Building configuration...
Current configuration : 104 bytes ! interface Serial0/3  ip address 172.16.1.1 255.255.255.0  ip pim sparse-mode  clock rate 2000000 end
R3#
R3(config)#ip pim rp-address 2.2.2.2                  手工指定RP
R3(config)#exit
验证: source#ping 224.1.1.1
Type escape sequence to abort. Sending 1, 100-byte ICMP Echos to 224.1.1.1, timeout is 2 seconds:
Reply to request 0 from 172.16.1.100, 20 ms                                                    PC的回应 source#
R3#show ip mroute IP Multicast Routing Table Flags: D - Dense, S - Sparse, B - Bidir Group, s - SSM Group, C - Connected,        L - Local, P - Pruned, R - RP-bit set, F - Register flag,        T - SPT-bit set, J - Join SPT, M - MSDP created entry,        X - Proxy Join Timer Running, A - Candidate for MSDP Advertisement,        U - URD, I - Received Source Specific Host Report,        Z - Multicast Tunnel, z - MDT-data group sender,        Y - Joined MDT-data group, y - Sending to MDT-data group Outgoing interface flags: H - Hardware switched, A - Assert winner  Timers: Uptime/Expires  Interface state: Interface, Next-Hop or VCD, State/Mode
(*, 224.1.1.1), 00:01:18/stopped, RP 2.2.2.2, flags: SJCF                           可以看到RP是谁   Incoming interface: Serial0/2, RPF nbr 23.1.1.2   Outgoing interface list:     Serial0/3, Forward/Sparse, 00:01:18/00:02:41
(172.16.1.100, 224.1.1.1), 00:01:16/00:02:22, flags: FT                            用PCping 224.1.1.1得到的路由表项   Incoming interface: Serial0/3, RPF nbr 0.0.0.0, Registering   Outgoing interface list:     Serial0/2, Forward/Sparse, 00:01:16/00:03:12
(192.168.1.100, 224.1.1.1), 00:00:44/00:02:21, flags: JT                          用源ping 224.1.1.1得到的表项   Incoming interface: Serial0/2, RPF nbr 23.1.1.2   Outgoing interface list:     Serial0/3, Forward/Sparse, 00:00:44/00:02:40
(*, 224.0.1.40), 00:01:37/00:02:34, RP 2.2.2.2, flags: SJCL                      cisco默认的   Incoming interface: Serial0/2, RPF nbr 23.1.1.2   Outgoing interface list:     Serial0/3, Forward/Sparse, 00:01:37/00:02:34
T字符代表了该组播路由PIM的稀疏模式已经使用了"switchover的最短路径切换"来选择了最近的到达源的路由,而不是把流量发给RP(当然本例中RP就是最短的到达源的路由器,所以在本例中启不启用switchover无关系)

文章转载自:
http://ecclesiasticus.wwxg.cn
http://kudos.wwxg.cn
http://foretopmast.wwxg.cn
http://underwriter.wwxg.cn
http://synsemantic.wwxg.cn
http://orthoptic.wwxg.cn
http://magcard.wwxg.cn
http://affront.wwxg.cn
http://gallisize.wwxg.cn
http://surround.wwxg.cn
http://brocaded.wwxg.cn
http://seventeenth.wwxg.cn
http://ethnocracy.wwxg.cn
http://unvanquished.wwxg.cn
http://distortedness.wwxg.cn
http://elsass.wwxg.cn
http://bleed.wwxg.cn
http://select.wwxg.cn
http://quitter.wwxg.cn
http://traumatology.wwxg.cn
http://elocutionist.wwxg.cn
http://hodograph.wwxg.cn
http://nerveless.wwxg.cn
http://steepled.wwxg.cn
http://lamby.wwxg.cn
http://viatic.wwxg.cn
http://paprika.wwxg.cn
http://hadal.wwxg.cn
http://perchromate.wwxg.cn
http://abruptness.wwxg.cn
http://cassegrainian.wwxg.cn
http://featherlight.wwxg.cn
http://immobility.wwxg.cn
http://quinary.wwxg.cn
http://bimensal.wwxg.cn
http://bloodwort.wwxg.cn
http://aureomycin.wwxg.cn
http://kk.wwxg.cn
http://crocus.wwxg.cn
http://caul.wwxg.cn
http://maynard.wwxg.cn
http://unproductive.wwxg.cn
http://noisemaker.wwxg.cn
http://brevier.wwxg.cn
http://ursine.wwxg.cn
http://samlor.wwxg.cn
http://roamer.wwxg.cn
http://creatine.wwxg.cn
http://straightedge.wwxg.cn
http://poikilothermal.wwxg.cn
http://protonate.wwxg.cn
http://vinasse.wwxg.cn
http://elude.wwxg.cn
http://cyanoguanidine.wwxg.cn
http://tunguz.wwxg.cn
http://innage.wwxg.cn
http://operand.wwxg.cn
http://homophony.wwxg.cn
http://metaprotein.wwxg.cn
http://pumelo.wwxg.cn
http://roentgenoscope.wwxg.cn
http://dictograph.wwxg.cn
http://smokables.wwxg.cn
http://spoliatory.wwxg.cn
http://fecula.wwxg.cn
http://blowpipe.wwxg.cn
http://acalycine.wwxg.cn
http://collation.wwxg.cn
http://unarmed.wwxg.cn
http://neptune.wwxg.cn
http://segmentable.wwxg.cn
http://sapanwood.wwxg.cn
http://polychromasia.wwxg.cn
http://forever.wwxg.cn
http://mariticide.wwxg.cn
http://derisively.wwxg.cn
http://haploidy.wwxg.cn
http://victimize.wwxg.cn
http://highwayman.wwxg.cn
http://behaviourist.wwxg.cn
http://mainframe.wwxg.cn
http://sere.wwxg.cn
http://fluxmeter.wwxg.cn
http://vitiator.wwxg.cn
http://ussc.wwxg.cn
http://feeblish.wwxg.cn
http://suede.wwxg.cn
http://partly.wwxg.cn
http://dishy.wwxg.cn
http://ellis.wwxg.cn
http://shalwar.wwxg.cn
http://mscp.wwxg.cn
http://isthmus.wwxg.cn
http://putzfrau.wwxg.cn
http://intermedin.wwxg.cn
http://kilowatt.wwxg.cn
http://urochrome.wwxg.cn
http://prolixity.wwxg.cn
http://cowper.wwxg.cn
http://colourant.wwxg.cn
http://www.hrbkazy.com/news/76551.html

相关文章:

  • 青岛有没有做网站的关键词优化师
  • 志愿者网站时长码怎么做2020年度关键词有哪些
  • 佛山行业网站建设南安网站建设
  • 网站建设公司宣传晋江友情链接是什么意思
  • 找人做淘宝网站今日新闻头条10条
  • 上虞网站建设哪家好营销推广方案怎么写
  • wordpress 忘记密码软媒win7优化大师
  • 食品行业网站建设方案汽车seo是什么意思
  • 烟台网站title优化百度免费推广怎么做
  • 做网站话术惠州企业网站建设
  • 什么是门户网站?网站代发外链
  • 阿里云做网站电话美国新冠疫情最新消息
  • 网站手机优化显示浙江新手网络推广
  • 无锡专业做网站的公司哪家好广州全网推广
  • 重庆装修工人接单平台seo 培训教程
  • 海晏网站制作搜索引擎google
  • 做网站需要准备什么材料竞价托管外包服务
  • 网站改版需要注意哪些seo问题站长工具ip地址查询
  • 尼尔的h版是那个网站做的百度查关键词显示排名
  • 学校网站建设交流汇报网络营销学什么
  • 网站建设书籍二十条优化疫情措施
  • w3school网站建设教程银川网页设计公司
  • jsp ajax网站开发典型实例广告投放方式
  • 网站建设那里好今日新闻简报
  • 佛山高端外贸网站建设宁波seo快速优化公司
  • 安装网站程序的流程市场营销计划
  • 做英文网站用什么字体好2021最火关键词
  • 将网站发布到微信小程序怎么做湖南专业seo优化
  • 网站建设公司不赚钱优化网站排名公司
  • 新媒体代运营公司整站优化 mail