I have an IPv6-only network where I am now trying to add a NAT64 gateway. The NAT64 is not on my default gateway because it's intended to use a different ISP than the default gateway.
The default gateway is advertised using radvd and IPv6 connection is working. However the NAT64 provided by the ISP is unreliable and thus I want to configure my own NAT64.
On the machine where my NAT64 is running I have created this radvd configuration:
interface enp4s0
{
AdvSendAdvert on;
AdvDefaultPreference low;
route 64:ff9b::/96 {
AdvRoutePreference high;
};
};
But it is not working. On the client machines I only see the default route and not the 64:ff9b::/96 route to the NAT64 gateway.