bundlewrap/bundles/radvd/files/radvd.conf

22 lines
449 B
Plaintext
Raw Normal View History

% for interface, config in sorted(interfaces.items()):
interface ${interface}
{
AdvSendAdvert on;
MinRtrAdvInterval 60;
MaxRtrAdvInterval 300;
MinDelayBetweenRAs 10;
prefix ${config.get('prefix', '::/64')}
{
AdvOnLink on;
AdvAutonomous on;
AdvRouterAddr on;
};
2024-02-26 06:27:25 +00:00
% if config.get('rdnss'):
RDNSS ${' '.join(sorted(config['rdnss']))}
{
AdvRDNSSLifetime 900;
};
% endif
};
% endfor