Files
RTLPlayground/html
Erdnusschokolade dcc60c3824 Fix conf_overwrite vlan/mgmt conflict
The pattern /^vlan\s+\d{1,4}\b/ matched both VLAN membership entries
(vlan N <ports>) and management entries (vlan N mgmt), causing them
to overwrite each other in configuration[]. When saving, whichever
form came last in the cmd_log would dedupe the other out of the
final config — resulting in either lost membership or a stale mgmt
setting.

Split into two patterns using negative lookahead:
- /^vlan\s+\d{1,4}\s+mgmt$/      matches only mgmt entries
- /^vlan\s+\d{1,4}(?!\s+mgmt\b)/  matches everything else

Both dedup independently. Discovered via hardware test on 6XH-X
where 'vlan 44 mgmt' silently dropped 'vlan 44 management 2t 5u'
from saved config, locking out web UI on next boot.
2026-05-24 11:26:04 +02:00
..
2026-03-10 06:16:18 +01:00
2025-10-20 18:35:35 +02:00
2025-12-16 20:08:47 +01:00
2026-03-10 06:16:18 +01:00
2026-03-10 06:16:18 +01:00
2026-03-10 06:16:18 +01:00
2025-12-16 20:08:47 +01:00
2026-03-10 06:16:18 +01:00
2025-11-29 12:44:23 +01:00
2025-10-29 15:39:47 +01:00
2025-12-16 20:08:47 +01:00
2026-03-10 06:16:18 +01:00
2026-04-13 14:55:10 +02:00
2026-02-13 08:43:48 +01:00
2026-04-12 13:02:42 +02:00
2025-11-29 12:44:23 +01:00
2026-03-22 13:45:42 +01:00