10-12-2019 02:15 AM
Hi,
Is There a Way To Specify Different Bandwidth Size Of Sub-Interfaces, For Example:
If I Had A G0/0 Interface, And I Created 3 Sub-Interfaces G0/0.1, G0/0.2, & G0/0.3. Is There a Way That I Can Manage The Bandwidth So That G0/0.1 = 600Mbps, G0/0.2 & G0/0.3 = 200Mbps Each?
Solved! Go to Solution.
10-12-2019 06:07 AM
Hello,
if you use shaping, the below should work:
policy-map GIG_01
class class-default
shape average 600000000
!
policy-map GIG_02
class class-default
shape average 200000000
!
policy-map GIG_02
class class-default
shape average 200000000
!
interface GigabitEthernet0/0.1
service-policy output GIG_01
!
interface GigabitEthernet0/0.2
service-policy output GIG_02
!
interface GigabitEthernet0/0.3
service-policy output GIG_03
10-12-2019 06:07 AM
Hello,
if you use shaping, the below should work:
policy-map GIG_01
class class-default
shape average 600000000
!
policy-map GIG_02
class class-default
shape average 200000000
!
policy-map GIG_02
class class-default
shape average 200000000
!
interface GigabitEthernet0/0.1
service-policy output GIG_01
!
interface GigabitEthernet0/0.2
service-policy output GIG_02
!
interface GigabitEthernet0/0.3
service-policy output GIG_03
10-12-2019 08:08 AM
Thank You Very Much, You've Answered My Question And Gave Something New To Read About Which Is (Shaping)
10-12-2019 10:09 AM
Hello,
on a side note, you want to use shaping as much as possible, and avoid policing and rate limiting whenever possible. Shaping, as the name implies, as opposed to policing, where excess traffic is just dropped, retains excess traffic and reschedules it for transmission at a later time (milliseconds that is).
Have a look at the document below:
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide