Routing per DHCP übergeben

Gibt es eine Möglichkeit komplette Routen per DHCP Option 249 (Statische Route ohne Klasse) zu übergeben um z.B. Internet, VPN und DMZ über unterschiedliche Gateways zu schicken, so wie es der Windows DHCP-Server schon seit NT4 kann?

According to my notes the following should work:

ucr set \
  dhcpd/options/rfc3442-classless-static-routes/121='array of integer 8' \
  dhcpd/options/ms-classless-static-routes/249='array of integer 8'

For routing the network 172.25.50.0/24 via the gateway 172.25.25.25:

udm dhcp/service modify --dn="cn=sub.domain.de,cn=dhcp,dc=sub,dc=domain,dc=de" \
  --append option='rfc3442-classless-static-routes 24,172,25,50,172,25,25,25;' \
  --append option='ms-classless-static-routes 24,172,25,50,172,25,25,25;'

Haben Sie zufällig einen aktuellen Link oder eine Info griffbereit woraus hervorgeht, welche Clients heutzutage rfc3442-classless-static-routes Out of the Box unterstützen? Mac OS X hat’s auf jeden Fall lange nicht unterstützt.

Mastodon