Actions
Bug #492
closedBridge STP Configuration Issues
Start date:
04/09/2010
Due date:
% Done:
0%
Estimated time:
Plus Target Version:
Release Notes:
Affected Version:
2.0
Affected Architecture:
Description
From http://forum.pfsense.org/index.php/topic,24230.0.html
1. Config file isn't updated with STP on/off status interfaces_bridge_edit.php ~Line 152: $bridge['enablestp'] = isset($_POST['enablestp']); Changed to: if (isset($_POST['enablestp'])) $bridge['enablestp'] = "yes"; 2. Web interface doesn't properly report STP on/off status interfaces_bridge_edit.php ~Line 284 <input type="checkbox" name="enablestp" id="enablestp" <?php if ($pconfig['enablestp']) echo "selected";?>> Changed to: <input type="checkbox" name="enablestp" id="enablestp" <?php if ($pconfig['enablestp']) echo "checked";?>>
Updated by Marcus Brown over 14 years ago
Actions