Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Cisco 1811 Config

Status
Not open for further replies.

butchok

Technical User
Jul 6, 2010
11
0
0
NZ
i have two Vlan setup on my Cisco 1811. Just wondering can you setup vlan1 always have internet access and vlan2 to limit access to internet from 7am to 11pm?
 
just wondering, can you do time-range on Cisco SDM or CPP?
 
Hello
I don't use SDM or CPP,so I don't know for sure.But with CMD it's not difficult.

Regards
 
hi,

how about bandwith, how do you setup a maximum bandwith to interface vlan?

cheers
 
you will have to setup policing
setup a class map to match access-list which match the IP addresses of your VLAN2)
then police the bandwidth to whatever you need.
then apply said policy to the interface.
lets pretend your vlan2 is on 10.10.10.0/24:

!create an ACL
access-list 10 permit 10.10.10.0 0.0.0.255

!create a class-map
class-map match-all vlan2-bw-map
match access-group 10

!create a policy for your bandwidth
!this can have multiple class matches
policy-map vlan2-bw-policy
class vlan2-bw-map
police bps burst-normal burst-max conform-action transmit exceed-action drop

then apply the policy to your interface which i believe (someone correct me here.. )

service-policy {input | output } vlan2-bw-policy


where
bps: average rate to be commited with this traffic class.
burst-normal: normal burst size, in bytes.
burst-max: excess burst size, in bytes.

im not sure if the italic tags will come through . so here is a linky to a non-cisco site that explains things a bit better than me


We must go always forward, not backward
always up, not down and always twirling twirling towards infinity.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top