1
0
mirror of http://deavmi.assigned.network/git/CRXN/docs synced 2025-02-16 12:56:54 +00:00

Fixed documentation for radv

This commit is contained in:
Tristan B. Velloza Kildaire 2021-06-24 16:35:09 +02:00
parent 91a1d9006e
commit 5484d82f66

View File

@ -49,16 +49,24 @@ This will advertise all the routes your Bird router knows (those in the `crxn` t
``` ```
protocol radv protocol radv
{ {
# Advertise your prefix # Enable propagating of routes exported to us via radv to hosts
prefix fd40:ec65:5b4c::/64 { propagate routes yes;
# TODO: Add anything that needs to be in here
};
# Interfaces to run radv on # Export all your routes into the radv advertisement
interface "eth0"; export filter crxn6;
table crxn;
# Advertise all routes (TODO: check if this is the correct syntax) # Interface to run radv on - only eth0 (change to what you want)
propagate_routes yes; interface "eth0" {
table crxn; # Advertise your prefix
prefix fd40:ec65:5b4c::/64 {
# Defaults are fine
};
# Normally it will distribute a default route, disable that (TODO: Check)
prefix ::/0 {
skip yes;
};
};
} }
``` ```