How to change the bridge priority without change the VLAN ID? If you want to change the switch’s bridge priority you can only change the total bridge priority (bridge priority + extended system ID) in units of 4096. The STP bridge priority can only be changed in units of 4096. The valid values you can configure are: 0, 4096, 8192, 12288, 16384, 20480, 24576, 28762, 32768, 36864, 40960, 45056, 49152, 53248, 57344 or 61440. The extended system ID will then be added to this number to make the total bridge priority value. Why 32768 default bridge priority? It’s because this field is 16 bits in length, and the most significant bit is set 1 by default. Therefore, the default bridge priority was 32768 With the addition of the extended-system ID, adding the VLAN ID number to the bridge priority, that changed. So, the default VLAN ID is 1, therefore the bridge priority in total isn’t 32768, its 32769. In the default VLAN of 1, the default bridge priority is 32769, which is 32768+1. What is the...
Basic Network Fundamental (BPDU (Bridge Protocol Data Unit) priciple, Bridge ID, Bridge Priority Calculation, Pre-Vlan Spanning Tree)
What exactly are these BPDUs used for? • Bridge Protocol Data Units (BPDUs) are the messages that are transmitted across LAN networks to enable switches to participate in Spanning Tree Protocol (STP) by gathering information about each other. • It contains information regarding switch ports such as port ID, port priority, port cost, and MAC addresses. • A switch sends BPDUs from their origin port to a multicast address with a destination MAC address. • Switches use one field in the STP BPDU, the Bridge ID field, to elect a root bridge for the network. • The switch with the lowest Bridge ID becomes the root bridge. • All ports on the root bridge are put in a forwarding state. What is the Bridge ID field? • There is a bridge priority field, which is 16 bits in length, and then there is the MAC address of the switch, which is 48 bits in length. • The default bridge priority is 32768 on all switches, so by default the MAC address is used as the tie-breaker (lowest MAC address becomes th...