ā10-22-2017 04:51 AM - edited ā03-08-2019 12:27 PM
I need to Know what is difference between both techniques.
How to apply them
ā10-22-2017 05:04 AM - edited ā10-22-2017 05:07 AM
Hi
Stacking is method to unify 2 or more switches and you will see them as one switch locally. It can provide redundancy as well. For example stacking could provide redundancy a server with 2 NICs, if a NICs fails the second will be used and you will not lose connectivity.
Redundancy basically is associated to high availability where you lose connection to the services because you have a backup path so your downtime could be minimal.
This link could be useful https://keepingitclassless.net/2011/12/redundancy-protocols-vs-stacking-pros-and-cons/
Hope it is useful
:-)
ā10-22-2017 06:13 AM
can you tell me the steps configurations for creating stacking & redundancy
ā10-22-2017 07:48 AM
ā10-22-2017 07:58 AM
Example:-
Stack two switches together, and check using "show switch". Once stacking is done, create layer 2 etherchannel interface as follows:
int gi1/0/1
switchport access vlan 10
switchport mode access
channel-group 1 mode on
!
int gi2/0/1
switchport access vlan 10
switchport mode access
channel-group 1 mode on
!
The above commands will create a layer2 "Port-Channel 1" as a member of vlan 10, with two member interfaces: Gi1/0/1 and Gi2/0/1 (from the two switches). For example, if you have a server on the other end with 2 NIC cards, the server will not loose its connectivity unless both switches (or both interfaces) are DOWN.
HTH,
Meheretab
ā10-22-2017 11:46 PM
Thank you for your support
in my switch , there are the following commands , what is the benefits
redundancy
mode sso
ā10-22-2017 11:58 PM
ā10-23-2017 01:59 AM
thank you very much for your support & efforts
I've one question
Why if i change IP address for example port 20 in switch 1 ( active ) , it not replicated to switch2 (standby) , port 20
ā10-23-2017 10:24 AM
ā10-23-2017 10:58 PM
Thank you for your help
in your configurstion
int Po10
ip address x.x.x.x 255.x.x.x
no shut
exit
in my configuation
interface Port-channel4
switchport mode trunk
!
Is it possible to make trunk without IP address ?
ā10-23-2017 11:02 PM
no switchport , what is command used for ?
ā10-23-2017 11:20 PM - edited ā10-24-2017 10:50 AM
"no switchport" is used to make the interface Layer 3. By default, switch interfaces are Layer 2 (you can not assign IP address and other layer 3 features).
We could have Layer 2 and/or Layer 3 port-channels. If you want to assign IP address to the Port-Channel, it should be a layer 3 Port-Channel. If you do not need to have IP address on the port and prefer to use it as a Layer 2 trunk port, you do not need to change your configuration on Po4. The only thing you need to remember is to add member interfaces from both switches (if you stack two switches) so that you will have redundancy.
P.S.:- If your question is answered, please don't forget to rate it and accept the correct response as a solution to help others with similar question.
HTH,
Meheretab
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide