MAC Based Bandwidth Limit
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
‎02-16-2015 11:35 AM
I want to make internet access policy (including bandwidth limitation). I cannot depend on username and password since it is to easy to be shared. I cannot use IP address too, since we implement DHCP for all clients. So the option is only MAC based. Our BD8000 is doing the routing for LAN. So, I think the best place for making it is on the uplink router facing to Internet. But the problem is to do MAC based policy on the uplink router where the LAN is routed by BD8000. The clients are connected to LAN via access switches which have VLAN trunk line to BD8000 Any idea?
3 REPLIES 3
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
‎02-17-2015 05:39 AM
Hi!
You can do egress limitation per uplink port.
And you can do ingress limitation per port. but condition in ACL - which you want:
entry{
if {
;
} then {
meter;
}
}
where is IP-MAC address pair.
All possible match conditions you can take from Concept Guide.
Thank you!
You can do egress limitation per uplink port.
And you can do ingress limitation per port. but condition in ACL - which you want:
entry
if {
} then {
meter
}
}
where
All possible match conditions you can take from Concept Guide.
Thank you!
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
‎02-16-2015 04:49 PM
Hi Alexandr,
It seem that this solution is to do the access limitation on our BD8000, right? Actually I'm still looking for solution how to "notify: the IP-MAC address pair to the uplink router so I can do the limitation there. Anyway, is it possible to do the limitation only for Internet traffic and do no limitation for layer 3 LAN traffic? Is it possible to have RADIUS based value?
Best regards,
It seem that this solution is to do the access limitation on our BD8000, right? Actually I'm still looking for solution how to "notify: the IP-MAC address pair to the uplink router so I can do the limitation there. Anyway, is it possible to do the limitation only for Internet traffic and do no limitation for layer 3 LAN traffic? Is it possible to have RADIUS based value?
Best regards,
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
‎02-16-2015 11:39 AM
For ingress limiting you can use metering:
create meter < meter-name >configure meter < metername > {committed-rate [Gbps | Mbps | Kbps]} {max-burstsize < burst-size > [Kb | Mb]} {out-actions [drop | set-drop-precedence {dscp [none | < dscp-value >]}}
entry{
if {
;
} then {
meter;
}
}
configure access-list [any | ports | vlan ] {ingress | egress}
For egress limiting - rate limiting:
configure ports < port_list > rate-limit egress [no-limit | < cir-rate > [Kbps | Mbps | Gbps] {max-burst-size < burst-size > [Kb | Mb]}]
Thank you!
create meter < meter-name >configure meter < metername > {committed-rate
entry
if {
} then {
meter
}
}
configure access-list
For egress limiting - rate limiting:
configure ports < port_list > rate-limit egress [no-limit | < cir-rate > [Kbps | Mbps | Gbps] {max-burst-size < burst-size > [Kb | Mb]}]
Thank you!
