Age | Commit message (Collapse) | Author |
|
|
|
Allow interfaces to be moved from one bridge to another when they are
already configured as part of an empty bridge-group.
Bug #476 http://bugzilla.vyos.net/show_bug.cgi?id=476
|
|
Due to previous refactoring of the bridge management code, it was
possible to get the system and config in an inconsistent state by the
following actions.
set interfaces bridge br1
set interfaces bridge br1 address '192.168.1.1/24'
set interfaces ethernet eth0 bridge-group bridge 'br1'
commit
delete interfaces ethernet eth0 bridge-group bridge 'br1'
commit
This would result in the config still containing the bridge-group
settings, but the actual bridge would be missing eth0 in br1, breaking
any further attempts to configure the bridge without manual
intervention.
Bug #476 http://bugzilla.vyos.net/show_bug.cgi?id=476
|
|
Update scripts/vyatta-bridge.pl to have consistent identation
levels and style throughout.
|
|
Bug 7726
Incorrect variable name (from cut-paste)
|
|
Don't allow configuring bonding or bridging if pseudo-ethernet
is in use.
|
|
Do not allow interface with VRRP defined to be added to a bridge.
|
|
|
|
Don't allow putting bridge port into bond-group (and vice-versa).
|
|
Consolidate bridge port management into a single perl script.
Done to fix the following bug.
Bug 4745
Don't allow interface with address to be added to bridge.
|