How2pass.com Forums
Etherchannel and root bridge Sim - Printable Version

+- How2pass.com Forums (https://www.how2pass.com/forum)
+-- Forum: CCNP (https://www.how2pass.com/forum/forum-6.html)
+--- Forum: CCNP ENCOR 350-401 Forum (https://www.how2pass.com/forum/forum-19.html)
+--- Thread: Etherchannel and root bridge Sim (/thread-2514.html)



Etherchannel and root bridge Sim - ionemoney - 07-26-2025

The answer has the interfaces grouped into po11, and configured as trunk interfaces

no interface po11
interface range e0/0 - 2
switchport trunk encapsulation dot1q
switchport mode trunk
channel-group 11 mode active


However, don't we have to specifically configure int po11 as a trunk as well?

EX
Interface po11
switchport trunk encapsulation dot1q
switchport mode trunk

Switchport trunk allowed vlans x,x,x

?????


RE: Etherchannel and root bridge Sim - help_desk - 07-27-2025

On modern devices, when you configure the command "channel-group <number> mode <active|passive>" on interfaces, the configurations under the interfaces are copied to the Port-channel automatically.


RE: Etherchannel and root bridge Sim - ionemoney - 08-04-2025

(07-27-2025, 10:10 AM)help_desk Wrote: On modern devices, when you configure the command "channel-group <number> mode <active|passive>" on interfaces, the configurations under the interfaces are copied to the Port-channel automatically.

Thank you!


RE: Etherchannel and root bridge Sim - muddytechz - 01-28-2026

My question would be for Task #2.  To ensure that Sw10 is always the root bridge.  Wouldn't you use priority of 0?  If you just use root primary then if another siwtch is added with a lower priority then it would take over.  Setting root primary only calculates for existing switches in topology.  

I should be able to find information to back this up if needed.


RE: Etherchannel and root bridge Sim - help_desk - 01-28-2026

You are correct that if another switch with a lower priority were added, it could take over as the root. But the task is for the current network, not what might happen later on.

The same logic applies even if we set SW10 to priority 0. If another switch with priority 0 shows up, the MAC address still decides the root, so that’s not an absolute guarantee either.

In real networks, the root primary command is the recommended and cleaner way to set the root bridge. It follows Cisco best practices, works with the existing topology, and meets the requirement without being overly aggressive.


RE: Etherchannel and root bridge Sim - muddytechz - 01-29-2026

(01-28-2026, 02:18 PM)help_desk Wrote: You are correct that if another switch with a lower priority were added, it could take over as the root. But the task is for the current network, not what might happen later on.

The same logic applies even if we set SW10 to priority 0. If another switch with priority 0 shows up, the MAC address still decides the root, so that’s not an absolute guarantee either.

In real networks, the root primary command is the recommended and cleaner way to set the root bridge. It follows Cisco best practices, works with the existing topology, and meets the requirement without being overly aggressive
Explanation sounds good.  I just hate how they word their questions.  Makes it sound like both could be correct but unsure which is correct

(01-29-2026, 12:45 AM)muddytechz Wrote:
(01-28-2026, 02:18 PM)help_desk Wrote: You are correct that if another switch with a lower priority were added, it could take over as the root. But the task is for the current network, not what might happen later on.

The same logic applies even if we set SW10 to priority 0. If another switch with priority 0 shows up, the MAC address still decides the root, so that’s not an absolute guarantee either.

In real networks, the root primary command is the recommended and cleaner way to set the root bridge. It follows Cisco best practices, works with the existing topology, and meets the requirement without being overly aggressive
Explanation sounds good.  I just hate how they word their questions.  Makes it sound like both could be correct but unsure which is correct

I'm also not getting the expected results on task 1.  

First step to remove po 11.  It doesn't exist from beginning.

Even if I don't make any changes shouldn't trunks show up going to SW30.  I get nothing but SW30 does show up in show cdp.

I've tried reimporting the lab twice but something doesn't seem right.


RE: Etherchannel and root bridge Sim - muddytechz - 01-31-2026

Starting from the beginning.  Fix PortChannel 1.

conf t
int po 1
switchport trunk encap dot1q
switchport mode trunk

verify by show int trunk

po1 will now show up in trunks .

Now on to actual step to create PO/trunk with SW20.

I created po 11
conf t
int po 11
switchport trunk encap dot1q
switchprot mode trunk

then config interfaces

conf t
int range e 0/0 - 2
switchport trunk encap dot1q
switchport mode trunk
channel-group 11 mode active

All seemed to be working fine after that.  Please let me know if this doesn't look correct for some reason.


RE: Etherchannel and root bridge Sim - help_desk - 02-02-2026

You don't need to configure port channel 11 explicitly, as it will automatically be created when you add the interfaces to it via the command "channel-group 11 mode active".