0

I have a router with several workstations running on the switched ports. I need to limit their WAN bandwidth. I tried to use rate-limit on Vlan1, but it looks like it had no effect. What is the easiest way to achieve this? I am not very good at cisco configuration.

Hivemaster
  • 101
  • 4
  • Add information about image which used on your router(it's looks like this example: c880data-universalk9-mz.150-1.M7) Also better to ask this kind of questions on https://networkengineering.stackexchange.com/ – Ivan Gurzhiy Mar 05 '19 at 09:28
  • @IvanGurzhiy c800-universalk9-mz.SPA.154-3.M.bin I thought about it, but I was afraid that my question was too simple for networkengineering. – Hivemaster Mar 05 '19 at 11:15

1 Answers1

0
policy-map POLICEALL
 class class-default
   police rate 256k

interface Vlan1
 service-policy input POLICEALL
 service-policy output POLICEALL

source

Hivemaster
  • 101
  • 4