# route-ttl (NEW) # This tells 'ndppd' how often to reload the route file /proc/net/ipv6_route. # Default value is '30000' (30 seconds). route-ttl 30000 # proxy # This sets up a listener, that will listen for any Neighbor Solicitation # messages, and respond to them according to a set of rules (see below). # is required. You may have several 'proxy' sections. proxy eth0 { # router # This option turns on or off the router flag for Neighbor Advertisement # messages. Default value is 'true'. router yes # timeout # Controls how long to wait for a Neighbor Advertisment message before # invalidating the entry, in milliseconds. Default value is '500'. timeout 500 # auto-wire # Controls whether whether ndppd will automatically create host entries # in the routing tables when it receives Neighbor Advertisements on a # listening interface. The the default value is no. auto-wire no # ttl # Controls how long a valid or invalid entry remains in the cache, in # milliseconds. Default value is '30000' (30 seconds). ttl 30000 # rule [/] # This is a rule that the target address is to match against. If no netmask # is provided, /128 is assumed. You may have several rule sections, and the # addresses may or may not overlap. rule 1111:: { # Only one of 'static', 'auto' and 'interface' may be specified. Please # read 'ndppd.conf' manpage for details about the methods below. # 'auto' should work in most cases. # static (NEW) # 'ndppd' will immediately answer any Neighbor Solicitation Messages # (if they match the IP rule). # iface # 'ndppd' will forward the Neighbor Solicitation Message through the # specified interface - and only respond if a matching Neighbor # Advertisement Message is received. # auto (NEW) # Same as above, but instead of manually specifying the outgoing # interface, 'ndppd' will check for a matching route in /proc/net/ipv6_route. auto # Note that before version 0.2.2 of 'ndppd', if you didn't choose a # method, it defaulted to 'static'. For compatibility reasons we choose # to keep this behavior - for now (it may be removed in a future version). } }