How to stack Cisco 2960-S and Cisco 2960X?


 
Thread Tools Search this Thread
Special Forums IP Networking How to stack Cisco 2960-S and Cisco 2960X?
# 1  
Old 07-29-2014
How to stack Cisco 2960-S and Cisco 2960X?

Is there an easy way to stack Cisco 2960-S and Cisco 2960X switches? If you have no idea, follow this:

1. Stacking is not supported on switches running the LAN Lite image. All switches in the stack must be running the LAN Base image.
2. In a mixed stack of Catalyst 2960-X and Catalyst 2960-S switches, the number of supported stack members is reduced from eight to four.
3. In a mixed stack of Catalyst 2960-X and Catalyst 2960-S switches, full stack bandwidth is reduced from 80 Gbps to 40 Gbps.
4. In a mixed stack of Catalyst 2960-X and Catalyst 2960-S switches, stack convergence time is increased from milliseconds to 1 to 2 seconds.
Login or Register to Ask a Question

Previous Thread | Next Thread

1 More Discussions You Might Find Interesting

1. Red Hat

Lost RedHat....Cisco in need!

Hey, Im a high school student in Cisco, Im in CCNA 3 right now and we are starting our Linux stuff, but our instructor can't seem find a good FREE RedHat 9 ISO, could anyone help out with this and send us some links. :) Thanx a lot. (4 Replies)
Discussion started by: Tabryan07
4 Replies
Login or Register to Ask a Question
Info::CiscoConfig(3pm)					User Contributed Perl Documentation				    Info::CiscoConfig(3pm)

NAME
SNMP::Info::CiscoConfig - SNMP Interface to Cisco Configuration Files AUTHOR
Justin Hunter, Eric Miller SYNOPSIS
my $ciscoconfig = new SNMP::Info( AutoSpecify => 1, Debug => 1, DestHost => 'myswitch', Community => 'public', Version => 2 ) or die "Can't connect to DestHost. "; my $class = $ciscoconfig->class(); print " Using device sub class : $class "; DESCRIPTION
SNMP::Info::CiscoConfig is a subclass of SNMP::Info that provides an interface to CISCO-CONFIG-COPY-MIB, CISCO-FLASH-MIB, and OLD-CISCO- SYS-MIB. These MIBs facilitate the writing of configuration files. Use or create a subclass of SNMP::Info that inherits this one. Do not use directly. Inherited Classes None. Required MIBs CISCO-CONFIG-COPY-MIB CISCO-FLASH-MIB OLD-CISCO-SYS-MIB GLOBALS
These are methods that return scalar value from SNMP $ciscoconfig->old_write_mem() ("writeMem") $ciscoconfig->old_write_net() ("writeNet") TABLE METHODS
These are methods that return tables of information in the form of a reference to a hash. Config Copy Request Table ("ccCopyTable") $ciscoconfig->config_protocol() ("ccCopyProtocol") $ciscoconfig->config_source_type() ("ccCopySourceFileType") $ciscoconfig->config_dest_type() ("ccCopyDestFileType") $ciscoconfig->config_server_addr() ("ccCopyServerAddress") $ciscoconfig->config_filename() ("ccCopyFileName") $ciscoconfig->config_username() ("ccCopyUserName") $ciscoconfig->config_password() ("ccCopyUserPassword") $ciscoconfig->config_notify_complete() ("ccCopyNotificationOnCompletion") $ciscoconfig->config_copy_state() ("ccCopyState") $ciscoconfig->config_copy_start_time() ("ccCopyTimeStarted") $ciscoconfig->config_copy_complete_time() ("ccCopyTimeCompleted") $ciscoconfig->config_fail_cause() ("ccCopyFailCause") $ciscoconfig->config_row_status() ("ccCopyEntryRowStatus") Flash Copy Table ("ciscoFlashCopyTable") Table of Flash copy operation entries. $ciscoconfig->flash_copy_cmd() ("ciscoFlashCopyCommand") $ciscoconfig->flash_copy_protocol() ("ciscoFlashCopyProtocol") $ciscoconfig->flash_copy_address() ("ciscoFlashCopyServerAddress") $ciscoconfig->flash_copy_source() ("ciscoFlashCopySourceName") $ciscoconfig->flash_copy_dest() ("ciscoFlashCopyDestinationName") $ciscoconfig->flash_copy_row_status() ("ciscoFlashCopyEntryStatus") SET METHODS
These are methods that provide SNMP set functionality for overridden methods or provide a simpler interface to complex set operations. See "SETTING DATA VIA SNMP" in SNMP::Info for general information on set operations. $ciscoconfig->copy_run_tftp (tftpserver, tftpfilename ) Store the running configuration on a TFTP server. Equivalent to the CLI commands "copy running-config tftp" or "write net". This method attempts to use newer "copy running-config tftp" procedure first and then the older "write net" procedure if that fails. The newer procedure is supported Cisco devices with the CISCO-CONFIG-COPY-MIB available, Cisco IOS software release 12.0 or on some devices as early as release 11.2P. The older procedure has been depreciated by Cisco and is utilized only to support devices running older code revisions. Example: $ciscoconfig->copy_run_tftp('1.2.3.4', 'myconfig') or die Couldn't save config. ",$ciscoconfig->error(1); $ciscoconfig->copy_run_start() Copy the running configuration to the start up configuration. Equivalent to the CLI command "copy running-config startup-config" or "write mem". This method attempts to use newer "copy running-config startup-config" procedure first and then the older "write mem" procedure if that fails. The newer procedure is supported Cisco devices with the CISCO-CONFIG-COPY-MIB available, Cisco IOS software release 12.0 or on some devices as early as release 11.2P. The older procedure has been depreciated by Cisco and is utilized only to support devices running older code revisions. Example: $ciscoconfig->copy_run_start() or die "Couldn't save config. ",$ciscoconfig->error(1); perl v5.12.4 2011-09-28 Info::CiscoConfig(3pm)