-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update README and .conf sample to reflect changes in syntax
Signed-off-by: Joachim Wiberg <[email protected]>
- Loading branch information
Showing
2 changed files
with
39 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,33 @@ | ||
# /etc/querierd.conf: sample configuration | ||
# Global settings followed by per-interface enable/disable of features. | ||
# By default, querierd is disabled on all interfaces. | ||
|
||
# NOTE: it is strongly recommend leaving router-timeout commented-out! | ||
# This is automatically calculated from the query interval and | ||
# robustness according to RFC. The setting is just for override | ||
# in particular use-cases. | ||
# Query interval can be [1,1024], default 125. Recommended not go below 10 | ||
#query-interval 125 | ||
|
||
#query-interval 125 | ||
# The interval inside the query-interval that clients should respond | ||
#query-response-interval 10 | ||
#robustness 2 | ||
#router-timeout 255 | ||
|
||
# Last member query interval [1,1024], default 1. The igmp-robustness | ||
# setting controls the last member query count. | ||
#query-last-member-interval 1 | ||
|
||
# Querier's robustness can be [2,10], default 2. Recommended to use 2 | ||
#robustness 2 | ||
|
||
# Controls the "other querier present interval", used to detect when an | ||
# elected querier stops sending queries. Leave this commented-out, it | ||
# is only available to override particular use-cases and interip with | ||
# devices that do not follow the RFC. When commented out, the timeout | ||
# is calculated from the query interval and robustness according to RFC. | ||
#router-timeout 255 | ||
|
||
# IP Option Router Alert is enabled by default, for interop with stacks | ||
# that hard-code the length of the IP header | ||
#no router-alert | ||
|
||
# Enable and one of the IGMP versions to use at startup, with fallback | ||
# to older versions if older clients appear. | ||
#iface vlan1 enable igmpv3 | ||
#iface vlan2 enable igmpv3 | ||
#iface vlan3 enable igmpv3 | ||
|