Cisco Switching/Routing :: Implement VLAN Rate Limiting Or QOS For 2960?

Nov 14, 2011

I have a 2960 that I need to limit the uplink port to 50Mbps for 3 vlans and 350Mbps for another vlan. Would the following config achieve that or is this even possible for the 2960? 
 
class-map match-any VLAN50-51-52
match vlan 50-52
class-map match-any VLAN53

[Code].....

View 1 Replies


ADVERTISEMENT

Cisco Switching/Routing :: 3750 LAN Per-User Rate Limiting?

Jul 17, 2012

We have a guest wireless setup but I need to rate limit the users so no one hogs all the bandwidth. The WLC is connected into a 3750 which is doing all the routing between the vlans. I know I cannot shape the traffic on the 3750.

View 2 Replies View Related

Cisco WAN :: Rate Limiting Configuration On Vlan Interface On 6509?

Feb 10, 2011

I have used the following basic configuration to do rate limiting on a vlan interface on a 6509:
  
access-list 100 permit ip any any
 class-map match-all ratelimit
  match access-group 100
 policy-map ratelimit-10Mb
  class ratelimit
   police 10000000 428750    conform-action transmit     exceed-action drop

[code]....
 
How do I combine the two correctly to give me a vlan port rate limited at 10Mb up and down, but still setting aside (dynamically) 2Mb for voice?

View 1 Replies View Related

Cisco Switching/Routing :: Rate Limiting On 3560 Switch Not Working

Oct 30, 2011

I am trying to limit traffic inbound to 10Mbps on a gig interface 0/48 set to 100/full.  So I downloaded some big files over this link and I'm able to see 30- 40Mbps or more.  You can see from the show int - rate-limit command that parameters are never showing exceented so nothing has been dropped.  [code]

View 3 Replies View Related

Cisco Switching/Routing :: Rate Limiting Specific Ports On 2960CG?

Feb 5, 2012

I'm trying to limit the bandwidth on certain ports to 3Mbps and others 1Mbps for a project, however when I do a bandwidth test from a website  the speed on the router  doesn't seem to change it's as if the changes over telnet aren't actually affecting the swtich's qos settings. I have verified that the policy is attached to the interface and the settings are correct as well.
  
Router
Telnet address: 10.xxx.xx.xx
Password:

[Code].....

View 1 Replies View Related

Cisco Switching/Routing :: DCHP Discover Packet Rate Limiting 6509s

Sep 11, 2012

We have a number of 6509s which generally have dhcp relay agents configured on the SVIs.  The dhcp servers are centralised.  Recently we've had one or two faults with misconfigured or faulty devices (blade server chassis and also printers) generating high volumes of dhcp discover packets and causing high cpu on the relevant 6500.  I would like to rate limit these discover packets, which are layer 2 broadcasts.  Storm control can't discriminate between different types of broadcasts and on a gig link would need to be set down at about 1% to have much effect on the problem.  I've looked at CoPP and also mls hardware rate-limiting but as I understand it, these two features don't control broadcast traffic. I also looked at dhcp snooping but if an interface receives a high level of dhcp discover broadcasts, e.g. over 100pps, I don't want it to go error-disabled (as this would knock down the whole edge switch),  just to drop the excess packets.

View 2 Replies View Related

Cisco Switching/Routing :: How To Perform UBRL User Based Rate Limiting On ASR1000

Mar 27, 2012

how to perform UBRL User Based Rate Limiting on ASR1000 like we can do it on Catalyst6500?

View 3 Replies View Related

Cisco Switching/Routing :: Rate Limit 2960 Port To 1 MB

Nov 5, 2009

To rate limit the 2960 switch port to 1 MB.I have made the specified chnages , how ever still it is reaching more tha 1 MB
 
Hard coded the bandwidth of port to 10 MB and have applied the specified command srr-queue bandwidth limit 10.

View 4 Replies View Related

Cisco Switching/Routing :: 2960 / Recovering Switch With Wrong BAUD Rate?

Oct 20, 2012

it seems that i made a mistake when typing the BAUD rate of a 2960-Switch in rommon.I can't start the switch now, because there is no image on it (because I deleted it before) and the baud-rate has wrong settings. When connecting via console cable i can't see anything (except some strange hieroglyphics) when starting. I tried all the speeds in teraterm... without success.what can i do, to recover the switch back?

View 8 Replies View Related

Cisco Switching/Routing :: Implement Shaping VLAN Only On Trunk Link Between 6500 / 3560

Jan 2, 2012

I need to implement the shaping VLAN only on the trunk link between the 6500 and 3560. [code]

View 8 Replies View Related

Cisco Switching/Routing :: SUP-7E - Input /output Rate Not Incrementing Under VLan

Mar 6, 2013

On my SUP-7E, when I issue a " show interface vlan X "  I cannot see the expected input/rate reflecting the real rate (which should be very high).
 
  5 minute input rate 0 bits/sec, 0 packets/sec
  5 minute output rate 4000 bits/sec, 2 packets/sec

(Under the physical interfaces it is ok)However on other SUP-IV I can see the real rate.
 
My questions are :
 
- Why the SUP-7E does not reflect the rate, whereas the SUP-IV does ?

- I have heard about the 'counter' command under the vlan interface to activate the rate counters. Is this command application has any side effect on the switch ?

View 2 Replies View Related

Cisco :: Rate Limiting On 3825?

Feb 24, 2011

I have a 3825 with a 16 port etherswitch card installed that I'm trying to setup rate-limits on. Interface G0/0 is the connection to the outside world and int g0/1 has a couple of 2950 switches attached to it.

The etherswitch card, f1/0, f1,1 etc has corresponding vlans, 902, 903 etc each with an IP 10.110.1.x, 10.110.2.x and all part of access-group 111. The switches connect on sub-interfaces g0/1.101, g0/1.102 etc and have IP's 10.55.1.x, 10.55.2.x and part of access-group 101.

What i'm trying to achieve is that every port / IP that is on access-group 111 shares 3Mb of bandwidth in/out and access-group 101 shares a separate 3Mb of bandwidth in/out.

I've created two access-lists as follows;

access-list 101 permit ip 10.55.0.0 0.0.255.255 any
access-list 111 permit ip 10.110.0.0 0.0.255.255 any

And on int g0/0 I've created the following rate-limits;

rate-limit input access-group 101 3072000 64000 64000 conform-action transmit exceed-action drop
rate-limit input access-group 111 3072000 64000 64000 conform-action transmit exceed-action drop
rate-limit output access-group 101 3072000 64000 64000 conform-action transmit exceed-action drop
rate-limit output access-group 111 3072000 64000 64000 conform-action transmit exceed-action drop

Now instead of both access-groups having 3Mb each they all seem to be sharing 3Mb! I've tried class-maps and policy-maps but to no avail..

View 3 Replies View Related

Cisco WAN :: 3845 - Rate Limiting And Nat

Aug 18, 2011

I have a router 3845 connected to a LAN and other routers and providing internet through a link on an ethernet interface
 
Gi0/0
LAN connection
GI0/1
WAN connection
fa0/0
Internet connection

View 9 Replies View Related

Cisco WAN :: Rate Limiting By IP On 2821 ISR?

Nov 8, 2011

I am looking for information on how to properly configure rate limits on a Cisco 2821 so that I can set different Service levels by IP address. For example I want to limit a block of IPs to 1 Mbps Down and 512 kbps Up. I am doing point to point networks from our router (ISR 2821) to another router that is assigned a static IP. The other router connects to our router through a Fast Ethernet port on a NM 16 port switch card. The routing end point for the network is on a VLAN interface. Currently we are using bonded T1's but are about to turn up a Metro-E circuit.

View 1 Replies View Related

Cisco Switching/Routing :: 2960 / Which Port Is On VLAN 10

Mar 5, 2012

I have a Cisco 2960 48-port switch.  I enter "sh vlan" and it lists all the VLAN's.  One of the VLAN's listed is "10" with the name "EPIC".  What is the quickest way to find out what ports, if any, are assigned to this VLAN?

View 2 Replies View Related

Cisco Switching/Routing :: 2960 Have A Native VLAN

Feb 19, 2013

In our network environment, we have a 2960 switch sitting behind our router. Off of this we have a lot of external connections, like our external DNS, firewall, and VPN concentrators. I've configured a VLAN other than the default, moved everything into it and then shut VLAN 1. In this hardening guide it says that your native VLAN should be something other than the user VLAN, but if I am not using any trunk links, wouldn't I not really have a native VLAN? I attempted to make the link to our firewall a trunk link and then set the native VLAN to something else.

View 5 Replies View Related

Cisco Switching/Routing :: 2960 And VLan Ports

Feb 25, 2013

New to Cisco and want to know if I can segment a port. I have two v lans. I have one internet connection at the opposite end of the building. Can the port the internet is connected to serve both V lans?

View 6 Replies View Related

Cisco Switching/Routing :: 3750 - Show Interface Vlan (ID) Doesn't Show In / Out Traffic Rate

Mar 13, 2013

I have configured a vlan interface on a 3750 switch. there is aprox 4Mb active traffic flowing through the interface, but when I do a "show interface vlan (vlanid)" the output show zero bits in and zero bits out. Its a typical L3 config with one IP on the vllan interface acting as the gateway for the VLAN devices. Is this a normal behaviur ? and if so is there any way to get the traffic in/out stats. The end PC/devices are connected to this switch via an L2 TRUNK and I dont have access to the L2 switch on which the actual devices connect. so cant get the real time stats of those interfaces.

View 2 Replies View Related

Cisco Switching/Routing :: 2960 / Traffic In Same VLAN Goes Up Trunk?

Feb 11, 2013

I have 2 hosts, 1 plugged in fa 0/21 in VLAN 101 and another in fa 0/22 in VLAN 101 on our L2 Cisco 2960.  If I try and transfer files from either host the gig 0/1 trunk port on the 2960 leading tot he 3750 fa 0/1 port hits 100mb (using a real time bandwidth monitor tool), but why?  This VLAN is on the same switch, why does it go one way up the trunk to the L3 3750 switch?  The L3 3750 is the VTP server and the 2960 is a client.  I would of thought the traffic stays local.  The 2 hosts don't even have a gateway set.To sum up the typology the 2960 and 3750 are trunked using a single cable.  The 3750 hangs of a ASA firewall using SVIs.Here is whatthe traffic looks like when copying a file between hosts (2gb file).
 
3750 L3 Switch (VTP Server)
  interface FastEthernet1/0/4
description Trunk to Cisco 2960 Gig 0/1
switchport trunk encapsulation dot1q
switchport mode trunk
switchport nonegotiate

[code]....

View 6 Replies View Related

Cisco Switching/Routing :: 2960 / How To Configure Private Vlan

Mar 13, 2013

I have 2960 cisco switch. I want to configure private vlan. But it is not getting configured in cisco 2960. Is there any other way to configure that in switch.

View 1 Replies View Related

Cisco Switching/Routing :: 2960 Set Ports To Untagged VLAN XX

Aug 6, 2012

I have two questions for a Cisco 2960 (WS-C2960-24TC-L)
 
1. I am working to setup a few Cisco 2960 switches for HP iLO access to our servers. We are going to segregate the iLO network (VLAN 40) from the data network (VLAN 10) by using a different VLAN. All of the HP servers will be configured with static addresses. My question is, how do I set all the ports to VLAN 40 so that untagged devices will automatically go onto VLAN 40? I don't want to have to configure the VLAN on each iLO port on the server. I tried to set the port to: "switchport trunk native vlan 40", but that didn't work.
 
2. Also, how do you access the web GUI for these switches? I get a login box, but putting in the enable password doesn't work. I have the following commands in the config: [code]

View 9 Replies View Related

Cisco Switching/Routing :: 2960 LAN Lite / VLAN Number Max 64?

Jun 6, 2013

we have inserted into a network with VTP a Cisco Switch 2960-S, not knowing that had installed IOS LAN lite.Now I discovered that it can handle up to 64 vlan. In the network there are currently configured 62 VLAN: what happens when we exceeded the max number (64) of VLAN for that switch?

View 6 Replies View Related

Cisco Switching/Routing :: 2960 Multiple VLAN Configuration?

Mar 11, 2013

Using Cisco 2960 series switches (Have 8 .  2 stacks of 4) to replace 6 old switches.  4 old switches had IP ranges of 192.168.6.*** and all new switches have 10.1.*.* addresses. Core switch has 10.1. as well as 192.168 ip  addresses but i need to configure one vlan (5?) to route to 192.168 address. PC's on 10. address taking a long time to access 192 range.

View 2 Replies View Related

Cisco Switching/Routing :: 2960 No Internet Access From VLAN

Feb 6, 2012

I have a 2960-S running the lastest software for testing on my bench:

[code]
Switch Ports Model              SW Version            SW Image                
------ ----- -----              ----------            ----------              
*    1 24    WS-C2960-24-S      15.0(1)SE2            C2960-LANLITEK9-M  
[/code]

I have set up VLAN 2 on 192.168.2.0/24 with the switch as the DHCP server.  The switch is connected to an RV082 router which is at 192.168.1.65/27.  Once I figure out what I doing I'll eventually shift that to 192.168.1.0/24 or something similar.  So I have my switch acting as the DHCP server for VLAN 2 but I can't figure out how to get it to access the internet.
 
I found this example to set up the DHCP server:
[code]
###################################
this works to get vlan 2 to serve ips
conf t

[Code].....
 
The RV082 doesn't support trunks AFIK and I'm pretty much a newb at this stuff.  TIA.  I guess I should get a real router and I most likely will but I'd like to get this working if possible before taking the next plunge.

View 7 Replies View Related

Cisco Switching/Routing :: 3560 / 2960 - VLAN Translation

Aug 6, 2012

When did this wonderful feature get introduced?  Is it going to moved down to the 3560s/2960s type switches?

View 0 Replies View Related

Cisco Switching/Routing :: 2960 / Verifying Trunk Vlan Tagging?

Jul 5, 2012

I have a 2960 switch connected to another. The I need to verify that vlan0010 on one switch is forwarding tagged traffic between the other switch it is hooked up to through the Gi0/1 port. How do I verify this? I have a server that's multihomed (Broadcom) on the other side an it is supposed to be on this vlan with one of it's network interfaces. We had a pwer outage and now it cannot communicate on this vlan. However, everything else on the vlan can reach all the other nodes accept this server in the front of my building. All the devices in the same room are linked to the same switch which has one port (fa0/17) on vlan0010 and can ping eachother just fine. The server is hooked to port 24 on my server room switch and Gigabit port one goes to a fiber converter all the way to the back. It then gets converted from fiber to cat5e again and links into the switch (2960) in the backroom.

View 5 Replies View Related

Cisco Switching/Routing :: 2960 Support Multiple Vlan Per Port?

May 21, 2012

We're going to be switching some of our gear from Foundry to Cisco, and were looking at the WS-C2960S-48TS-L.  We currently have 3 different VLAN's, and I wanted to have 1 uplink back to our firewall (ASA 5550) and then let the firewall do the routing between the subnets.  I realize that 1 link will carry the traffic twice then, but is that possibly with those switches to have all three vlans assigned to one port and then just let the firewall do the routing between the vlans or would I need to have 3 uplink ports back to the 5550?

View 1 Replies View Related

Cisco Switching/Routing :: 2960 / 2621 - IP From Wrong VLAN Being Handed Out

Dec 29, 2011

Setup is like this:  Poly com IP phones -> Cisco 2960 switches -> Cisco 2621XM router running 12.28(r).  A Windows 2003 server running on HP Proliant DL380 G4 with the correct DHCP scope is configured for the IP phones, also sitting on a Cisco 2960 switch.

A typical port config on the 2960 is:
interface FastEthernet0/1
switchport mode access
switchport voice vlan 60
mls qos trust cos
auto qos voip trust
spanning-tree portfast
spanning-tree bpduguard enable

Relevant section of the config on the 2621XM router:
interface FastEthernet0/0
no ip address
no ip redirects
no ip proxy-arp
ip pim sparse-dense-mode
[Code] .......

This used to work on a Windows 2000 server which sat on different piece of hardware, but stopped immediately after the migration to Windows 2003 server was done.  There was no change on the router or switches prior to or after the server migration.  I see DHCP server log on the 2003 server giving DHCP NACK because the phones are apparently asking for IP's in the data VLAN.

View 14 Replies View Related

Cisco Switching/Routing :: Unable To Connect A Wi-Fi Modem Within 2960 Switch Having VLAN 1

May 19, 2013

I am unable to connect a Wifi Modem wiith 2960 Switch having VLAN 1,Attached is the network diagram,what configurations i have to modified it,I need to Connect A Wifi Modem on VLAN 1 ,Connectivity is working fine between VLAN 10 and VLAN 1.What should be the next step to Connect Wifi Modem to VLAN 1 so that Users on VLAN 10 should connect to Internet.

View 14 Replies View Related

Cisco Switching/Routing :: Catalyst 3750 / 2960 - Some Data Cannot Pass Through VLAN

Sep 4, 2012

I have a problem, here are the situation

- 1 Catalyst 3750
- 1 Catalyst 2960
- 4 Finger Print
- 1 HUB
 
Configuration

- Catalyst 3750
Interface VLAN182
IP Address 10.62.182.254 255.255.255.0
Interface G0/2
Description Finger Print Server
Switchport mode access

[code]....
 
Here are the problem,If i connect Finger Print Device to port catalyst 2960, some device not sending data to server, but if i connect all Finger Print to HUB and from HUB connect to Catalyst 2960 at port F0/5, All Device(Finger Print) can send data to server...Is there any special configuration in catalyst so all device can direct connect to port catalyst 2960 without HUB?

View 3 Replies View Related

Cisco Switching/Routing :: Setup VLan To Allow Video Traffic Between 2960 And 3750?

Nov 13, 2011

I am trying to setup a network using Cisco 2960 switches with vlans configured.  One vlan will handle video coming from four cameras that are connected to another 2960.
 
We have four cameras feeeding one port each on a 2960, that 2960 in turn feeds one port on the main 2960 which is the video vlan for that site.  From the site it goes back to a Cisco 3750 to be sent over to a Sonicwall firewall. If we connect to the 2960 that the camera are connected to we can see the video, but not on the main site 2960.

View 5 Replies View Related

Cisco Switching/Routing :: 2960 / 1801 - Switch / Router VLAN Configuration

Jul 5, 2012

I've recently purchased a Cisco catalyst 2960S-24TS-L & setup 3 V LANS 10 (no current IP),20 (192.168.2.1) and 30 (192.168.3.1) to reflect the router V LAN configuration & ip information. When connecting my PC to the switch to test connectivity on (2.1 & 3.1) I'm unable to connect to the the net but can successfully ping GW (int FE0.20 & FE0.30) 192.168.2.1 & 3.1. 

The router is an Cisco 1801 & it seems this is where the configuration issue is but I'm unable to figure out how to complete the setup. It has been quite awhile since I've configured a Cisco router.

Ive never had this router connected to a switch so all router switch ports are in the default VLAN1 (192.168.1.2), with FE0  disabled. In trying to get the switch to communicate with the router I made the following router config modifications. 

FE0 enabled with subinterfaces configured
FE0.10-currently no ip
FE0.20-192.168.2.1/27
FE0.30-192.168.3.1/27

I have two issues I want to resolve: 
1) I do not know what additional steps are required to allow 2.1.& 3.1 V LANs to access the net.
2) I want to disable VLAN1 if possible & use the network IP for VLAN10 (192.168.1.0). I'm unsure how to do this as any change on VLAN1 immediately breaks router access and the router reconfiguration becomes more complicated with changes to the FW ACL etc.

View 2 Replies View Related

Cisco Switching/Routing :: Catalyst 2960 / VLAN Configuration Using MS DHCP Server

Jan 28, 2013

I am going to creat VLANs very 1st time therefore for test purpose I have following simple scnerio.I have created 2 VLANs , VLAN2 and VLAN3 on Cisco Catalyst 2960 series switch. Ports 1-12 is assigned to VLAN2 and Ports 13-24 are assiged to VLAN3. Now I have configured DHCP on Microsoft Server 2003 defining 2 scopes with following configurations.
 
Scope 1 for VLAN 2--- Range is 172.16.0.17 to 172.16.0.30   with subnet mask=255.255.255.240 . Server IP address 172.16.0.17
( Note: Address 172.16.0.17 is excluded from dhcp server Scope 1 and give to the MS server itself)
 Scope 2 for VLAN 3----Range is  172.16.0.33 to 172.16.0.46 with subnet mask=255.255.255.240 .
 
Now in Cisco 2960 series switches, under Vlan 2 and Vlan 3, I have following configurations...
 
interface Vlan2
ip address 172.16.0.30 255.255.255.240
ip helper-address 172.16.0.17
 interface Vlan3
ip address 172.16.0.46 255.255.255.240
ip helper-address 172.16.0.17
 
Now the problem is when i connect a client computer to any port from 1-12, It gets correct IP address from Scope 1 but when I connect a computer to any port from 13-24, it does not get the ip address.
 
Further I want to do inter VLAN comunication as well for that purpose i Have an  ISR 2900 series router. What further configuration i will have to do on router for inter vlan communication.

View 3 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved