Pndpd/pndpd.conf

41 lines
1.0 KiB
Plaintext
Raw Normal View History

// Example config file for PNDPD
// Enable or disable debug
// If enabled, this option can fill up your logfiles very quickly
debug off
// Responder example
2021-12-27 12:09:59 -05:00
// Create an NDP responder that answers on interface "eth0"
responder {
iface eth0
filter fd01::/64
filter fd02::/64
}
// Proxy example
2021-12-27 12:09:59 -05:00
// Create an NDP proxy that for proxying NDP between iface1 ("eth0") and iface2 ("eth1")
// The whitelist is applied on iface2
proxy {
iface1 eth0
iface2 eth1
filter fd01::/64
filter fd02::/64
}
// Responder example with autoconfigured whitelist
// The whitelist is configured based on the addresses assigned to the interface specified. This works even if the IP addresses change frequently.
responder {
iface eth0
autosense eth0
}
// Proxy example with autoconfigured whitelist
// The whitelist is configured based on the addresses assigned to the interface specified. This works even if the IP addresses change frequently.
2021-12-24 11:23:39 -05:00
// The whitelist is applied to iface2
proxy {
iface1 eth0
iface2 eth1
autosense eth1
}