Redundancy Group Announcement Protocol
RGAP allows one group of hosts to be aware about IP addresses of another group of hosts. For example, it is useful for updating load balancers on dynamic IP addresses of backend servers.
Announcements are propagated in short HMAC-signed UDP messages using unicast or multicast.
This implementation defines two primary parts: agent and listener.
Agent periodically sends unicast or broadcast UDP message to announce it's presense in particular redundancy group.
Listener accepts announces, verifies them and maintains the list of active IP addresses for each redundancy group. At the same time it exposes current list of IP addresses through its output plugins.
RGAP_ADDRESS=127.1.2.3 \
RGAP_PSK=8f1302643b0809279794c5cc47f236561d7442b85d748bd7d1a58adfbe9ff431 \
rgap agent -g 1000 -i 5s
where RGAP_ADDRESS is actual IP address which node exposes to the redundancy group.
rgap listener -c /etc/rgap.yaml
See also configuration example.
rgap genpsk
The file is in YAML syntax with following elements
listen
(list)- (string) listen port addresses. Accepted formats: host:port or host:port@interface or host:port@IP/prefixlen. In later case rgap will find an interface with IP address which belongs to network specified by IP/prefixlen. Examples:
239.82.71.65:8271
,239.82.71.65:8271@eth0
,239.82.71.65:[email protected]/16
.
- (string) listen port addresses. Accepted formats: host:port or host:port@interface or host:port@IP/prefixlen. In later case rgap will find an interface with IP address which belongs to network specified by IP/prefixlen. Examples:
groups
(list)- (dictionary)
id
(uint64) redundancy group identifier.psk
(string) hex-encoded pre-shared key for message authentication.expire
(duration) how long announced address considered active past the timestamp specified in the announcement.clock_skew
(duration) allowed skew between local clock and time in announcement message.readiness_delay
(duration) startup delay before group is reported as READY to output plugins. Useful to supress uninitialized group output after startup.
- (dictionary)
outputs
(list)- (dictionary)
kind
(string) name of output pluginspec
(any) YAML config of corresponding output plugin
- (dictionary)
Dummy plugin which doesn't do anything.
Periodically dumps groups contents to the application log.
Configuration:
interval
(duration) interval between dumps into log.
Logs group membership changes to the application log.
Configuration:
only_groups
(list or null) list of group identifiers to subscribe to. All groups are logged if this list isnull
or this key is not specified.- (uint64) group ID.
Periodically dumps group contents into hosts file.
Configuration:
interval
(duration) interval between periodic dumps.filename
(string) path to hosts filemappings
(list)- (dictionary)
group
(uint64) group which addresses should be mapped to given hostname in hosts filehostname
(string) hostname specified for group addresses in hosts filefallback_addresses
(list)- (string) addresses to use instead of group addresses if group is empty
- (dictionary)
prepend_lines
(list)- (string) lines to prepend before output. Useful for comment lines.
append_lines
(list)- (string) lines to append after output. Useful for comment lines.
Runs DNS server responding to queries for names mapped to group addresses.
Configuration:
bind_address
(string)mappings
(dictionary)- *DOMAIN NAME* (dictionary)
group
(uint64) group ID which addresses whould be returned in response to DNS queries for hostname *DOMAIN NAME*.fallback_addresses
(list)- (string) addresses to use instead of group addresses if group is empty
- *DOMAIN NAME* (dictionary)
compress
(boolean) compress DNS response messagenon_authoritative
(boolean) if true, do not set AA bit for DNS response messages
Pipes active addresses of group into stdin of external command after each membership change. Redirects stdout and stderr of external command to output into application log.
Configuration:
group
(uint64) identifier of group.command
(list of strings) command and arguments.timeout
(duration) execution time limit for the command.retries
(int) attempts to retry failed command. Default is1
.wait_delay
(duration) delay to wait for I/O to complete after process termination. Zero value disables I/O cancellation logic. Default is100ms
.
listen:
- 239.82.71.65:8271 # or "239.82.71.65:8271@eth0" or "239.82.71.65:[email protected]/16"
- 127.0.0.1:8282
groups:
- id: 1000
psk: 8f1302643b0809279794c5cc47f236561d7442b85d748bd7d1a58adfbe9ff431
expire: 15s
clock_skew: 10s
readiness_delay: 15s
outputs:
- kind: noop
spec:
- kind: log
spec:
interval: 60s
- kind: eventlog
spec: # or skip spec at all
only_groups: # or specify null for all groups
- 1000
- kind: hostsfile
spec:
interval: 5s
filename: hosts
mappings:
- group: 1000
hostname: worker
fallback_addresses:
- 1.2.3.4
- 5.6.7.8
prepend_lines:
- "# Auto-generated hosts file"
- "# Do not edit manually, changes will be overwritten by RGAP"
append_lines:
- "# End of auto-generated file"
- kind: dns
spec:
bind_address: :8253
mappings:
worker.example.com:
group: 1000
fallback_addresses:
- 1.2.3.4
- 5.6.7.8
worker.example.org:
group: 1000
fallback_addresses:
- 1.2.3.4
- 5.6.7.8
- kind: command
spec:
group: 1000
command:
- "/home/user/sync.sh"
- "--group"
- "1000"
timeout: 5s
retries: 3
Run rgap help
to see details of command line interface.