DHCPv6 PD over GRE tunnel

Any idea how I could configure a DHCPv6 server that would delegate a prefix over GRE tunnel to another vyos server?

Hello @dnwk,

You can use dhcpv6-relay:
Server:

set service router-advert interface eth0 managed-flag
set service router-advert interface tunX prefix ::/64

Client:

set service dhcpv6-relay listen-interface eth1 address 'fd00:1::1' <- Client address and interface
set service dhcpv6-relay max-hop-count '2'
set service dhcpv6-relay upstream-interface tunX address '2001:1111:1111:1111::1' <- DHCPv6 server address

For information:
https://docs.vyos.io/en/latest/configuration/service/dhcp-relay.html#ipv6-relay

1 Like

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.