cancel
Showing results for 
Search instead for 
Did you mean: 

Traffic Shaping configuration

Traffic Shaping configuration

Leonardo_Falcon
New Contributor II
Helllo people,
I have a problem with a Traffic Shaping configuration.
The situation is this:
I have three branch site and there are some servers that communicate between them and they saturate the WAN bandwidth.
I'd like configure the traffic shaping for limiting the bandwidth between their IP.
I have done this configuration:

------------------------------------------------------------------------------------------
create qosprofile qp2
configure qosprofile qp2 peak_rate 15 M ports 8:3

edit policy Traffic_Shaping_MAN

entry rule1 {
if match all{
source-address 10.19.2.201/32;
destination-address 10.0.1.208/32;
}
then {
qosprofile qp2;
}
}
entry rule2 {
if match all {
source-address 10.19.2.201/32;
destination-address 10.0.18.209/32;
}
then {
qosprofile qp2;
}
}

conf access-list Traffic_Shaping_MAN port 8:3 egress
-----------------------------------------------------------------------------------------------
This night I have noticed that the situation is not resolved.
Can you help me with the configuration?
Thank you
Leonardo
8 REPLIES 8

Jarek
New Contributor II
Hi,

you can try this:

create and confgure a meter name limit_10M

example ACL on ingress port:

entry vlan132_meter { if match all {
vlan-id 132 ;
source-address 10.19.2.201/32 ;
destination-address 10.0.18.209/32 ;
} then {
meter limit_10M ;
} }

--
Jarek

Leonardo_Falcon
New Contributor II
In this article you can find one configuration of traffic shaping in egress direction using the acl filter such as the mine.
https://gtacknowledge.extremenetworks.com/articles/How_To/How-to-configure-basic-rate-limiting-on-a-...
The only question is " if I must configure the acl in VLAN or in the physical interface"
The interface 8:43 is a trunk and there are two VLAN, WANDati and WANVoce.
Thank a lot

Nick_Yakimenko
New Contributor II
traffic shaping via qos works only at L3 (if it passes your extreme as a gateway) traffic between your ip-s flows directly between servers

Yes, the extreme are the Gateway.
The wan is configured as a SVI.
Is more correct that I configure the acl over the physical interface or over the VLAN?
Now is over the physical interface.
Thank you.
GTM-P2G8KFN