summaryrefslogtreecommitdiff
path: root/scripts/vyatta-bridge.pl
AgeCommit message (Collapse)Author
2016-01-23Remove fuse group, not needed in debian jessieUnicronNL
2015-10-19vyatta-cfg-system: allow bridge slaves to be moved from empty bridgesAlex Harpin
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
2015-10-18vyatta-cfg-system: ensure bridge slaves are deletable from bridgesAlex Harpin
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
2015-10-18vyatta-cfg-system: formatting changes for style consistencyAlex Harpin
Update scripts/vyatta-bridge.pl to have consistent identation levels and style throughout.
2012-01-16Fix check for pseudo-ethernet overlapStephen Hemminger
Bug 7726 Incorrect variable name (from cut-paste)
2012-01-03Check for conflict between pseudo-ethernet and bonding,bridgingStephen Hemminger
Don't allow configuring bonding or bridging if pseudo-ethernet is in use.
2011-12-30bridge: check for VRRPStephen Hemminger
Do not allow interface with VRRP defined to be added to a bridge.
2010-11-23Make scripts executableStephen Hemminger
2010-11-18Add more checks for bridge/bond conflictsStephen Hemminger
Don't allow putting bridge port into bond-group (and vice-versa).
2010-11-17Cleanup bridge port managementStephen Hemminger
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.