Bandwidth - RateLimit command
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2009 01:59 AM - edited 03-06-2019 08:20 AM
Hi All, Are the commands different for restricting bandwidth on Switch interface for Cisco2960 and cisco3560.
Wanna limit interface fa0/9 to 2MB
- Labels:
-
Other Switching
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2009 05:25 AM
Hello Saquid,
config guide is here
see
or
Hope to help
Giuseppe
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2009 07:09 AM
Hi Saquib. You could use a policy map to do this.
ip access-list extended ALL_TRAFFIC
permit ip any any
!
class-map match-all ALL_IP
match access-group name ALL_TRAFFIC
!
policy-map 2MB_LIMIT
class ALL_IP
police 2000000 50000 exceed-action drop
!
interface FastEthernet0/9
service-policy input 2MB_LIMIT
Thanks
Dan.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2009 08:14 AM
what does 50000 refers in command " police 2000000 50000 exceed-action drop
!
"
Looking similar with Rate-Limit for Cisco 2960 Switch
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2009 08:18 AM
Its the burst value.
