service dhcp-server shared-network-name <name> subnet <net> option interface-mtu is constrained to 576-9000 (interface-definitions/include/dhcp/option-v4.xml.i, added with T7723).
The 9000 upper bound is arbitrary:
- DHCP option 26 (Interface MTU, RFC 2132 s5.1) is a 16-bit unsigned value; Kea accepts up to 65535.
- VyOS itself allows interfaces ethernet <ethN> mtu up to 16000.
- Datacenter jumbo fabrics commonly run 9216 (typical switch jumbo maximum), so a router whose LAN interfaces run MTU 9216 cannot hand DHCP clients a matching interface-mtu.
Observed on VyOS 1.5 rolling: set service dhcp-server shared-network-name LAN subnet 192.0.2.0/24 option interface-mtu 9216 is rejected by the CLI validator.
Proposed fix: relax the constraint to 576-65535 (the option's full width; Kea validates the wire format). PR follows.