cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
476
Views
0
Helpful
3
Replies

Bandwidth Management

Codess
Level 1
Level 1

Hi,  I have the CISCO 1900 series router. I am running 10 meg but my network is really slow because of media streaming by users (200 plus). Is there a way to restrict or even block some websites like youtube so as to limit media streaming using my router so as to save bandwidth? 

3 Replies 3

Joseph W. Doherty
Hall of Fame
Hall of Fame
Yes and no.

You can selectively rate limit or block specific traffic. However, especially when rate limiting, you can encounter the situation where inbound traffic (from the Internet) doesn't slow when it's limited. If not, it can still saturate you Internet link's inbound bandwidth. Fortunately though, most traffic will slow itself when it detects packet loss.

Hello


@Codess wrote:

Hi,  I have the CISCO 1900 series router. I am running 10 meg but my network is really slow because of media streaming by users (200 plus). Is there a way to restrict or even block some websites like youtube so as to limit media streaming using my router so as to save bandwidth? 


You can apply a simple MOC policy to negate or restrict certain web sites and at the same time shape you wan Committed Information Rate

 

If you need to amend anything you just need to create additional class-maps and add those to the child policy-map (in this example will be URL_pm)  and set an action you wish to take

Example:
class-map match-any URL_cm
match protocol http url "www.youtube.com"

policy-map URL_pm
class URL_cm
drop
class class-default
fair queue


policy-map WAN
class class-default
shape average 20480000
service-policy URL_pm

interface x/x
Description WAN interface
service-policy output WAN


Please rate and mark as an accepted solution if you have found any of the information provided useful.
This then could assist others on these forums to find a valuable answer and broadens the community’s global network.

Kind Regards
Paul

The best way to do this is by using( NBAR) , Network Based Application Recognition to filter by traffic types.

Here is a sample of the template that you can use.

Create class map:

class-map match-any BLOCK_GUEST_CM
match protocol youtube
match protocol netflix
match protocol hulu
match protocol tor

Apply class map to a policy map:
policy-map BLOCK_GUEST_PM
class BLOCK_GUEST_CM
drop

Apply policy map to an interface:
interface XX
service-policy input BLOCK_GUEST_PM

 

****PLEASE REMEMBER TO RATE EACH POST****

P.Williams