I have 3 cisco 3560 switches that are daisy chained via port 48 on each switch. Can I use the SFP port to daisy chain with switches together instead of the port 48. I am looking for a way to link these switches together more effectively
Basically, it's very simple:
In addition to the existing link between switches, you patch in a second link between each switch.
Then you get on each pair of interfaces on each switch, eg:
(ports 45&46 on switch1 connect to 47&48 switch2, 45&46 on switch 2 connect to 47&48 on switch3, 45&46 on switch3 connect to 47&48 on switch1)
Switch1(config)# interface range g0/45 -46
Switch1(config-if-range)# channel-group 2 mode on
Switch1(config)# interface range g0/47 -48
Switch1(config-if-range)# channel-group 3 mode on
Switch2(config)# interface range g0/45 -46
Switch2(config-if-range)# channel-group 3 mode on
Switch2(config)# interface range g0/47 -48
Switch2(config-if-range)# channel-group 1 mode on
Switch3(config)# interface range g0/45 -46
Switch3(config-if-range)# channel-group 1 mode on
Switch3(config)# interface range g0/47 -48
Switch3(config-if-range)# channel-group 2 mode on
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.