radvd
radvd copied to clipboard
radvd | Official repository: https://github.com/radvd-project/radvd
How to make the radvd server not accept RA messages to assign ipv6 addresses and only send RA messages to other hosts.
I found it odd that radvd considers blank files to be invalid. Main use case for empty files is to allow other services in the system to simply write changes...
**Issue Description** Radvd's main [method checks](https://github.com/radvd-project/radvd/blob/cf213516101c6871dd697612916ed5f4a282b7c1/radvd.c#L320) the permissions on the configuration file when the program first starts. If the permissions are not acceptable then the program quits. However, when a...
**Observation** When running as root it is seems wasteful to fork the process into 2 as both processes can still write into and modify the proc filesystem. Start of code...
**Issue description** The child root process trusts that every interface the parent unprivileged process passes in is present in the interface file. This means that the parent process can in...
For large installations (more than 1000 interfaces) a including of config files is very lacking. It would be convenient to store a configuration for each interface in separate files. For...
RFC 6106 recommended that the number of RDNSS addresses thatshould be learned and maintained through the RDNSS RA option should be limited to three. RFC 8106 removes that recommendation; thus,...
Hello, with my config: ``` interface ipoe.666 { AdvDefaultLifetime 1800; MaxRtrAdvInterval 60; MinRtrAdvInterval 30; AdvSendAdvert on; AdvRASolicitedUnicast on; AdvSendAdvert on; AdvManagedFlag on; AdvOtherConfigFlag on; prefix 2001:db8:1234:8000::/64 { AdvOnLink on; AdvAutonomous...
More testing, expected to fail until PR#193 is merged. Reference: https://github.com/radvd-project/radvd/pull/193 Signed-off-by: Robin H. Johnson
to quote from the man page: https://github.com/radvd-project/radvd/blob/f2de4764559e102fe8492520be328858af0f964d/radvd.conf.5.man#L272-L289 The man page states that the Managed & OtherInformation flags are documented in RFC 4862. However, this does not seem the case. Quoted...