05-27-2019 06:02 AM
Hi Cisco Gurus,
I have a Cisco ISR router for my WAN connection. Here are the info:
- Router Model: Cisco ISR4331/K9
- Router Firmware: 16.3.8 [Denali] (fc3)
- Lease line bandwidth: 20Mbps
- LAN bandwidth: 1Gbps
My project requirements are:
1. Control the WAN bandwidth and only assign 5Mbps for WSUS application.
2. WSUS server is located in DC 1, where about 70 PC/Servers are located in DC2. Both DC are connected by this 20Mbps lease line
May i know can ISR 4431 router achieve the above requirement? if yes, how to do it? If no, may i know why?
Many thanks in advance.
Regards,
Justin
05-27-2019 06:15 AM
Hello Justin,
the 4331 is able to perform the required task.
To perform these traffic shaping you need hierarchical QoS
policy-map PARENT-SHAPE-20Mb
class class-default
shape average 20000000
service CHILD
!
! note <WSUS> = IP address of WSUS server
! it is not clear if the server is on local site or remote
! so I have written an ACL that can be used in both cases
access-list 101 remark traffic to/from the server
access-list 101 permit ip any host <WSUS>
access-list 101 permit ip host <WSUS> any
class-map WSUS
match ip address 101
!
policy-map CHILD
class WSUS
priority percent 25
class class-default
fair-queue
!
interface WAN
service-policy ouput PARENT-SHAPE-20Mb
! where WAN is the interface to the leased line
Hope to help
Giuseppe
05-27-2019 10:48 AM
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