bundlewrap/bundles/radvd/files/radvd.conf
2024-02-26 07:27:25 +01:00

22 lines
447 B
Plaintext

% for interface, config in sorted(interfaces.items()):
interface ${interface}
{
AdvSendAdvert on;
MinRtrAdvInterval 10;
MaxRtrAdvInterval 30;
MinDelayBetweenRAs 10;
prefix ${config.get('prefix', '::/64')}
{
AdvOnLink on;
AdvAutonomous on;
AdvRouterAddr on;
};
% if config.get('rdnss'):
RDNSS ${' '.join(sorted(config['rdnss']))}
{
AdvRDNSSLifetime 45;
};
% endif
};
% endfor