├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ ├── support-help-request-template.md │ └── use-for-any-other-issue.md └── workflows │ ├── build.yml │ └── codeql.yml ├── .gitignore ├── .indent.pro ├── AUTHOR ├── CONTRIBUTORS ├── COPYING ├── ChangeLog ├── Dockerfile.in ├── INSTALL ├── Makefile.am ├── README.kernel_versions ├── README.md ├── TODO ├── autoconf ├── autogen.sh ├── bin └── .gitignore ├── bin_install └── Makefile.am ├── configure.ac ├── doc ├── .gitignore ├── KEEPALIVED-MIB.txt ├── Makefile.am ├── NOTES ├── NOTE_vrrp_vmac.txt ├── README.sphinx ├── VRRP-MIB.txt ├── VRRPv3-MIB.txt ├── doc.play │ ├── conf.py │ ├── genhash.rst │ ├── index.rst │ ├── keepalived.conf.rst │ ├── keepalived.rst │ ├── vertopal.com_genhash.rst │ ├── vertopal.com_keepalived.conf.rst │ └── vertopal.com_keepalived.rst ├── keepalived.conf.SYNOPSIS ├── man │ ├── man1 │ │ ├── .gitignore │ │ ├── Makefile.am │ │ └── genhash.1.in │ ├── man5 │ │ ├── .gitignore │ │ ├── Makefile.am │ │ └── keepalived.conf.5.in │ └── man8 │ │ ├── .gitignore │ │ ├── Makefile.am │ │ └── keepalived.8.in ├── samples │ ├── keepalived.conf.HTTP_GET.port │ ├── keepalived.conf.IPv6 │ ├── keepalived.conf.PING_CHECK │ ├── keepalived.conf.SMTP_CHECK │ ├── keepalived.conf.SSL_GET │ ├── keepalived.conf.UDP_CHECK │ ├── keepalived.conf.conditional_conf │ ├── keepalived.conf.fwmark │ ├── keepalived.conf.inhibit │ ├── keepalived.conf.misc_check │ ├── keepalived.conf.misc_check_arg │ ├── keepalived.conf.quorum │ ├── keepalived.conf.sample │ ├── keepalived.conf.status_code │ ├── keepalived.conf.track_interface │ ├── keepalived.conf.virtual_server_group │ ├── keepalived.conf.virtualhost │ ├── keepalived.conf.vrrp │ ├── keepalived.conf.vrrp.localcheck │ ├── keepalived.conf.vrrp.lvs_syncd │ ├── keepalived.conf.vrrp.routes │ ├── keepalived.conf.vrrp.rules │ ├── keepalived.conf.vrrp.scripts │ ├── keepalived.conf.vrrp.static_ipaddress │ ├── keepalived.conf.vrrp.sync │ ├── sample.misccheck.smbcheck.sh │ └── sample_notify_fifo.sh └── source │ ├── _static │ ├── .gitignore │ └── .gitkeep │ ├── _templates │ ├── .gitignore │ └── .gitkeep │ ├── about.rst │ ├── case_study_failover.rst │ ├── case_study_healthcheck.rst │ ├── case_study_mixing.rst │ ├── conf.py │ ├── configuration_synopsis.rst │ ├── images │ └── software_design.png │ ├── index.rst │ ├── installing_keepalived.rst │ ├── introduction.rst │ ├── license.rst │ ├── load_balancing_techniques.rst │ ├── programs_synopsis.rst │ ├── protocol_support.rst │ ├── scheduling_algorithms.rst │ ├── snmp_support.rst │ ├── software_design.rst │ ├── terminology.rst │ ├── todo.rst │ └── tools │ └── pydoctheme │ ├── static │ └── pydoctheme.css │ └── theme.conf ├── docker ├── README └── keepalived.conf ├── goodies ├── arpreset.pl └── check_conditional_tests ├── keepalived.spec.in ├── keepalived ├── .gitignore ├── Makefile.am ├── bfd │ ├── Makefile.am │ ├── bfd.c │ ├── bfd_daemon.c │ ├── bfd_data.c │ ├── bfd_event.c │ ├── bfd_parser.c │ └── bfd_scheduler.c ├── check │ ├── Makefile.am │ ├── check_api.c │ ├── check_bfd.c │ ├── check_daemon.c │ ├── check_data.c │ ├── check_dns.c │ ├── check_file.c │ ├── check_genhash.c │ ├── check_http.c │ ├── check_misc.c │ ├── check_nftables.c │ ├── check_parser.c │ ├── check_ping.c │ ├── check_print.c │ ├── check_smtp.c │ ├── check_snmp.c │ ├── check_ssl.c │ ├── check_tcp.c │ ├── check_udp.c │ ├── ipvswrapper.c │ ├── ipwrapper.c │ └── libipvs.c ├── core │ ├── Makefile.am │ ├── config_notify.c │ ├── daemon.c │ ├── global_data.c │ ├── global_parser.c │ ├── keepalived_netlink.c │ ├── layer4.c │ ├── libnl_link.c │ ├── main.c │ ├── namespaces.c │ ├── nftables.c │ ├── pidfile.c │ ├── reload_monitor.c │ ├── sanitizer.c │ ├── smtp.c │ ├── snmp.c │ └── track_process.c ├── dbus │ ├── .gitignore │ ├── Makefile.am │ ├── org.keepalived.Vrrp1.Instance.xml │ ├── org.keepalived.Vrrp1.Vrrp.xml_template │ └── org.keepalived.Vrrp1.conf ├── etc │ ├── .gitignore │ ├── Makefile.am │ ├── init.d │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── keepalived │ │ └── keepalived.suse.init.in │ ├── init │ │ ├── .gitignore │ │ ├── Makefile.am │ │ └── keepalived.conf.in │ ├── keepalived │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── keepalived.conf │ │ └── keepalived.conf.sample.in │ ├── openrc │ │ └── keepalived │ └── sysconfig │ │ ├── .gitignore │ │ ├── Makefile.am │ │ └── keepalived.in ├── include │ ├── bfd.h │ ├── bfd_daemon.h │ ├── bfd_data.h │ ├── bfd_event.h │ ├── bfd_parser.h │ ├── bfd_scheduler.h │ ├── check_api.h │ ├── check_bfd.h │ ├── check_daemon.h │ ├── check_data.h │ ├── check_dns.h │ ├── check_file.h │ ├── check_genhash.h │ ├── check_http.h │ ├── check_misc.h │ ├── check_nftables.h │ ├── check_parser.h │ ├── check_ping.h │ ├── check_print.h │ ├── check_smtp.h │ ├── check_snmp.h │ ├── check_ssl.h │ ├── check_tcp.h │ ├── check_udp.h │ ├── config_notify.h │ ├── daemon.h │ ├── global_data.h │ ├── global_json.h │ ├── global_parser.h │ ├── ip_vs.h │ ├── ipvswrapper.h │ ├── ipwrapper.h │ ├── keepalived_netlink.h │ ├── layer4.h │ ├── libipvs.h │ ├── libnl_link.h │ ├── main.h │ ├── namespaces.h │ ├── nftables.h │ ├── pidfile.h │ ├── reload_monitor.h │ ├── sanitizer.h │ ├── smtp.h │ ├── snmp.h │ ├── track_file.h │ ├── track_process.h │ ├── tracker.h │ ├── vrrp.h │ ├── vrrp_arp.h │ ├── vrrp_daemon.h │ ├── vrrp_data.h │ ├── vrrp_dbus.h │ ├── vrrp_firewall.h │ ├── vrrp_if.h │ ├── vrrp_if_config.h │ ├── vrrp_ip_rule_route_parser.h │ ├── vrrp_ipaddress.h │ ├── vrrp_iproute.h │ ├── vrrp_iprule.h │ ├── vrrp_ipsecah.h │ ├── vrrp_ipset.h │ ├── vrrp_iptables.h │ ├── vrrp_iptables_calls.h │ ├── vrrp_json.h │ ├── vrrp_ndisc.h │ ├── vrrp_nftables.h │ ├── vrrp_notify.h │ ├── vrrp_parser.h │ ├── vrrp_print.h │ ├── vrrp_scheduler.h │ ├── vrrp_snmp.h │ ├── vrrp_sock.h │ ├── vrrp_static_track.h │ ├── vrrp_sync.h │ ├── vrrp_track.h │ ├── vrrp_vmac.h │ └── vrrp_vmac_nm.h ├── keepalived-non-root.service.in ├── keepalived.config-opts.in ├── keepalived.service.in ├── main.c ├── trackers │ ├── Makefile.am │ └── track_file.c └── vrrp │ ├── Makefile.am │ ├── vrrp.c │ ├── vrrp_arp.c │ ├── vrrp_daemon.c │ ├── vrrp_data.c │ ├── vrrp_dbus.c │ ├── vrrp_firewall.c │ ├── vrrp_if.c │ ├── vrrp_if_config.c │ ├── vrrp_ip_rule_route_parser.c │ ├── vrrp_ipaddress.c │ ├── vrrp_iproute.c │ ├── vrrp_iprule.c │ ├── vrrp_ipsecah.c │ ├── vrrp_ipset.c │ ├── vrrp_iptables.c │ ├── vrrp_iptables_calls.c │ ├── vrrp_json.c │ ├── vrrp_ndisc.c │ ├── vrrp_nftables.c │ ├── vrrp_notify.c │ ├── vrrp_parser.c │ ├── vrrp_print.c │ ├── vrrp_scheduler.c │ ├── vrrp_snmp.c │ ├── vrrp_static_track.c │ ├── vrrp_sync.c │ ├── vrrp_track.c │ ├── vrrp_vmac.c │ └── vrrp_vmac_nm.c ├── lib ├── .gitignore ├── Makefile.am ├── align.h ├── assert.c ├── assert_debug.h ├── bitops.h ├── config_warnings.h.in ├── container.h ├── html.c ├── html.h ├── json_writer.c ├── json_writer.h ├── keepalived_magic.h ├── list_head.c ├── list_head.h ├── logger.c ├── logger.h ├── memory.c ├── memory.h ├── notify.c ├── notify.h ├── parser.c ├── parser.h ├── process.c ├── process.h ├── rbtree.c ├── rbtree.h ├── rbtree_augmented.h ├── rbtree_ka.h ├── rbtree_types.h ├── rttables.c ├── rttables.h ├── scheduler.c ├── scheduler.h ├── signals.c ├── signals.h ├── sockaddr.h ├── systemd.c ├── systemd.h ├── timer.c ├── timer.h ├── utils.c ├── utils.h ├── vector.c ├── vector.h └── warnings.h ├── m4 ├── .gitignore └── as-ac-expand.m4 ├── snap-tools └── keepalived-wrapper ├── snap ├── hooks │ ├── install │ └── post-refresh └── snapcraft.yaml ├── test ├── .gitignore ├── Makefile ├── ci │ ├── build.sh │ └── setup.sh ├── genhash-test.sh ├── mk_if ├── mk_lots ├── ncat_resp.sh ├── netns-test.sh ├── tcp_client.c ├── tcp_server.c └── tcp_server_html.h └── tools ├── git-bisect ├── json_tracking ├── isolate ├── make_conf.py ├── template_vrrp_instance └── vrrp_recap └── timed_reload /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/support-help-request-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/.github/ISSUE_TEMPLATE/support-help-request-template.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/use-for-any-other-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/.github/ISSUE_TEMPLATE/use-for-any-other-issue.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/.gitignore -------------------------------------------------------------------------------- /.indent.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/.indent.pro -------------------------------------------------------------------------------- /AUTHOR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/AUTHOR -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/ChangeLog -------------------------------------------------------------------------------- /Dockerfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/Dockerfile.in -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.kernel_versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/README.kernel_versions -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/TODO -------------------------------------------------------------------------------- /autoconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/autoconf -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/autogen.sh -------------------------------------------------------------------------------- /bin/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin_install/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/bin_install/Makefile.am -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/configure.ac -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /doc/KEEPALIVED-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/KEEPALIVED-MIB.txt -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/NOTES -------------------------------------------------------------------------------- /doc/NOTE_vrrp_vmac.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/NOTE_vrrp_vmac.txt -------------------------------------------------------------------------------- /doc/README.sphinx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/README.sphinx -------------------------------------------------------------------------------- /doc/VRRP-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/VRRP-MIB.txt -------------------------------------------------------------------------------- /doc/VRRPv3-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/VRRPv3-MIB.txt -------------------------------------------------------------------------------- /doc/doc.play/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/doc.play/conf.py -------------------------------------------------------------------------------- /doc/doc.play/genhash.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/doc.play/genhash.rst -------------------------------------------------------------------------------- /doc/doc.play/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/doc.play/index.rst -------------------------------------------------------------------------------- /doc/doc.play/keepalived.conf.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/doc.play/keepalived.conf.rst -------------------------------------------------------------------------------- /doc/doc.play/keepalived.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/doc.play/keepalived.rst -------------------------------------------------------------------------------- /doc/doc.play/vertopal.com_genhash.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/doc.play/vertopal.com_genhash.rst -------------------------------------------------------------------------------- /doc/doc.play/vertopal.com_keepalived.conf.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/doc.play/vertopal.com_keepalived.conf.rst -------------------------------------------------------------------------------- /doc/doc.play/vertopal.com_keepalived.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/doc.play/vertopal.com_keepalived.rst -------------------------------------------------------------------------------- /doc/keepalived.conf.SYNOPSIS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/keepalived.conf.SYNOPSIS -------------------------------------------------------------------------------- /doc/man/man1/.gitignore: -------------------------------------------------------------------------------- 1 | *.1 2 | -------------------------------------------------------------------------------- /doc/man/man1/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/man/man1/Makefile.am -------------------------------------------------------------------------------- /doc/man/man1/genhash.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/man/man1/genhash.1.in -------------------------------------------------------------------------------- /doc/man/man5/.gitignore: -------------------------------------------------------------------------------- 1 | *.5 2 | -------------------------------------------------------------------------------- /doc/man/man5/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/man/man5/Makefile.am -------------------------------------------------------------------------------- /doc/man/man5/keepalived.conf.5.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/man/man5/keepalived.conf.5.in -------------------------------------------------------------------------------- /doc/man/man8/.gitignore: -------------------------------------------------------------------------------- 1 | *.8 2 | -------------------------------------------------------------------------------- /doc/man/man8/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/man/man8/Makefile.am -------------------------------------------------------------------------------- /doc/man/man8/keepalived.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/man/man8/keepalived.8.in -------------------------------------------------------------------------------- /doc/samples/keepalived.conf.HTTP_GET.port: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/samples/keepalived.conf.HTTP_GET.port -------------------------------------------------------------------------------- /doc/samples/keepalived.conf.IPv6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/samples/keepalived.conf.IPv6 -------------------------------------------------------------------------------- /doc/samples/keepalived.conf.PING_CHECK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/samples/keepalived.conf.PING_CHECK -------------------------------------------------------------------------------- /doc/samples/keepalived.conf.SMTP_CHECK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/samples/keepalived.conf.SMTP_CHECK -------------------------------------------------------------------------------- /doc/samples/keepalived.conf.SSL_GET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/samples/keepalived.conf.SSL_GET -------------------------------------------------------------------------------- /doc/samples/keepalived.conf.UDP_CHECK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/samples/keepalived.conf.UDP_CHECK -------------------------------------------------------------------------------- /doc/samples/keepalived.conf.conditional_conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/samples/keepalived.conf.conditional_conf -------------------------------------------------------------------------------- /doc/samples/keepalived.conf.fwmark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/samples/keepalived.conf.fwmark -------------------------------------------------------------------------------- /doc/samples/keepalived.conf.inhibit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/samples/keepalived.conf.inhibit -------------------------------------------------------------------------------- /doc/samples/keepalived.conf.misc_check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/samples/keepalived.conf.misc_check -------------------------------------------------------------------------------- /doc/samples/keepalived.conf.misc_check_arg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/samples/keepalived.conf.misc_check_arg -------------------------------------------------------------------------------- /doc/samples/keepalived.conf.quorum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/samples/keepalived.conf.quorum -------------------------------------------------------------------------------- /doc/samples/keepalived.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/samples/keepalived.conf.sample -------------------------------------------------------------------------------- /doc/samples/keepalived.conf.status_code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/samples/keepalived.conf.status_code -------------------------------------------------------------------------------- /doc/samples/keepalived.conf.track_interface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/samples/keepalived.conf.track_interface -------------------------------------------------------------------------------- /doc/samples/keepalived.conf.virtual_server_group: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/samples/keepalived.conf.virtual_server_group -------------------------------------------------------------------------------- /doc/samples/keepalived.conf.virtualhost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/samples/keepalived.conf.virtualhost -------------------------------------------------------------------------------- /doc/samples/keepalived.conf.vrrp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/samples/keepalived.conf.vrrp -------------------------------------------------------------------------------- /doc/samples/keepalived.conf.vrrp.localcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/samples/keepalived.conf.vrrp.localcheck -------------------------------------------------------------------------------- /doc/samples/keepalived.conf.vrrp.lvs_syncd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/samples/keepalived.conf.vrrp.lvs_syncd -------------------------------------------------------------------------------- /doc/samples/keepalived.conf.vrrp.routes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/samples/keepalived.conf.vrrp.routes -------------------------------------------------------------------------------- /doc/samples/keepalived.conf.vrrp.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/samples/keepalived.conf.vrrp.rules -------------------------------------------------------------------------------- /doc/samples/keepalived.conf.vrrp.scripts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/samples/keepalived.conf.vrrp.scripts -------------------------------------------------------------------------------- /doc/samples/keepalived.conf.vrrp.static_ipaddress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/samples/keepalived.conf.vrrp.static_ipaddress -------------------------------------------------------------------------------- /doc/samples/keepalived.conf.vrrp.sync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/samples/keepalived.conf.vrrp.sync -------------------------------------------------------------------------------- /doc/samples/sample.misccheck.smbcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/samples/sample.misccheck.smbcheck.sh -------------------------------------------------------------------------------- /doc/samples/sample_notify_fifo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/samples/sample_notify_fifo.sh -------------------------------------------------------------------------------- /doc/source/_static/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/source/_static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/source/_templates/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/source/_templates/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/source/about.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/source/about.rst -------------------------------------------------------------------------------- /doc/source/case_study_failover.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/source/case_study_failover.rst -------------------------------------------------------------------------------- /doc/source/case_study_healthcheck.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/source/case_study_healthcheck.rst -------------------------------------------------------------------------------- /doc/source/case_study_mixing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/source/case_study_mixing.rst -------------------------------------------------------------------------------- /doc/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/source/conf.py -------------------------------------------------------------------------------- /doc/source/configuration_synopsis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/source/configuration_synopsis.rst -------------------------------------------------------------------------------- /doc/source/images/software_design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/source/images/software_design.png -------------------------------------------------------------------------------- /doc/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/source/index.rst -------------------------------------------------------------------------------- /doc/source/installing_keepalived.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/source/installing_keepalived.rst -------------------------------------------------------------------------------- /doc/source/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/source/introduction.rst -------------------------------------------------------------------------------- /doc/source/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/source/license.rst -------------------------------------------------------------------------------- /doc/source/load_balancing_techniques.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/source/load_balancing_techniques.rst -------------------------------------------------------------------------------- /doc/source/programs_synopsis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/source/programs_synopsis.rst -------------------------------------------------------------------------------- /doc/source/protocol_support.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/source/protocol_support.rst -------------------------------------------------------------------------------- /doc/source/scheduling_algorithms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/source/scheduling_algorithms.rst -------------------------------------------------------------------------------- /doc/source/snmp_support.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/source/snmp_support.rst -------------------------------------------------------------------------------- /doc/source/software_design.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/source/software_design.rst -------------------------------------------------------------------------------- /doc/source/terminology.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/source/terminology.rst -------------------------------------------------------------------------------- /doc/source/todo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/source/todo.rst -------------------------------------------------------------------------------- /doc/source/tools/pydoctheme/static/pydoctheme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/source/tools/pydoctheme/static/pydoctheme.css -------------------------------------------------------------------------------- /doc/source/tools/pydoctheme/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/doc/source/tools/pydoctheme/theme.conf -------------------------------------------------------------------------------- /docker/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/docker/README -------------------------------------------------------------------------------- /docker/keepalived.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/docker/keepalived.conf -------------------------------------------------------------------------------- /goodies/arpreset.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/goodies/arpreset.pl -------------------------------------------------------------------------------- /goodies/check_conditional_tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/goodies/check_conditional_tests -------------------------------------------------------------------------------- /keepalived.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived.spec.in -------------------------------------------------------------------------------- /keepalived/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/.gitignore -------------------------------------------------------------------------------- /keepalived/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/Makefile.am -------------------------------------------------------------------------------- /keepalived/bfd/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/bfd/Makefile.am -------------------------------------------------------------------------------- /keepalived/bfd/bfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/bfd/bfd.c -------------------------------------------------------------------------------- /keepalived/bfd/bfd_daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/bfd/bfd_daemon.c -------------------------------------------------------------------------------- /keepalived/bfd/bfd_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/bfd/bfd_data.c -------------------------------------------------------------------------------- /keepalived/bfd/bfd_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/bfd/bfd_event.c -------------------------------------------------------------------------------- /keepalived/bfd/bfd_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/bfd/bfd_parser.c -------------------------------------------------------------------------------- /keepalived/bfd/bfd_scheduler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/bfd/bfd_scheduler.c -------------------------------------------------------------------------------- /keepalived/check/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/check/Makefile.am -------------------------------------------------------------------------------- /keepalived/check/check_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/check/check_api.c -------------------------------------------------------------------------------- /keepalived/check/check_bfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/check/check_bfd.c -------------------------------------------------------------------------------- /keepalived/check/check_daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/check/check_daemon.c -------------------------------------------------------------------------------- /keepalived/check/check_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/check/check_data.c -------------------------------------------------------------------------------- /keepalived/check/check_dns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/check/check_dns.c -------------------------------------------------------------------------------- /keepalived/check/check_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/check/check_file.c -------------------------------------------------------------------------------- /keepalived/check/check_genhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/check/check_genhash.c -------------------------------------------------------------------------------- /keepalived/check/check_http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/check/check_http.c -------------------------------------------------------------------------------- /keepalived/check/check_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/check/check_misc.c -------------------------------------------------------------------------------- /keepalived/check/check_nftables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/check/check_nftables.c -------------------------------------------------------------------------------- /keepalived/check/check_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/check/check_parser.c -------------------------------------------------------------------------------- /keepalived/check/check_ping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/check/check_ping.c -------------------------------------------------------------------------------- /keepalived/check/check_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/check/check_print.c -------------------------------------------------------------------------------- /keepalived/check/check_smtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/check/check_smtp.c -------------------------------------------------------------------------------- /keepalived/check/check_snmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/check/check_snmp.c -------------------------------------------------------------------------------- /keepalived/check/check_ssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/check/check_ssl.c -------------------------------------------------------------------------------- /keepalived/check/check_tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/check/check_tcp.c -------------------------------------------------------------------------------- /keepalived/check/check_udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/check/check_udp.c -------------------------------------------------------------------------------- /keepalived/check/ipvswrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/check/ipvswrapper.c -------------------------------------------------------------------------------- /keepalived/check/ipwrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/check/ipwrapper.c -------------------------------------------------------------------------------- /keepalived/check/libipvs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/check/libipvs.c -------------------------------------------------------------------------------- /keepalived/core/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/core/Makefile.am -------------------------------------------------------------------------------- /keepalived/core/config_notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/core/config_notify.c -------------------------------------------------------------------------------- /keepalived/core/daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/core/daemon.c -------------------------------------------------------------------------------- /keepalived/core/global_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/core/global_data.c -------------------------------------------------------------------------------- /keepalived/core/global_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/core/global_parser.c -------------------------------------------------------------------------------- /keepalived/core/keepalived_netlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/core/keepalived_netlink.c -------------------------------------------------------------------------------- /keepalived/core/layer4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/core/layer4.c -------------------------------------------------------------------------------- /keepalived/core/libnl_link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/core/libnl_link.c -------------------------------------------------------------------------------- /keepalived/core/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/core/main.c -------------------------------------------------------------------------------- /keepalived/core/namespaces.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/core/namespaces.c -------------------------------------------------------------------------------- /keepalived/core/nftables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/core/nftables.c -------------------------------------------------------------------------------- /keepalived/core/pidfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/core/pidfile.c -------------------------------------------------------------------------------- /keepalived/core/reload_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/core/reload_monitor.c -------------------------------------------------------------------------------- /keepalived/core/sanitizer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/core/sanitizer.c -------------------------------------------------------------------------------- /keepalived/core/smtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/core/smtp.c -------------------------------------------------------------------------------- /keepalived/core/snmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/core/snmp.c -------------------------------------------------------------------------------- /keepalived/core/track_process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/core/track_process.c -------------------------------------------------------------------------------- /keepalived/dbus/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/dbus/.gitignore -------------------------------------------------------------------------------- /keepalived/dbus/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/dbus/Makefile.am -------------------------------------------------------------------------------- /keepalived/dbus/org.keepalived.Vrrp1.Instance.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/dbus/org.keepalived.Vrrp1.Instance.xml -------------------------------------------------------------------------------- /keepalived/dbus/org.keepalived.Vrrp1.Vrrp.xml_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/dbus/org.keepalived.Vrrp1.Vrrp.xml_template -------------------------------------------------------------------------------- /keepalived/dbus/org.keepalived.Vrrp1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/dbus/org.keepalived.Vrrp1.conf -------------------------------------------------------------------------------- /keepalived/etc/.gitignore: -------------------------------------------------------------------------------- 1 | !keepalived 2 | -------------------------------------------------------------------------------- /keepalived/etc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/etc/Makefile.am -------------------------------------------------------------------------------- /keepalived/etc/init.d/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/etc/init.d/.gitignore -------------------------------------------------------------------------------- /keepalived/etc/init.d/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/etc/init.d/Makefile.am -------------------------------------------------------------------------------- /keepalived/etc/init.d/keepalived: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/etc/init.d/keepalived -------------------------------------------------------------------------------- /keepalived/etc/init.d/keepalived.suse.init.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/etc/init.d/keepalived.suse.init.in -------------------------------------------------------------------------------- /keepalived/etc/init/.gitignore: -------------------------------------------------------------------------------- 1 | keepalived.conf 2 | -------------------------------------------------------------------------------- /keepalived/etc/init/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/etc/init/Makefile.am -------------------------------------------------------------------------------- /keepalived/etc/init/keepalived.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/etc/init/keepalived.conf.in -------------------------------------------------------------------------------- /keepalived/etc/keepalived/.gitignore: -------------------------------------------------------------------------------- 1 | *.sample 2 | -------------------------------------------------------------------------------- /keepalived/etc/keepalived/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/etc/keepalived/Makefile.am -------------------------------------------------------------------------------- /keepalived/etc/keepalived/keepalived.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/etc/keepalived/keepalived.conf -------------------------------------------------------------------------------- /keepalived/etc/keepalived/keepalived.conf.sample.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/etc/keepalived/keepalived.conf.sample.in -------------------------------------------------------------------------------- /keepalived/etc/openrc/keepalived: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/etc/openrc/keepalived -------------------------------------------------------------------------------- /keepalived/etc/sysconfig/.gitignore: -------------------------------------------------------------------------------- 1 | keepalived 2 | -------------------------------------------------------------------------------- /keepalived/etc/sysconfig/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/etc/sysconfig/Makefile.am -------------------------------------------------------------------------------- /keepalived/etc/sysconfig/keepalived.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/etc/sysconfig/keepalived.in -------------------------------------------------------------------------------- /keepalived/include/bfd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/bfd.h -------------------------------------------------------------------------------- /keepalived/include/bfd_daemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/bfd_daemon.h -------------------------------------------------------------------------------- /keepalived/include/bfd_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/bfd_data.h -------------------------------------------------------------------------------- /keepalived/include/bfd_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/bfd_event.h -------------------------------------------------------------------------------- /keepalived/include/bfd_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/bfd_parser.h -------------------------------------------------------------------------------- /keepalived/include/bfd_scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/bfd_scheduler.h -------------------------------------------------------------------------------- /keepalived/include/check_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/check_api.h -------------------------------------------------------------------------------- /keepalived/include/check_bfd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/check_bfd.h -------------------------------------------------------------------------------- /keepalived/include/check_daemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/check_daemon.h -------------------------------------------------------------------------------- /keepalived/include/check_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/check_data.h -------------------------------------------------------------------------------- /keepalived/include/check_dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/check_dns.h -------------------------------------------------------------------------------- /keepalived/include/check_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/check_file.h -------------------------------------------------------------------------------- /keepalived/include/check_genhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/check_genhash.h -------------------------------------------------------------------------------- /keepalived/include/check_http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/check_http.h -------------------------------------------------------------------------------- /keepalived/include/check_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/check_misc.h -------------------------------------------------------------------------------- /keepalived/include/check_nftables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/check_nftables.h -------------------------------------------------------------------------------- /keepalived/include/check_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/check_parser.h -------------------------------------------------------------------------------- /keepalived/include/check_ping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/check_ping.h -------------------------------------------------------------------------------- /keepalived/include/check_print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/check_print.h -------------------------------------------------------------------------------- /keepalived/include/check_smtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/check_smtp.h -------------------------------------------------------------------------------- /keepalived/include/check_snmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/check_snmp.h -------------------------------------------------------------------------------- /keepalived/include/check_ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/check_ssl.h -------------------------------------------------------------------------------- /keepalived/include/check_tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/check_tcp.h -------------------------------------------------------------------------------- /keepalived/include/check_udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/check_udp.h -------------------------------------------------------------------------------- /keepalived/include/config_notify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/config_notify.h -------------------------------------------------------------------------------- /keepalived/include/daemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/daemon.h -------------------------------------------------------------------------------- /keepalived/include/global_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/global_data.h -------------------------------------------------------------------------------- /keepalived/include/global_json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/global_json.h -------------------------------------------------------------------------------- /keepalived/include/global_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/global_parser.h -------------------------------------------------------------------------------- /keepalived/include/ip_vs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/ip_vs.h -------------------------------------------------------------------------------- /keepalived/include/ipvswrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/ipvswrapper.h -------------------------------------------------------------------------------- /keepalived/include/ipwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/ipwrapper.h -------------------------------------------------------------------------------- /keepalived/include/keepalived_netlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/keepalived_netlink.h -------------------------------------------------------------------------------- /keepalived/include/layer4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/layer4.h -------------------------------------------------------------------------------- /keepalived/include/libipvs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/libipvs.h -------------------------------------------------------------------------------- /keepalived/include/libnl_link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/libnl_link.h -------------------------------------------------------------------------------- /keepalived/include/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/main.h -------------------------------------------------------------------------------- /keepalived/include/namespaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/namespaces.h -------------------------------------------------------------------------------- /keepalived/include/nftables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/nftables.h -------------------------------------------------------------------------------- /keepalived/include/pidfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/pidfile.h -------------------------------------------------------------------------------- /keepalived/include/reload_monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/reload_monitor.h -------------------------------------------------------------------------------- /keepalived/include/sanitizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/sanitizer.h -------------------------------------------------------------------------------- /keepalived/include/smtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/smtp.h -------------------------------------------------------------------------------- /keepalived/include/snmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/snmp.h -------------------------------------------------------------------------------- /keepalived/include/track_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/track_file.h -------------------------------------------------------------------------------- /keepalived/include/track_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/track_process.h -------------------------------------------------------------------------------- /keepalived/include/tracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/tracker.h -------------------------------------------------------------------------------- /keepalived/include/vrrp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/vrrp.h -------------------------------------------------------------------------------- /keepalived/include/vrrp_arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/vrrp_arp.h -------------------------------------------------------------------------------- /keepalived/include/vrrp_daemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/vrrp_daemon.h -------------------------------------------------------------------------------- /keepalived/include/vrrp_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/vrrp_data.h -------------------------------------------------------------------------------- /keepalived/include/vrrp_dbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/vrrp_dbus.h -------------------------------------------------------------------------------- /keepalived/include/vrrp_firewall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/vrrp_firewall.h -------------------------------------------------------------------------------- /keepalived/include/vrrp_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/vrrp_if.h -------------------------------------------------------------------------------- /keepalived/include/vrrp_if_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/vrrp_if_config.h -------------------------------------------------------------------------------- /keepalived/include/vrrp_ip_rule_route_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/vrrp_ip_rule_route_parser.h -------------------------------------------------------------------------------- /keepalived/include/vrrp_ipaddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/vrrp_ipaddress.h -------------------------------------------------------------------------------- /keepalived/include/vrrp_iproute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/vrrp_iproute.h -------------------------------------------------------------------------------- /keepalived/include/vrrp_iprule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/vrrp_iprule.h -------------------------------------------------------------------------------- /keepalived/include/vrrp_ipsecah.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/vrrp_ipsecah.h -------------------------------------------------------------------------------- /keepalived/include/vrrp_ipset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/vrrp_ipset.h -------------------------------------------------------------------------------- /keepalived/include/vrrp_iptables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/vrrp_iptables.h -------------------------------------------------------------------------------- /keepalived/include/vrrp_iptables_calls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/vrrp_iptables_calls.h -------------------------------------------------------------------------------- /keepalived/include/vrrp_json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/vrrp_json.h -------------------------------------------------------------------------------- /keepalived/include/vrrp_ndisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/vrrp_ndisc.h -------------------------------------------------------------------------------- /keepalived/include/vrrp_nftables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/vrrp_nftables.h -------------------------------------------------------------------------------- /keepalived/include/vrrp_notify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/vrrp_notify.h -------------------------------------------------------------------------------- /keepalived/include/vrrp_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/vrrp_parser.h -------------------------------------------------------------------------------- /keepalived/include/vrrp_print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/vrrp_print.h -------------------------------------------------------------------------------- /keepalived/include/vrrp_scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/vrrp_scheduler.h -------------------------------------------------------------------------------- /keepalived/include/vrrp_snmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/vrrp_snmp.h -------------------------------------------------------------------------------- /keepalived/include/vrrp_sock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/vrrp_sock.h -------------------------------------------------------------------------------- /keepalived/include/vrrp_static_track.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/vrrp_static_track.h -------------------------------------------------------------------------------- /keepalived/include/vrrp_sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/vrrp_sync.h -------------------------------------------------------------------------------- /keepalived/include/vrrp_track.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/vrrp_track.h -------------------------------------------------------------------------------- /keepalived/include/vrrp_vmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/vrrp_vmac.h -------------------------------------------------------------------------------- /keepalived/include/vrrp_vmac_nm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/include/vrrp_vmac_nm.h -------------------------------------------------------------------------------- /keepalived/keepalived-non-root.service.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/keepalived-non-root.service.in -------------------------------------------------------------------------------- /keepalived/keepalived.config-opts.in: -------------------------------------------------------------------------------- 1 | @CONFIG_OPTIONS@ 2 | -------------------------------------------------------------------------------- /keepalived/keepalived.service.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/keepalived.service.in -------------------------------------------------------------------------------- /keepalived/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/main.c -------------------------------------------------------------------------------- /keepalived/trackers/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/trackers/Makefile.am -------------------------------------------------------------------------------- /keepalived/trackers/track_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/trackers/track_file.c -------------------------------------------------------------------------------- /keepalived/vrrp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/vrrp/Makefile.am -------------------------------------------------------------------------------- /keepalived/vrrp/vrrp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/vrrp/vrrp.c -------------------------------------------------------------------------------- /keepalived/vrrp/vrrp_arp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/vrrp/vrrp_arp.c -------------------------------------------------------------------------------- /keepalived/vrrp/vrrp_daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/vrrp/vrrp_daemon.c -------------------------------------------------------------------------------- /keepalived/vrrp/vrrp_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/vrrp/vrrp_data.c -------------------------------------------------------------------------------- /keepalived/vrrp/vrrp_dbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/vrrp/vrrp_dbus.c -------------------------------------------------------------------------------- /keepalived/vrrp/vrrp_firewall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/vrrp/vrrp_firewall.c -------------------------------------------------------------------------------- /keepalived/vrrp/vrrp_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/vrrp/vrrp_if.c -------------------------------------------------------------------------------- /keepalived/vrrp/vrrp_if_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/vrrp/vrrp_if_config.c -------------------------------------------------------------------------------- /keepalived/vrrp/vrrp_ip_rule_route_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/vrrp/vrrp_ip_rule_route_parser.c -------------------------------------------------------------------------------- /keepalived/vrrp/vrrp_ipaddress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/vrrp/vrrp_ipaddress.c -------------------------------------------------------------------------------- /keepalived/vrrp/vrrp_iproute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/vrrp/vrrp_iproute.c -------------------------------------------------------------------------------- /keepalived/vrrp/vrrp_iprule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/vrrp/vrrp_iprule.c -------------------------------------------------------------------------------- /keepalived/vrrp/vrrp_ipsecah.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/vrrp/vrrp_ipsecah.c -------------------------------------------------------------------------------- /keepalived/vrrp/vrrp_ipset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/vrrp/vrrp_ipset.c -------------------------------------------------------------------------------- /keepalived/vrrp/vrrp_iptables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/vrrp/vrrp_iptables.c -------------------------------------------------------------------------------- /keepalived/vrrp/vrrp_iptables_calls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/vrrp/vrrp_iptables_calls.c -------------------------------------------------------------------------------- /keepalived/vrrp/vrrp_json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/vrrp/vrrp_json.c -------------------------------------------------------------------------------- /keepalived/vrrp/vrrp_ndisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/vrrp/vrrp_ndisc.c -------------------------------------------------------------------------------- /keepalived/vrrp/vrrp_nftables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/vrrp/vrrp_nftables.c -------------------------------------------------------------------------------- /keepalived/vrrp/vrrp_notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/vrrp/vrrp_notify.c -------------------------------------------------------------------------------- /keepalived/vrrp/vrrp_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/vrrp/vrrp_parser.c -------------------------------------------------------------------------------- /keepalived/vrrp/vrrp_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/vrrp/vrrp_print.c -------------------------------------------------------------------------------- /keepalived/vrrp/vrrp_scheduler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/vrrp/vrrp_scheduler.c -------------------------------------------------------------------------------- /keepalived/vrrp/vrrp_snmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/vrrp/vrrp_snmp.c -------------------------------------------------------------------------------- /keepalived/vrrp/vrrp_static_track.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/vrrp/vrrp_static_track.c -------------------------------------------------------------------------------- /keepalived/vrrp/vrrp_sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/vrrp/vrrp_sync.c -------------------------------------------------------------------------------- /keepalived/vrrp/vrrp_track.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/vrrp/vrrp_track.c -------------------------------------------------------------------------------- /keepalived/vrrp/vrrp_vmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/vrrp/vrrp_vmac.c -------------------------------------------------------------------------------- /keepalived/vrrp/vrrp_vmac_nm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/keepalived/vrrp/vrrp_vmac_nm.c -------------------------------------------------------------------------------- /lib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/lib/.gitignore -------------------------------------------------------------------------------- /lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/lib/Makefile.am -------------------------------------------------------------------------------- /lib/align.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/lib/align.h -------------------------------------------------------------------------------- /lib/assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/lib/assert.c -------------------------------------------------------------------------------- /lib/assert_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/lib/assert_debug.h -------------------------------------------------------------------------------- /lib/bitops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/lib/bitops.h -------------------------------------------------------------------------------- /lib/config_warnings.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/lib/config_warnings.h.in -------------------------------------------------------------------------------- /lib/container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/lib/container.h -------------------------------------------------------------------------------- /lib/html.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/lib/html.c -------------------------------------------------------------------------------- /lib/html.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/lib/html.h -------------------------------------------------------------------------------- /lib/json_writer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/lib/json_writer.c -------------------------------------------------------------------------------- /lib/json_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/lib/json_writer.h -------------------------------------------------------------------------------- /lib/keepalived_magic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/lib/keepalived_magic.h -------------------------------------------------------------------------------- /lib/list_head.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/lib/list_head.c -------------------------------------------------------------------------------- /lib/list_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/lib/list_head.h -------------------------------------------------------------------------------- /lib/logger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/lib/logger.c -------------------------------------------------------------------------------- /lib/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/lib/logger.h -------------------------------------------------------------------------------- /lib/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/lib/memory.c -------------------------------------------------------------------------------- /lib/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/lib/memory.h -------------------------------------------------------------------------------- /lib/notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/lib/notify.c -------------------------------------------------------------------------------- /lib/notify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/lib/notify.h -------------------------------------------------------------------------------- /lib/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/lib/parser.c -------------------------------------------------------------------------------- /lib/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/lib/parser.h -------------------------------------------------------------------------------- /lib/process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/lib/process.c -------------------------------------------------------------------------------- /lib/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/lib/process.h -------------------------------------------------------------------------------- /lib/rbtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/lib/rbtree.c -------------------------------------------------------------------------------- /lib/rbtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/lib/rbtree.h -------------------------------------------------------------------------------- /lib/rbtree_augmented.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/lib/rbtree_augmented.h -------------------------------------------------------------------------------- /lib/rbtree_ka.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/lib/rbtree_ka.h -------------------------------------------------------------------------------- /lib/rbtree_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/lib/rbtree_types.h -------------------------------------------------------------------------------- /lib/rttables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/lib/rttables.c -------------------------------------------------------------------------------- /lib/rttables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/lib/rttables.h -------------------------------------------------------------------------------- /lib/scheduler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/lib/scheduler.c -------------------------------------------------------------------------------- /lib/scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/lib/scheduler.h -------------------------------------------------------------------------------- /lib/signals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/lib/signals.c -------------------------------------------------------------------------------- /lib/signals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/lib/signals.h -------------------------------------------------------------------------------- /lib/sockaddr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/lib/sockaddr.h -------------------------------------------------------------------------------- /lib/systemd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/lib/systemd.c -------------------------------------------------------------------------------- /lib/systemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/lib/systemd.h -------------------------------------------------------------------------------- /lib/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/lib/timer.c -------------------------------------------------------------------------------- /lib/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/lib/timer.h -------------------------------------------------------------------------------- /lib/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/lib/utils.c -------------------------------------------------------------------------------- /lib/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/lib/utils.h -------------------------------------------------------------------------------- /lib/vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/lib/vector.c -------------------------------------------------------------------------------- /lib/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/lib/vector.h -------------------------------------------------------------------------------- /lib/warnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/lib/warnings.h -------------------------------------------------------------------------------- /m4/.gitignore: -------------------------------------------------------------------------------- 1 | pkg.m4 2 | -------------------------------------------------------------------------------- /m4/as-ac-expand.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/m4/as-ac-expand.m4 -------------------------------------------------------------------------------- /snap-tools/keepalived-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/snap-tools/keepalived-wrapper -------------------------------------------------------------------------------- /snap/hooks/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/snap/hooks/install -------------------------------------------------------------------------------- /snap/hooks/post-refresh: -------------------------------------------------------------------------------- 1 | install -------------------------------------------------------------------------------- /snap/snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/snap/snapcraft.yaml -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- 1 | tcp_server 2 | tcp_client 3 | -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/ci/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/test/ci/build.sh -------------------------------------------------------------------------------- /test/ci/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/test/ci/setup.sh -------------------------------------------------------------------------------- /test/genhash-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/test/genhash-test.sh -------------------------------------------------------------------------------- /test/mk_if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/test/mk_if -------------------------------------------------------------------------------- /test/mk_lots: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/test/mk_lots -------------------------------------------------------------------------------- /test/ncat_resp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/test/ncat_resp.sh -------------------------------------------------------------------------------- /test/netns-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/test/netns-test.sh -------------------------------------------------------------------------------- /test/tcp_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/test/tcp_client.c -------------------------------------------------------------------------------- /test/tcp_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/test/tcp_server.c -------------------------------------------------------------------------------- /test/tcp_server_html.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/test/tcp_server_html.h -------------------------------------------------------------------------------- /tools/git-bisect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/tools/git-bisect -------------------------------------------------------------------------------- /tools/json_tracking/isolate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/tools/json_tracking/isolate -------------------------------------------------------------------------------- /tools/json_tracking/make_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/tools/json_tracking/make_conf.py -------------------------------------------------------------------------------- /tools/json_tracking/template_vrrp_instance: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/tools/json_tracking/template_vrrp_instance -------------------------------------------------------------------------------- /tools/json_tracking/vrrp_recap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/tools/json_tracking/vrrp_recap -------------------------------------------------------------------------------- /tools/timed_reload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acassen/keepalived/HEAD/tools/timed_reload --------------------------------------------------------------------------------