diff options
author | Pablo Neira Ayuso <pablo@netfilter.org> | 2009-03-20 14:05:31 +0100 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2009-03-20 14:05:31 +0100 |
commit | f7b4b7bd19b16d11491f18891942f6d48c2fcf7e (patch) | |
tree | 800729577e679355b073709e35baaf094e6623a3 /doc | |
parent | 28255df51433846bad67cccb69bb285660ef1667 (diff) | |
download | conntrack-tools-f7b4b7bd19b16d11491f18891942f6d48c2fcf7e.tar.gz conntrack-tools-f7b4b7bd19b16d11491f18891942f6d48c2fcf7e.zip |
udp: fix missing scope_id in the socket creation
This patch fixes an EINVAL error returned by bind() when opening
an UDP server socket to propagate state-changes over the dedicated
link. This patch also includes the change of the example
configuration files in case that you want to use UDP over IPv6.
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/sync/alarm/conntrackd.conf | 8 | ||||
-rw-r--r-- | doc/sync/ftfw/conntrackd.conf | 8 | ||||
-rw-r--r-- | doc/sync/notrack/conntrackd.conf | 8 |
3 files changed, 24 insertions, 0 deletions
diff --git a/doc/sync/alarm/conntrackd.conf b/doc/sync/alarm/conntrackd.conf index 9197db3..8eb22dd 100644 --- a/doc/sync/alarm/conntrackd.conf +++ b/doc/sync/alarm/conntrackd.conf @@ -139,12 +139,20 @@ Sync { # UDP address that this firewall uses to listen to events. # # IPv4_address 192.168.2.100 + # + # or you may want to use an IPv6 address: + # + # IPv6_address fe80::215:58ff:fe28:5a27 # # Destination UDP address that receives events, ie. the other # firewall's dedicated link address. # # IPv4_Destination_Address 192.168.2.101 + # + # or you may want to use an IPv6 address: + # + # IPv6_Destination_Address fe80::2d0:59ff:fe2a:775c # # UDP port used diff --git a/doc/sync/ftfw/conntrackd.conf b/doc/sync/ftfw/conntrackd.conf index be78850..059f7b3 100644 --- a/doc/sync/ftfw/conntrackd.conf +++ b/doc/sync/ftfw/conntrackd.conf @@ -148,12 +148,20 @@ Sync { # UDP address that this firewall uses to listen to events. # # IPv4_address 192.168.2.100 + # + # or you may want to use an IPv6 address: + # + # IPv6_address fe80::215:58ff:fe28:5a27 # # Destination UDP address that receives events, ie. the other # firewall's dedicated link address. # # IPv4_Destination_Address 192.168.2.101 + # + # or you may want to use an IPv6 address: + # + # IPv6_Destination_Address fe80::2d0:59ff:fe2a:775c # # UDP port used diff --git a/doc/sync/notrack/conntrackd.conf b/doc/sync/notrack/conntrackd.conf index 173eab5..96ef547 100644 --- a/doc/sync/notrack/conntrackd.conf +++ b/doc/sync/notrack/conntrackd.conf @@ -129,12 +129,20 @@ Sync { # UDP address that this firewall uses to listen to events. # # IPv4_address 192.168.2.100 + # + # or you may want to use an IPv6 address: + # + # IPv6_address fe80::215:58ff:fe28:5a27 # # Destination UDP address that receives events, ie. the other # firewall's dedicated link address. # # IPv4_Destination_Address 192.168.2.101 + # + # or you may want to use an IPv6 address: + # + # IPv6_Destination_Address fe80::2d0:59ff:fe2a:775c # # UDP port used |