An STP advertisement is sent after every expiry of the hello timer, so
this reduces STP advertisements to once every 2 seconds.
Once a second seemed like too often.
Suggested by Justin.
stp->bridge_id |= UINT64_C(32768) << 48;
}
stp->max_age = SECONDS_TO_TIMER(6);
- stp->hello_time = SECONDS_TO_TIMER(1);
+ stp->hello_time = SECONDS_TO_TIMER(2);
stp->forward_delay = SECONDS_TO_TIMER(4);
stp->bridge_max_age = stp->max_age;
stp->bridge_hello_time = stp->hello_time;