{"id":19189,"date":"2022-06-23T10:10:00","date_gmt":"2022-06-23T10:10:00","guid":{"rendered":"https:\/\/made4it.com.br\/blog\/selective-bandwidth-control-in-huawei-router\/"},"modified":"2026-07-01T15:15:12","modified_gmt":"2026-07-01T15:15:12","slug":"selective-bandwidth-control-in-huawei-router","status":"publish","type":"post","link":"https:\/\/made4it.com.br\/en\/blog\/selective-bandwidth-control-in-huawei-router\/","title":{"rendered":"Selective Bandwidth Control in Huawei Router"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Hello, my name is Gabriel Henrique. I&#8217;m a network analyst here at Made4it, and today I&#8217;m going to show you how to configure selective bandwidth control for access-layer users on Huawei NE series routers.<\/p>\n\n<p class=\"wp-block-paragraph\">Selective bandwidth control opens up the possibility of new products or the improvement, increment or &#8220;charm&#8221; in the delivery of the service to the end user being a very interesting differential, especially for ISPs that have local CDN.<\/p>\n\n<p class=\"wp-block-paragraph\"><br\/>But, after all, what is selective band control all about?<\/p>\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/www.made4it.com.br\/wp-content\/uploads\/2022\/06\/0001-scaled.jpg\"><img decoding=\"async\" src=\"https:\/\/www.made4it.com.br\/wp-content\/uploads\/2022\/06\/0001.jpg\" alt=\"\" class=\"wp-image-2218\"\/><\/a><\/figure>\n\n<p class=\"wp-block-paragraph\">Typically, in BNG\/BRAS\/PPPoE Server implementations, it is common to have global bandwidth control (from the user\u2019s perspective), in which all content is limited by the value of the subscribed plan. With selective bandwidth control, you can assign different bandwidth limits to different services; for example, you can assign a bandwidth limit of &#8220;X&#8221; to your local CDN content, \u201cy\u201d to traffic within your network, and \u201cz\u201d when the source or destination of the traffic is external (links, transit, peering, IX\/PTT, PNI, transport, etc.), We can say that we implement selective QoS or that we specifically control how much bandwidth is allocated per content type; alternatively, it could be said that we can remove bandwidth control from the CDN or implement selective PBR. <\/p>\n\n<p class=\"wp-block-paragraph\">Anyway, enough talk, let&#8217;s get to the cool part \ud83d\ude42<\/p>\n\n<p class=\"wp-block-paragraph\">In our test scenario, we have:<\/p>\n\n<p class=\"wp-block-paragraph\">&#8211; Customers with a 100 Mbps plan <br\/>&#8211; Need to allow up to 500 Mbps when the source\/destination is a local CDN <br\/>&#8211; Need to maintain 100 Mbps when the source\/destination is not a local CDN<br\/>&#8211; Local CDNs are addressed with 192.0.2.0\/24 and 2001:DB8::\/64<\/p>\n\n<p class=\"wp-block-paragraph\">Prerequisites:<\/p>\n\n<p class=\"wp-block-paragraph\">&#8211; ERP\/RADIUS with support for the &#8220;Huawei-Policy-Name&#8221; AVP<br\/>&#8211; Client authentication domain with a declared \u201cuser-group\u201d (If you don\u2019t know what a user-group is, stay tuned to the Made blog\u2014there\u2019ll be a post about firewalls coming up soon that will explain exactly what it\u2019s all about \ud83d\ude09<\/p>\n\n<p class=\"wp-block-paragraph\">Step 1: Configure, in the system-view, the necessary Radius parameters and activate the &#8220;Value Added Service&#8221; function in the router.<\/p>\n<p>[code]<br \/>\nsystem-view<br \/>\nradius-server coa-request hw-policy-name daa same-policy reply-ack<br \/>\nradius-server coa-request hw-policy-name daa coexist-with-user<br \/>\nvalue-added-service enable<br \/>\n[\/code]<\/p>\n\n<p class=\"wp-block-paragraph\"><br\/>Step 2: In the Radius-group used for authentication, enable value-added-service accounting support<\/p>\n<p>[code]<br \/>\nsystem-view<br \/>\naaa<br \/>\ndomain made4it<br \/>\nvalue-added-service account-type radius made4it<br \/>\n[\/code]<\/p>\n\n<p class=\"wp-block-paragraph\"><br\/>Step 3: Configure access ACLs delimiting CDN traffic and general traffic<\/p>\n<p>[code]<br \/>\nsystem-view<br \/>\nacl number 7000<br \/>\ndescription CDN<br \/>\nrule 10 permit ip source user-group any destination ip-address 192.0.2.0 0.0.0.255<br \/>\nrule 11 permit ip source ip-address 192.0.2.0 0.0.0.255 destination user-group any<br \/>\n#<br \/>\nacl number 7001<br \/>\ndescription GERAL<br \/>\nrule 10 permit ip source user-group any destination ip-address any<br \/>\nrule 11 permit ip source ip-address any destination user-group any<\/p>\n<p>acl ipv6 number 7002<br \/>\ndescription CDN PILOTO 500MBPS IPv6<br \/>\nrule 10 permit ipv6 source user-group any destination ipv6-address 2001:DB8::\/64<br \/>\nrule 11 permit ipv6 source ipv6-address 2001:DB8::\/64 destination user-group any<br \/>\n#<br \/>\nacl ipv6 number 7003<br \/>\ndescription GERAL PILOTO 100MBPS<br \/>\nrule 10 permit ipv6 source user-group any destination ipv6-address any<br \/>\nrule 11 permit ipv6 source ipv6-address any destination user-group any<br \/>\n[\/code]<\/p>\n\n<p class=\"wp-block-paragraph\">Step 4: Configure &#8220;classifiers&#8221; to classify traffic from ACLs<\/p>\n<p>[code]<br \/>\nsystem-view<br \/>\ntraffic classifier tc1 operator or<br \/>\nif-match acl 7000<br \/>\nif-match ipv6 acl 7002<br \/>\n#<br \/>\ntraffic classifier tc8 operator or<br \/>\nif-match acl 7001<br \/>\nif-match ipv6 acl 7003<br \/>\n[\/code]<\/p>\n\n<p class=\"wp-block-paragraph\"><br\/>Step 5: Configure the behaviors we will use to identify each of the classifiers<\/p>\n<p>[code]<br \/>\nsystem-view<br \/>\ntraffic behavior tb1<br \/>\ncar<br \/>\ntariff-level 1<br \/>\ntraffic-statistic<br \/>\n#<br \/>\ntraffic behavior tb8<br \/>\ncar<br \/>\ntariff-level 8<br \/>\ntraffic-statistic<br \/>\n#<br \/>\n[\/code]<\/p>\n\n<p class=\"wp-block-paragraph\">Step 6: Configure the traffic-policy that will be linked globally, containing the previously configured classifier and behavior, effecting the differentiated classification of the flows<\/p>\n<p>[code]<br \/>\nsystem-view<br \/>\ntraffic policy DAA_1<br \/>\nshare-mode<br \/>\nclassifier tc1 behavior tb1 precedence 1<br \/>\nclassifier tc8 behavior tb8 precedence 8<br \/>\n#<br \/>\n[\/code]<\/p>\n\n<p class=\"wp-block-paragraph\"><br\/>Step 7: Apply the traffic-policy globally.<\/p>\n<p>[code]<br \/>\nsystem-view<br \/>\naccounting-service-policy DAA_1<br \/>\n[\/code]<\/p>\n\n<p class=\"wp-block-paragraph\"><br\/>Step 8: Configure the qos-profiles that will delimit the bandwidth of the respective contents<\/p>\n<p>[code]<br \/>\nsystem-view<br \/>\nqos-profile 100M<br \/>\ncar cir 103424 cbs 18700000 green pass red discard inbound<br \/>\ncar cir 103424 cbs 18700000 green pass red discard outbound<br \/>\nqos-profile 500M<br \/>\ncar cir 512000 cbs 18700000 green pass red discard inbound<br \/>\ncar cir 512000 cbs 18700000 green pass red discard outbound<br \/>\n[\/code]<\/p>\n\n<p class=\"wp-block-paragraph\"><br\/>Step 9: Configure the policy that will control the client&#8217;s bandwidth<\/p>\n<p>[code]<br \/>\nsystem-view<br \/>\nvalue-added-service policy 100m daa<br \/>\naccounting-scheme made4it<br \/>\nuser-group made4it<br \/>\ntariff-level 1 qos-profile 500M<br \/>\ntariff-level 8 qos-profile 100M<br \/>\n[\/code]<\/p>\n\n<p class=\"wp-block-paragraph\"><br\/>Ready. Now, ERP\/Radius just needs to deliver the AVP Huawei-Policy-Name := 150m to the customer, and the customer will have bandwidth control limiting up to 500Mbps when the origin\/destination are the local CDNs, and up to 100Mbps for the other origins \/destinations.  <br\/>Please note that if the ERP\/Radius provides the Huawei-Input-Average-Rate, the BRAS\/BNG will use it by default and will not apply the policy name!<\/p>\n\n<p class=\"wp-block-paragraph\">The traffic-policy allows up to 8 &#8220;tariff-levels&#8221; where you can classify your traffic into up to 8 service types and apply different bandwidth controls for each of them.<\/p>\n\n<p class=\"wp-block-paragraph\">In this example, if you want to configure differentiated bandwidth control for other plans, simply create new &#8220;qos-profile&#8221; and &#8220;value-added-service policy&#8221; entries with the values you want to apply, since CDN and general traffic are already classified into distinct &#8220;tariff-levels.&#8221;<\/p>\n\n<p class=\"wp-block-paragraph\"><br\/>That&#8217;s it\u2014see you next time! If you have any questions about how to implement this configuration on your network, <a href=\"https:\/\/made4it.com.br\/en\/contact\/\" class=\"rank-math-link\">please contact us and speak with one of our experts. <\/a>  <\/p>\n","protected":false},"excerpt":{"rendered":"<p>Hello, my name is Gabriel Henrique. I&#8217;m a network analyst here at Made4it, and today I&#8217;m going to show you how to configure selective bandwidth control for access-layer users on Huawei NE series routers. Selective bandwidth control opens up the possibility of new products or the improvement, increment or &#8220;charm&#8221; in the delivery of the service to the end user being a very interesting differential, especially for ISPs that have local CDN. But, after all, what is selective band control all about? Typically, in BNG\/BRAS\/PPPoE Server implementations, it is common to have global bandwidth control (from the user\u2019s perspective), in which all content is limited by the value of the subscribed plan. With selective bandwidth control, you can assign different bandwidth limits to different services; for example, you can assign a bandwidth limit of &#8220;X&#8221; to your local CDN content, \u201cy\u201d to traffic within your network, and \u201cz\u201d when the source or destination of the traffic is external (links, transit, peering, IX\/PTT, PNI, transport, etc.), We can say that we implement selective QoS or that we specifically control how much bandwidth is allocated per content type; alternatively, it could be said that we can remove bandwidth control from the CDN or implement selective PBR. Anyway, enough talk, let&#8217;s get to the cool part \ud83d\ude42 In our test scenario, we have: &#8211; Customers with a 100 Mbps plan &#8211; Need to allow up to 500 Mbps when the source\/destination is a local CDN &#8211; Need to maintain 100 Mbps when the source\/destination is not a local CDN&#8211; Local CDNs are addressed with 192.0.2.0\/24 and 2001:DB8::\/64 Prerequisites: &#8211; ERP\/RADIUS with support for the &#8220;Huawei-Policy-Name&#8221; AVP&#8211; Client authentication domain with a declared \u201cuser-group\u201d (If you don\u2019t know what a user-group is, stay tuned to the Made blog\u2014there\u2019ll be a post about firewalls coming up soon that will explain exactly what it\u2019s all about \ud83d\ude09 Step 1: Configure, in the system-view, the necessary Radius parameters and activate the &#8220;Value Added Service&#8221; function in the router. Step 2: In the Radius-group used for authentication, enable value-added-service accounting support Step 3: Configure access ACLs delimiting CDN traffic and general traffic Step 4: Configure &#8220;classifiers&#8221; to classify traffic from ACLs Step 5: Configure the behaviors we will use to identify each of the classifiers Step 6: Configure the traffic-policy that will be linked globally, containing the previously configured classifier and behavior, effecting the differentiated classification of the flows Step 7: Apply the traffic-policy globally. Step 8: Configure the qos-profiles that will delimit the bandwidth of the respective contents Step 9: Configure the policy that will control the client&#8217;s bandwidth Ready. Now, ERP\/Radius just needs to deliver the AVP Huawei-Policy-Name := 150m to the customer, and the customer will have bandwidth control limiting up to 500Mbps when the origin\/destination are the local CDNs, and up to 100Mbps for the other origins \/destinations. Please note that if the ERP\/Radius provides the Huawei-Input-Average-Rate, the BRAS\/BNG will use it by default and will not apply the policy name! The traffic-policy allows up to 8 &#8220;tariff-levels&#8221; where you can classify your traffic into up to 8 service types and apply different bandwidth controls for each of them. In this example, if you want to configure differentiated bandwidth control for other plans, simply create new &#8220;qos-profile&#8221; and &#8220;value-added-service policy&#8221; entries with the values you want to apply, since CDN and general traffic are already classified into distinct &#8220;tariff-levels.&#8221; That&#8217;s it\u2014see you next time! If you have any questions about how to implement this configuration on your network, please contact us and speak with one of our experts.<\/p>\n","protected":false},"author":5,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[31],"tags":[],"class_list":["post-19189","post","type-post","status-publish","format-standard","hentry","category-nao-categorizado"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.9 - aioseo.com -->\n\t<meta name=\"description\" content=\"Hello, my name is Gabriel Henrique. I&#039;m a network analyst here at Made4it, and today I&#039;m going to show you how to configure selective bandwidth control for access-layer users on Huawei NE series routers. Selective bandwidth control opens up the possibility of new products or the improvement, increment or &quot;charm&quot; in the delivery of the\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Made4it\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/made4it.com.br\/en\/blog\/selective-bandwidth-control-in-huawei-router\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.9\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Made4it -\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Selective Bandwidth Control in Huawei Router - Made4it\" \/>\n\t\t<meta property=\"og:description\" content=\"Hello, my name is Gabriel Henrique. I&#039;m a network analyst here at Made4it, and today I&#039;m going to show you how to configure selective bandwidth control for access-layer users on Huawei NE series routers. Selective bandwidth control opens up the possibility of new products or the improvement, increment or &quot;charm&quot; in the delivery of the\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/made4it.com.br\/en\/blog\/selective-bandwidth-control-in-huawei-router\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/made4it.com.br\/wp-content\/uploads\/2025\/09\/logomade4it.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/made4it.com.br\/wp-content\/uploads\/2025\/09\/logomade4it.png\" \/>\n\t\t<meta property=\"og:image:width\" content=\"87\" \/>\n\t\t<meta property=\"og:image:height\" content=\"27\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2022-06-23T10:10:00+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2026-07-01T15:15:12+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Selective Bandwidth Control in Huawei Router - Made4it\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Hello, my name is Gabriel Henrique. I&#039;m a network analyst here at Made4it, and today I&#039;m going to show you how to configure selective bandwidth control for access-layer users on Huawei NE series routers. Selective bandwidth control opens up the possibility of new products or the improvement, increment or &quot;charm&quot; in the delivery of the\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/made4it.com.br\/wp-content\/uploads\/2025\/09\/logomade4it.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/selective-bandwidth-control-in-huawei-router\\\/#blogposting\",\"name\":\"Selective Bandwidth Control in Huawei Router - Made4it\",\"headline\":\"Selective Bandwidth Control in Huawei Router\",\"author\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/author\\\/made4it\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.made4it.com.br\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/0001.jpg\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/selective-bandwidth-control-in-huawei-router\\\/#articleImage\"},\"datePublished\":\"2022-06-23T10:10:00+00:00\",\"dateModified\":\"2026-07-01T15:15:12+00:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/selective-bandwidth-control-in-huawei-router\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/selective-bandwidth-control-in-huawei-router\\\/#webpage\"},\"articleSection\":\"N\\u00e3o categorizado\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/selective-bandwidth-control-in-huawei-router\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/category\\\/nao-categorizado\\\/#listItem\",\"name\":\"N\\u00e3o categorizado\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/category\\\/nao-categorizado\\\/#listItem\",\"position\":2,\"name\":\"N\\u00e3o categorizado\",\"item\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/category\\\/nao-categorizado\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/selective-bandwidth-control-in-huawei-router\\\/#listItem\",\"name\":\"Selective Bandwidth Control in Huawei Router\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/selective-bandwidth-control-in-huawei-router\\\/#listItem\",\"position\":3,\"name\":\"Selective Bandwidth Control in Huawei Router\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/category\\\/nao-categorizado\\\/#listItem\",\"name\":\"N\\u00e3o categorizado\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/#organization\",\"name\":\"Made4it\",\"url\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/made4it.com.br\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/logomade4it.png\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/selective-bandwidth-control-in-huawei-router\\\/#organizationLogo\",\"width\":87,\"height\":27},\"image\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/selective-bandwidth-control-in-huawei-router\\\/#organizationLogo\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/author\\\/made4it\\\/#author\",\"url\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/author\\\/made4it\\\/\",\"name\":\"Made4it\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/selective-bandwidth-control-in-huawei-router\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9e851ee58f38006902829c03b2dc8e42c8a735a5561b807ca366ed66bd41f2ca?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Made4it\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/selective-bandwidth-control-in-huawei-router\\\/#webpage\",\"url\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/selective-bandwidth-control-in-huawei-router\\\/\",\"name\":\"Selective Bandwidth Control in Huawei Router - Made4it\",\"description\":\"Hello, my name is Gabriel Henrique. I'm a network analyst here at Made4it, and today I'm going to show you how to configure selective bandwidth control for access-layer users on Huawei NE series routers. Selective bandwidth control opens up the possibility of new products or the improvement, increment or \\\"charm\\\" in the delivery of the\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/selective-bandwidth-control-in-huawei-router\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/author\\\/made4it\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/blog\\\/author\\\/made4it\\\/#author\"},\"datePublished\":\"2022-06-23T10:10:00+00:00\",\"dateModified\":\"2026-07-01T15:15:12+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/\",\"name\":\"Made4it\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/made4it.com.br\\\/en\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Selective Bandwidth Control in Huawei Router - Made4it","description":"Hello, my name is Gabriel Henrique. I'm a network analyst here at Made4it, and today I'm going to show you how to configure selective bandwidth control for access-layer users on Huawei NE series routers. Selective bandwidth control opens up the possibility of new products or the improvement, increment or \"charm\" in the delivery of the","canonical_url":"https:\/\/made4it.com.br\/en\/blog\/selective-bandwidth-control-in-huawei-router\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/made4it.com.br\/en\/blog\/selective-bandwidth-control-in-huawei-router\/#blogposting","name":"Selective Bandwidth Control in Huawei Router - Made4it","headline":"Selective Bandwidth Control in Huawei Router","author":{"@id":"https:\/\/made4it.com.br\/en\/blog\/author\/made4it\/#author"},"publisher":{"@id":"https:\/\/made4it.com.br\/en\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/www.made4it.com.br\/wp-content\/uploads\/2022\/06\/0001.jpg","@id":"https:\/\/made4it.com.br\/en\/blog\/selective-bandwidth-control-in-huawei-router\/#articleImage"},"datePublished":"2022-06-23T10:10:00+00:00","dateModified":"2026-07-01T15:15:12+00:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/made4it.com.br\/en\/blog\/selective-bandwidth-control-in-huawei-router\/#webpage"},"isPartOf":{"@id":"https:\/\/made4it.com.br\/en\/blog\/selective-bandwidth-control-in-huawei-router\/#webpage"},"articleSection":"N\u00e3o categorizado"},{"@type":"BreadcrumbList","@id":"https:\/\/made4it.com.br\/en\/blog\/selective-bandwidth-control-in-huawei-router\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/made4it.com.br\/en\/#listItem","position":1,"name":"Home","item":"https:\/\/made4it.com.br\/en\/","nextItem":{"@type":"ListItem","@id":"https:\/\/made4it.com.br\/en\/blog\/category\/nao-categorizado\/#listItem","name":"N\u00e3o categorizado"}},{"@type":"ListItem","@id":"https:\/\/made4it.com.br\/en\/blog\/category\/nao-categorizado\/#listItem","position":2,"name":"N\u00e3o categorizado","item":"https:\/\/made4it.com.br\/en\/blog\/category\/nao-categorizado\/","nextItem":{"@type":"ListItem","@id":"https:\/\/made4it.com.br\/en\/blog\/selective-bandwidth-control-in-huawei-router\/#listItem","name":"Selective Bandwidth Control in Huawei Router"},"previousItem":{"@type":"ListItem","@id":"https:\/\/made4it.com.br\/en\/#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/made4it.com.br\/en\/blog\/selective-bandwidth-control-in-huawei-router\/#listItem","position":3,"name":"Selective Bandwidth Control in Huawei Router","previousItem":{"@type":"ListItem","@id":"https:\/\/made4it.com.br\/en\/blog\/category\/nao-categorizado\/#listItem","name":"N\u00e3o categorizado"}}]},{"@type":"Organization","@id":"https:\/\/made4it.com.br\/en\/#organization","name":"Made4it","url":"https:\/\/made4it.com.br\/en\/","logo":{"@type":"ImageObject","url":"https:\/\/made4it.com.br\/wp-content\/uploads\/2025\/09\/logomade4it.png","@id":"https:\/\/made4it.com.br\/en\/blog\/selective-bandwidth-control-in-huawei-router\/#organizationLogo","width":87,"height":27},"image":{"@id":"https:\/\/made4it.com.br\/en\/blog\/selective-bandwidth-control-in-huawei-router\/#organizationLogo"}},{"@type":"Person","@id":"https:\/\/made4it.com.br\/en\/blog\/author\/made4it\/#author","url":"https:\/\/made4it.com.br\/en\/blog\/author\/made4it\/","name":"Made4it","image":{"@type":"ImageObject","@id":"https:\/\/made4it.com.br\/en\/blog\/selective-bandwidth-control-in-huawei-router\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/9e851ee58f38006902829c03b2dc8e42c8a735a5561b807ca366ed66bd41f2ca?s=96&d=mm&r=g","width":96,"height":96,"caption":"Made4it"}},{"@type":"WebPage","@id":"https:\/\/made4it.com.br\/en\/blog\/selective-bandwidth-control-in-huawei-router\/#webpage","url":"https:\/\/made4it.com.br\/en\/blog\/selective-bandwidth-control-in-huawei-router\/","name":"Selective Bandwidth Control in Huawei Router - Made4it","description":"Hello, my name is Gabriel Henrique. I'm a network analyst here at Made4it, and today I'm going to show you how to configure selective bandwidth control for access-layer users on Huawei NE series routers. Selective bandwidth control opens up the possibility of new products or the improvement, increment or \"charm\" in the delivery of the","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/made4it.com.br\/en\/#website"},"breadcrumb":{"@id":"https:\/\/made4it.com.br\/en\/blog\/selective-bandwidth-control-in-huawei-router\/#breadcrumblist"},"author":{"@id":"https:\/\/made4it.com.br\/en\/blog\/author\/made4it\/#author"},"creator":{"@id":"https:\/\/made4it.com.br\/en\/blog\/author\/made4it\/#author"},"datePublished":"2022-06-23T10:10:00+00:00","dateModified":"2026-07-01T15:15:12+00:00"},{"@type":"WebSite","@id":"https:\/\/made4it.com.br\/en\/#website","url":"https:\/\/made4it.com.br\/en\/","name":"Made4it","inLanguage":"en-US","publisher":{"@id":"https:\/\/made4it.com.br\/en\/#organization"}}]},"og:locale":"en_US","og:site_name":"Made4it -","og:type":"article","og:title":"Selective Bandwidth Control in Huawei Router - Made4it","og:description":"Hello, my name is Gabriel Henrique. I'm a network analyst here at Made4it, and today I'm going to show you how to configure selective bandwidth control for access-layer users on Huawei NE series routers. Selective bandwidth control opens up the possibility of new products or the improvement, increment or &quot;charm&quot; in the delivery of the","og:url":"https:\/\/made4it.com.br\/en\/blog\/selective-bandwidth-control-in-huawei-router\/","og:image":"https:\/\/made4it.com.br\/wp-content\/uploads\/2025\/09\/logomade4it.png","og:image:secure_url":"https:\/\/made4it.com.br\/wp-content\/uploads\/2025\/09\/logomade4it.png","og:image:width":87,"og:image:height":27,"article:published_time":"2022-06-23T10:10:00+00:00","article:modified_time":"2026-07-01T15:15:12+00:00","twitter:card":"summary_large_image","twitter:title":"Selective Bandwidth Control in Huawei Router - Made4it","twitter:description":"Hello, my name is Gabriel Henrique. I'm a network analyst here at Made4it, and today I'm going to show you how to configure selective bandwidth control for access-layer users on Huawei NE series routers. Selective bandwidth control opens up the possibility of new products or the improvement, increment or &quot;charm&quot; in the delivery of the","twitter:image":"https:\/\/made4it.com.br\/wp-content\/uploads\/2025\/09\/logomade4it.png"},"aioseo_meta_data":{"post_id":"19189","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_custom_url":null,"og_image_custom_fields":null,"og_image_url":null,"og_image_width":null,"og_image_height":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_image_url":null,"twitter_title":null,"twitter_description":null,"schema_type":"default","schema_type_options":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null,"created":"2026-07-01 15:15:09","updated":"2026-07-01 17:24:08"},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/made4it.com.br\/en\/\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/made4it.com.br\/en\/blog\/category\/nao-categorizado\/\" title=\"N\u00e3o categorizado\">N\u00e3o categorizado<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tSelective Bandwidth Control in Huawei Router\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/made4it.com.br\/en\/"},{"label":"N\u00e3o categorizado","link":"https:\/\/made4it.com.br\/en\/blog\/category\/nao-categorizado\/"},{"label":"Selective Bandwidth Control in Huawei Router","link":"https:\/\/made4it.com.br\/en\/blog\/selective-bandwidth-control-in-huawei-router\/"}],"_links":{"self":[{"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/posts\/19189","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/comments?post=19189"}],"version-history":[{"count":1,"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/posts\/19189\/revisions"}],"predecessor-version":[{"id":19191,"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/posts\/19189\/revisions\/19191"}],"wp:attachment":[{"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/media?parent=19189"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/categories?post=19189"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/made4it.com.br\/en\/wp-json\/wp\/v2\/tags?post=19189"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}