亚洲欧美精品沙发,日韩在线精品视频,亚洲Av每日更新在线观看,亚洲国产另类一区在线5

<pre id="hdphd"></pre>

  • <div id="hdphd"><small id="hdphd"></small></div>
      學(xué)習(xí)啦>學(xué)習(xí)電腦>網(wǎng)絡(luò)知識>路由器>路由器設(shè)置>cisco思科>

      cisco限速be

      時間: 春健736 分享

        cisco限速be?怎么設(shè)置?最近有網(wǎng)友這樣問小編。學(xué)習(xí)啦小編去網(wǎng)上搜索了相關(guān)資料,給大家奉上,希望大家喜歡。

        Bc、Be分別是什么意思?如何選擇Bc和Be?

        不同于Shaper,Policer不會緩存“超額”的Packet并在稍后進(jìn)行轉(zhuǎn)發(fā)。Policer只會執(zhí)行簡單判斷——轉(zhuǎn)發(fā)或不轉(zhuǎn)發(fā)。由于Policer沒有緩存機(jī)制,最好的操作是配置適當(dāng)?shù)?ldquo;extended burst(Be)”,避免過于“激烈”的丟包。因此,需要了解Bc和Be值的意義,并保證數(shù)據(jù)速率能達(dá)到配置的CIR(如果Burst值太低,可能會使實際速率遠(yuǎn)低于設(shè)置的CIR)。根據(jù)Router的一般緩存規(guī)則,可以大致確定Burst參數(shù)。建議將Bc設(shè)置為【RTT*速率】,以便在擁塞時,可以容納所有正在使用的的TCP連接的窗口。

        cisco官方推薦公式:

        Bc(Byte) = CIR(bps) x 1.5 (s) / 8

        *1.5秒是典型的RTT值

        Be(Byte) =

        2 x

        Bc(Byte)

        cisco路由器怎么針對某些ip限制速度

        1、設(shè)置ACL

        access-list 102 permit ip host 192.168.10.2 any

        access-list 102 permit ip any host 192.168.10.2

        access-list 103 permit ip host 192.168.10.3 any

        access-list 103 permit ip any host 192.168.10.3

        2、定義類

        class-map match-all 102

        match access-group 102

        class-map match-all 103

        match access-group 103

        3、將類加入策略中

        policy-map xiansu

        class 102

        police 1024000 128000 conform-action transmit exceed-action drop

        class 103

        police 1024000 128000 conform-action transmit exceed-action drop

        4、將策略加入端口中

        interface FastEthernet0/0

        service-policy input xiansutest

        service-policy output xiansutest

        針對某個網(wǎng)段進(jìn)行限速(限定的是總帶寬)

        (1)設(shè)置ACL

        access-list 110 permit ip 192.168.10.0 0.0.0.255 any

        access-list 102 permit ip any 192.168.10.0 0.0.0.255

        (2)定義類

        class-map match-all 110

        match access-group 110

        (3)設(shè)置策略

        policy-map xiansu110

        class 110

        police 10240000 1280000 conform-action transmit exceed-action drop

        (4)將策略加入端口

        interface FastEthernet0/0

        service-policy input xiansu110

        service-policy output xiansu110

        以上內(nèi)容來源互聯(lián)網(wǎng),希望對大家有所幫助。

      554489