1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108
| keepalived.conf(5) Keepalived Configuration's Manual keepalived.conf(5)
NAME keepalived.conf - configuration file for Keepalived
DESCRIPTION keepalived.conf is the configuration file which describes all the Keepalived keywords. Keywords are placed in hierar- chies of blocks and subblocks, each layer being delimited by '{' and '}' pairs.
Comments start with '#' or '!' to the end of the line and can start anywhere in a line.
The keyword 'include' allows inclusion of other configuration files from within the main configuration file, or from subsequently included files.
The format of the include directive is:
include FILENAME
FILENAME can be a fully qualified or relative pathname, and can include wildcards, including csh style brace expressions such as "{foo/{,cat,dog},bar}" if glob() supports them.
After opening an included file, the current directory is set to the directory of the file itself, so any relative paths included from a file are relative to the directory of the including file itself.
Note: This documentation MUST be considered as THE exhaustive source of information in order to configure Keepalived. This documenation is supported and maintained by Keepalived Core-Team.
PARAMETER SYNTAX <BOOL> is one of on|off|true|false|yes|no <TIMER> is a time value in seconds, including fractional seconds, e.g. 2.71828 or 3; resolution of timer is micro- seconds.
SCRIPTS There are three classes of scripts can be configured to be executed.
(a) Notify scripts that are run when a vrrp instance or vrrp group changes state, or a virtual server quorum changes between up and down.
(b) vrrp tracking scripts that will cause vrrp instances to go down it they exit a non-zero exist status, or if a weight is specified will add or subtract the weight to/from the priority of that vrrp instance.
(c) LVS checker misc scripts that will cause a real server to be con- figured down if they exit with a non-zero status.
By default the scripts will be executed by user keepalived_script if that user exists, or if not by root, but for each script the user/group under which it is to be executed can be specified.
There are significant security implications if scripts are executed with root privileges, especially if the scripts themselves are modifi- able or replaceable by a non root user. Consequently, security checks are made at startup to ensure that if a script is executed by root, then it cannot be modified or replaced by a non root user.
All scripts should be written so that they will terminate on receipt of a SIGTERM signal. Scripts will be sent SIGTERM if their parent termi- nates, or it is a script the keepalived is awaiting its exit status and it has run for too long.
Quoted strings Quoted strings are specified between " characters; more specifically a string will only end after a quoted string if there is whitespace afterwards. For example: "abcd" efg h jkl "mnop" will be the single string "abcd efg h jkl mnop", i.e. the embedded " characters are removed.
Quoted strings can also have escaped characters, like the shell. \a, \b, \E, \f, \n, \r, \t, \v, \nnn and \xXX (where nnn is up to 3 octal digits, and XX is any sequence of hex digits) and \cC (which produces the control version of character C) are all supported. \C for any other character C is just treated as an escaped version of character C, so \\ is a \ character and \" will be a " character, but it won't start or terminate a quoted string.
For specifying scripts with parameters, unquoted spaces will separate the parameters. If it is required for a parameter to contain a space, it should be enclosed in single quotes (').
CONFIGURATION PARSER Traditionally the configuration file parser has not been one of the strengths of keepalived. Lot of efforts have been put to correct this even if this is not the primal goal of the project.
TOP HIERACHY Keepalived configuration file is articulated around a set of configura- tion blocks. Each block is focusing and targetting a specific daemon family feature. These features are:
GLOBAL CONFIGURATION
BFD CONFIGURATION
VRRPD CONFIGURATION
LVS CONFIGURATION
GLOBAL CONFIGURATION contains subblocks of Global definitions, Linkbeat interfaces, Static track groups, Static addresses, Static routes, and Static rules
Global definitions
net_namespace NAME
namespace_with_ipsets
instance NAME
use_pid_dir
linkbeat_use_polling
child_wait_time SECS
global_defs {
process_names
process_name NAME vrrp_process_name NAME ipvs_process_name NAME bfd_process_name NAME
notification_email { admin@example1.com ... }
notification_email_from admin@example.com
smtp_server 127.0.0.1 [<PORT>]
smtp_helo_name <STRING>
smtp_connect_timeout 30
smtp_alert <BOOL>
smtp_alert_vrrp <BOOL>
smtp_alert_checker <BOOL>
checker_log_all_failures <BOOL>
checker_shutdown_vs_only
no_email_faults
router_id <STRING>
vrrp_mcast_group4 224.0.0.18
vrrp_mcast_group6 ff02::12
default_interface p33p1.3
lvs_sync_daemon <INTERFACE> <VRRP_INSTANCE> [id <SYNC_ID>] [maxlen <LEN>] \ [port <PORT>] [ttl <TTL>] [group <IP ADDR>]
lvs_flush
lvs_flush_onstop
vrrp_garp_master_delay 10
vrrp_garp_master_repeat 1
vrrp_garp_lower_prio_delay 10
vrrp_garp_lower_prio_repeat 1
vrrp_garp_master_refresh 60
vrrp_garp_master_refresh_repeat 2
vrrp_garp_interval 0.001
vrrp_gna_interval 0.000001
vrrp_min_garp [<BOOL>]
vrrp_lower_prio_no_advert [<BOOL>]
vrrp_higher_prio_send_advert [<BOOL>]
vrrp_version <2 or 3>
vrrp_iptables keepalived
nftables [TABLENAME] nftables_priority PRIORITY nftables_counters nftables_ifindex
vrrp_iptables keepalived_in keepalived_out
vrrp_iptables
vrrp_ipsets [keepalived [keepalived6 [keepalived_if6]]]
vrrp_check_unicast_src
vrrp_skip_check_adv_addr
vrrp_strict
vrrp_notify_priority_changes <BOOL>
vrrp_priority <-20 to 19>
checker_priority <-20 to 19>
bfd_priority <-20 to 19>
vrrp_no_swap
checker_no_swap
bfd_no_swap
vrrp_rt_priority <1..99>
checker_rt_priority <1..99>
bfd_rt_priority <1..99>
vrrp_rlimit_rtime >=1 checker_rlimit_rtime >=1 bfd_rlimit_rtime >=1
snmp_socket udp:1.2.3.4:705
enable_snmp_vrrp
enable_snmp_checker
enable_snmp_rfc
enable_snmp_rfcv2
enable_snmp_rfcv3
enable_traps
enable_dbus
dbus_service_name SERVICE_NAME
script_user username [groupname]
enable_script_security
notify_fifo FIFO_NAME [username [groupname]]
notify_fifo_script STRING|QUOTED_STRING [username [groupname]]
vrrp_notify_fifo FIFO_NAME [username [groupname]]
vrrp_notify_fifo_script STRING|QUOTED_STRING [username [groupname]]
lvs_notify_fifo FIFO_NAME [username [groupname]]
lvs_notify_fifo_script STRING|QUOTED_STRING [username [groupname]]
dynamic_interfaces [allow_if_changes]
vrrp_netlink_cmd_rcv_bufs BYTES vrrp_netlink_cmd_rcv_bufs_force <BOOL> vrrp_netlink_monitor_rcv_bufs BYTES vrrp_netlink_monitor_rcv_bufs_force <BOOL>
lvs_netlink_cmd_rcv_bufs BYTES lvs_netlink_cmd_rcv_bufs_force <BOOL> lvs_netlink_monitor_rcv_bufs BYTES lvs_netlink_monitor_rcv_bufs_force <BOOL>
process_monitor_rcv_bufs BYTES process_monitor_rcv_bufs_force <BOOL>
vrrp_rx_bufs_policy [MTU|ADVERT|NUMBER]
vrrp_rx_bufs_multiplier NUMBER
rs_init_notifies
no_checker_emails
umask [NUMBER|BITS]
vrrp_startup_delay 5.5
random_seed UNSIGNED_INT }
Linkbeat interfaces The linkbeat_interfaces block allows specifying which interfaces should use polling via MII, Ethtool or ioctl status rather than rely on netlink status updates. This allows more granular control of global definition linkbeat_use_polling.
This option is preferred over the deprecated use of linkbeat_use_polling in a vrrp_instance block, since the latter only allows using linkbeat on the interface of the vrrp_instance itself, whereas track_interface and virtual_ipaddresses and virtual_iproutes may require monitoring other interfaces, which may need to use linkbeat polling.
The default polling type to use is MII, unless that isn't supported in which case ETHTOOL is used, and if that isn't supported then ioctl polling. The preferred type of polling to use can be specified with MII or ETHTOOL or IOCTL after the interface name, but if that type isn't supported, a supported type will be used.
The synfax for linkbeat_interfaces is: linkbeat_interfaces { eth2 enp2s0 ETHTOOL }
Static track groups Static track groups are used to allow vrrp instances to track static addresses, routes and rules. If a static address/route/rule specifies a track group, then if the address/route/rule is deleted and cannot be restored, the vrrp instance will transition to fault state.
The syntax for a track group is: track_group GROUP1 { group { VI_1 VI_2 } }
Static routes/addresses/rules Keepalived can configure static addresses, routes, and rules. These addresses are NOT moved by vrrpd, they stay on the machine. If you already have IPs and routes on your machines and your machines can ping each other, you don't need this section. The syntax for rules and routes is that same as for ip rule add/ip route add (except shorted option names aren't supported due to ambiguities). The track_group specification refers to a named track_group which lists the vrrp instances which will track the address, i.e. if the address is deleted the vrrp instances will transition to backup.
NOTE: since rules without preferences can be added in different orders due to vrrp instances transitioning from master to backup etc, rules need to have a preference. If a preference is not specified, keepalived will assign one, but it will probably not be what you want.
The syntax is the same for virtual addresses and virtual routes. If no dev element is specified, it defaults to default_interface (default eth0). Note: the broadcast address may be specified as '-' or '+' to clear or set the host bits of the address.
If a route or rule could apply to either IPv4 or IPv6 it will default to IPv4. To force a route/rule to be IPv6, add the keyword "inet6".
static_ipaddress { <IPADDR>[/<MASK>] [brd <IPADDR>] [dev <STRING>] [scope <SCOPE>] [label <LABEL>] [peer <IPADDR>] [home] [-nodad] [mngtmpaddr] [noprefixroute] [autojoin] [track_group GROUP] 192.168.1.1/24 dev eth0 scope global ... }
static_routes { 192.168.2.0/24 via 192.168.1.100 dev eth0 track_group GROUP1
192.168.100.0/24 table 6909 nexthop via 192.168.101.1 dev wlan0 onlink weight 1 nexthop via 192.168.101.2 dev wlan0 onlink weight 2
192.168.200.0/24 dev p33p1.2 table 6909 tos 0x04 protocol bird scope link priority 12 mtu 1000 hoplimit 100 advmss 101 rtt 102 rttvar 103 reordering 104 window 105 cwnd 106 ssthresh lock 107 realms PQA/0x14 rto_min 108 initcwnd 109 initrwnd 110 features ecn
2001:470:69e9:1:2::4 dev p33p1.2 table 6909 tos 0x04 protocol bird scope link priority 12 mtu 1000 hoplimit 100 advmss 101 rtt 102 rttvar 103 reordering 104 window 105 cwnd 106 ssthresh lock 107 rto_min 108 initcwnd 109 initrwnd 110 features ecn fastopen_no_cookie 1 ... }
static_rules { from 192.168.2.0/24 table 1 track_group GROUP1
to 192.168.2.0/24 table 1
from 192.168.28.0/24 to 192.168.29.0/26 table small iif p33p1 oif wlan0 tos 22 fwmark 24/12 preference 39 realms 30/20 goto 40
to 1:2:3:4:5:6:7:0/112 from 7:6:5:4:3:2::/96 table 6908 uidrange 10000-19999
to 1:2:3:4:6:6:7:0/112 from 8:6:5:4:3:2::/96 l3mdev protocol 12 ip_proto UDP sport 10-20 dport 20-30 ... }
VRRP track processes The configuration block looks like:
vrrp_track_process <STRING> {
process <STRING>|<QUOTED_STRING> [<STRING>|<QUOTED_STRING> ...]
param_match {initial|partial}
weight <-254..254>
quorum NUM
quorum_max NUM
fork_delay
terminate_delay SECS
delay SECS
full_command }
To avoid having to frequently run a track_script to monitor the exis- tance of processes (often haproxy or nginx), vrrp_track_process can monitor whether other processes are running.
One difference from pgrep is track_process doesn't do a regular expres- sion match of the command string, but does an exact match. 'pgrep ssh' will match an sshd process, this track_process will not (it is equiva- lent to pgrep "^ssh$").
If full_command is used (equivalent to pgrep -f), /proc/PID/cmdline is used, but any updates to cmdline will not be detected (a process shouldn't normally change it, although it is possible with great care, for example systemd).
Prior to Linux v3.2 track_process will not support detection of changes to a process name, since the kernel did not notify changes of process name prior to 3.2. Most processes do not change their process name, but, for example, firefox forks processes that change their process name to "Web Content". The process name referred to here is the con- tents of /proc/PID/comm.
Quorum is the number of matching processes that must be run for an OK status.
Delay might be useful if it anticipated that a process may be reloaded (stopped and restarted), and it isn't desired to down and up a vrrp instance.
A positive weight means that an OK status will add <weight> to the priority of all VRRP instances which monitor it. On the opposite, a negative weight will be subtracted from the initial priority in case of insufficient processes.
If the vrrp instance or sync group is not the address owner and the result is between -253 and 253, the result will be added to the initial priority of the VRRP instance (a negative value will reduce the prior- ity), although the effective priority will be limited to the range [1,254].
If a vrrp instance using a track_process is a member of a sync group, unless sync_group_tracking_weight is set on the group weight 0 must be set. Likewise, if the vrrp instance is the address owner, weight 0 must also be set.
Rational for not using pgrep/pidof/killall and the likes:
Every time pgrep or its equivalent is run, it iterates though the /proc/[1-9][0-9]* directories, and opens the status and cmdline pseudo files in each directory. The cmdline pseudo file is mapped to the process's address space, and so if that part of the process is swapped out, it will have to be fetched from the swap space. pgrep etc also include zombie processes whereas keepalived does not, since they aren't running.
This implementation only iterates though /proc/[1-9][0-9]*/ directories at start up, and it won't even read the cmdline pseudo files if 'full_command' is not specified for any of the vrrp_track_process entries. After startup, it uses the process_events kernel <-> userspace connector to receive notification of process changes. If full_command is specified for any track_process instance, the cmdline pseudo file will have to be read upon notification of the creation of the new process, but at that time it is very unlikely that it will have already been swapped out.
On a busy system with a high number of process creations/terminations, using a track_script with pgrep/pidof/killall may be more efficient, although those processes are inefficient compared to the minimum that keepalived needs.
Using pgrep etc on a system that is swapping can have a significant detrimental impact on the performance of the system, due to having to fetch swapped memory from the swap space, thereby causing additional swapping.
BFD CONFIGURATION This is an implementation of RFC5880 (Bidirectional forwarding detec- tion), and this can be configured to work between 2 keepalived instances, but using unweighted track_bfds between a master/backup pair of VRRP instances means that the VRRP instance will only be able to come up if both VRRP instance are running, which somewhat defeats the purpose of VRRP.
This imlpementation has been tested with OpenBFDD (available at https://github.com/dyninc/OpenBFDD).
The syntax for bfd instance is :
bfd_instance <STRING> {
neighbor_ip <IP ADDRESS>
source_ip <IP ADDRESS>
min_rx <INTEGER>
min_tx <INTEGER>
idle_tx <INTEGER>
multiplier <INTEGER>
passive
ttl <INTEGER>
hoplimit <INTEGER>
max_hops <INTEGER>
weight }
VRRPD CONFIGURATION contains subblocks of VRRP script(s), VRRP synchronization group(s), VRRP gratuitous ARP and unsolicited neighbour advert delay group(s) and VRRP instance(s)
VRRP script(s) The script will be executed periodically, every <interval> sec- onds. Its exit code will be recorded for all VRRP instances which moni- tor it. Note that the script will only be executed if at least one VRRP instance monitors it.
The default weight equals 0, which means that any VRRP instance moni- toring the script will transition to the fault state after <fall> consecutive failures of the script. After that, <rise> consecu- tive successes will cause VRRP instances to leave the fault state, unless they are also in the fault state due to other scripts or inter- faces that they are tracking.
A positive weight means that <rise> successes will add <weight> to the priority of all VRRP instances which monitor it. On the opposite, a negative weight will be subtracted from the initial priority in case of <fall> failures.
The syntax for the vrrp script is:
vrrp_script <SCRIPT_NAME> {
script <STRING>|<QUOTED-STRING>
interval <INTEGER>
timeout <INTEGER>
weight <INTEGER:-253..253>
rise <INTEGER>
fall <INTEGER>
user USERNAME [GROUPNAME]
init_fail }
VRRP track files Adds a file to be monitored. The script will be read whenever it is modified. The value in the file will be recorded for all VRRP instances and sync groups which monitor it. Note that the file will only be read if at least one VRRP instance or sync group monitors it.
A value will be read as a number in text from the file. If the weight configured against the track_file is 0, a non-zero value in the file will be treated as a failure status, and a zero value will be treaded as an OK status, otherwise the value will be multiplied by the weight configured in the track_file statement. If the result is less than -253 any VRRP instance or sync group monitoring the script will transition to the fault state (the weight can be 254 to allow for a negative value being read from the file).
If the vrrp instance or sync group is not the address owner and the result is between -253 and 253, the result will be added to the initial priority of the VRRP instance (a negative value will reduce the prior- ity), although the effective priority will be limited to the range [1,254].
If a vrrp instance using a track_file is a member of a sync group, unless sync_group_tracking_weight is set on the group weight 0 must be set. Likewise, if the vrrp instance is the address owner, weight 0 must also be set.
The syntax for vrrp track file is :
vrrp_track_file <STRING> { # VRRP track file declaration
file <QUOTED_STRING>
weight <-254..254>
init_file [VALUE] [overwrite] }
VRRP synchronization group(s) VRRP Sync Group is an extension to VRRP protocol. The main goal is to define a bundle of VRRP instance to get synchronized together so that transition of one instance will be reflected to others group members.
In addition there is an enhanced notify feature for fine state transi- tion catching.
You can also define multiple track policy in order to force state tran- sition according to a third party event such as interface, scripts, file, BFD.
Important: for a SYNC group to run reliably, it is vital that all instances in the group are MASTER or that they are all either BACKUP or FAULT. A situation with half instances having higher priority on machine A half others with higher priority on machine B will lead to constant re-elections. For this reason, when instances are grouped, any track scripts/files configured against member VRRP instances will have their tracking weights automatically set to zero, in order to avoid inconsistent priorities across instances.
The syntax for vrrp_sync_group is :
vrrp_sync_group <STRING> { group {
<STRING> <STRING> ... }
track_interface { eth0 eth1 eth2 weight <-253..253> ... }
track_script { <SCRIPT_NAME> <SCRIPT_NAME> weight <-253..253> }
track_file { <STRING> <STRING> weight <-254..254> ... }
track_bfd { <STRING> <STRING> <STRING> weight <INTEGER: -253..253> ... }
notify_master /path/to_master.sh [username [groupname]]
notify_backup /path/to_backup.sh [username [groupname]]
notify_fault "/path/fault.sh VG_1" [username [groupname]]
notify_stop <STRING>|<QUOTED-STRING> [username [groupname]]
notify <STRING>|<QUOTED-STRING> [username [groupname]]
notify_priority_changes <BOOL>
smtp_alert <BOOL>
global_tracking
sync_group_tracking_weight }
VRRP gratuitous ARP and unsolicited neighbour advert delay group(s) specifies the setting of delays between sending gratuitous ARPs and unsolicited neighbour advertisements. This is intended for when an upstream switch is unable to handle being flooded with ARPs/NAs.
Use interface when the limits apply on the single physical interface. Use interfaces when a group of interfaces are linked to the same switch and the limits apply to the switch as a whole.
Note: Only one of interface or interfaces should be used per block.
If the global vrrp_garp_interval and/or vrrp_gna_interval are set, any interfaces that aren't specified in a garp_group will inherit the global settings.
The syntax for garp_group is :
garp_group {
garp_interval <DECIMAL>
gna_interval <DECIMAL>
interface <STRING>
interfaces { <STRING> <STRING> ... } }
VRRP instance(s) A VRRP Instance is the VRRP protocol key feature. It defines and con- figures VRRP behaviour to run on a specific interface. Each VRRP Instances are related to a uniq interface.
The syntax for vrrp_instance is :
vrrp_instance <STRING> {
state MASTER
interface eth0
use_vmac [<VMAC_INTERFACE>]
vmac_xmit_base
native_ipv6
dont_track_primary
track_interface { eth0 eth1 eth2 weight <-253..253> ... }
track_script { <SCRIPT_NAME> <SCRIPT_NAME> weight <-253..253> }
track_file { <STRING> <STRING> <STRING> weight <-254..254> ... }
track_bfd { <STRING> <STRING> <STRING> weight <INTEGER: -253..253> ... }
mcast_src_ip <IPADDR> unicast_src_ip <IPADDR>
track_src_ip
version <2 or 3>
unicast_peer { <IPADDR> ... }
old_unicast_checksum [never]
garp_master_delay 10 garp_master_repeat 1 garp_lower_prio_delay 10 garp_lower_prio_repeat 1 garp_master_refresh 60 garp_master_refresh_repeat 2 garp_interval 100 gna_interval 100
lower_prio_no_advert [<BOOL>]
higher_prio_send_advert [<BOOL>]
virtual_router_id 51
priority 100
advert_int 1
authentication {
auth_type PASS
auth_pass 1234 }
For compatibility with "ifconfig", it should be of the form <realdev>:<anytext>, for example eth0:1 for an alias on eth0.
virtual_ipaddress { <IPADDR>[/<MASK>] [brd <IPADDR>] [dev <STRING>] [scope <SCOPE>] [label <LABEL>] [peer <IPADDR>] [home] [-nodad] [mngtmpaddr] [noprefixroute] [autojoin] [no_track] 192.168.200.17/24 dev eth1 192.168.200.18/24 dev eth2 label eth2:1 }
virtual_ipaddress_excluded { <IPADDR>[/<MASK>] [brd <IPADDR>] [dev <STRING>] [scope <SCOPE>] [label <LABEL>] [peer <IPADDR>] [home] [-nodad] [mngtmpaddr] [noprefixroute] [autojoin] [no_track] <IPADDR>[/<MASK>] ... ... }
prompte_secondaries
virtual_routes {
src 192.168.100.1 to 192.168.109.0/24 via 192.168.200.254 dev eth1 192.168.110.0/24 via 192.168.200.254 dev eth1 192.168.111.0/24 dev eth2 no_track 192.168.112.0/24 via 192.168.100.254 192.168.113.0/24 via 192.168.200.254 or 192.168.100.254 dev eth1 blackhole 192.168.114.0/24 0.0.0.0/0 gw 192.168.0.1 table 100 # To set a default gateway into table 100. }
virtual_rules { from 192.168.2.0/24 table 1 to 192.168.2.0/24 table 1 no_track }
accept
no_accept
nopreempt
preempt
skip_check_adv_addr [on|off|true|false|yes|no]
strict_mode [on|off|true|false|yes|no]
preempt_delay 300 # waits 5 minutes
debug <LEVEL>
notify_master <STRING>|<QUOTED-STRING> [username [groupname]] notify_backup <STRING>|<QUOTED-STRING> [username [groupname]] notify_fault <STRING>|<QUOTED-STRING> [username [groupname]]
notify_stop <STRING>|<QUOTED-STRING> [username [groupname]] notify <STRING>|<QUOTED-STRING> [username [groupname]]
notify_master_rx_lower_pri <STRING>|<QUOTED-STRING> [username [groupname]]
notify_priority_changes <BOOL>
smtp_alert <BOOL>
kernel_rx_buf_size
linkbeat_use_polling }
LVS CONFIGURATION contains subblocks of Virtual server group(s) and Virtual server(s)
The subblocks contain arguments for configuring Linux IPVS (LVS) fea- ture. Knowledge of ipvsadm(8) will be helpful here. Configuring LVS is achieved by defining virtual server groups, virtual servers and option- ally SSL configuration. Every virtual server defines a set of real servers, you can attach healthcheckers to each real server. Keepalived will then lead LVS operation by dynamically maintaining topology.
For details of what configuration combinations are valid, see the ipvsadm(8) man page.
Note: Where an option can be configured for a virtual server, real server, and possibly checker, the virtual server setting is the default for real servers, and the real server setting is the default for checkers.
Note: Tunnelled real/sorry servers can differ from the address family of the virtual server and non tunnelled real/sorry servers, which all have to be the same. If a virtual server uses a fwmark, and all the real/sorry servers are tunnelled, the address fam- ily of the virtual server will be the same as the address family of the real/sorry servers if they are all the same, otherwise it will default to IPv4 (use ip_family inet6 to override this).
Note: The port for the virtual server can only be omitted if the virtual service is persistent.
Virtual server group(s) This feature offers a way to simplify your configuration by factorizing virtual server definitions. If you need to define a bunch of virtual servers with exactly the same real server topology then this feature will make your configuration much more readable and will optimize healthchecking task by only spawning one healthchecking where multiple virtual server declaration will spawn a dedicated healthchecker for every real server which will waste system resources.
Any combination of IP addresses, IP address ranges and firewall marks can be used. Use of this option is intended for very large LVSs.
The syntax for virtual_server_group is :
virtual_server_group <STRING> {
<IPADDR> [<PORT>] <IPADDR> [<PORT>] ...
<IPADDR RANGE> [<PORT>] # VIP range [VPORT] <IPADDR RANGE> [<PORT>] ...
fwmark <INTEGER> fwmark <INTEGER> ... }
Virtual server(s) A virtual_server can be a declaration of one of <IPADDR> [<PORT>] , fwmark <INTEGER> or group <STRING>
The syntax for virtual_server is :
virtual_server <IPADDR> [<PORT>] | virtual_server fwmark <INTEGER> | virtual_server group <STRING> {
lvs_sched rr|wrr|lc|wlc|lblc|sh|mh|dh|fo|ovf|lblcr|sed|nq
hashed
flag-1
flag-2
flag-3
sh-port
sh-fallback
mh-port
mh-fallback
ops
lvs_method NAT|DR|TUN
persistence_engine <STRING>
persistence_timeout [<INTEGER>]
persistence_granularity <NETMASK>
protocol TCP|UDP|SCTP
ha_suspend
smtp_alert <BOOL>
virtualhost <STRING>
alpha
omega
quorum <INTEGER>
hysteresis <INTEGER>
quorum_up <STRING>|<QUOTED-STRING> [username [groupname]]
quorum_down <STRING>|<QUOTED-STRING> [username [groupname]]
ip_family inet|inet6
sorry_server <IPADDR> [<PORT>]
sorry_server_inhibit
sorry_server_lvs_method NAT|DR|TUN
connect_timeout <TIMER>
retry <INTEGER>
delay_before_retry <TIMER>
warmup <TIMER>
delay_loop <TIMER>
inhibit_on_failure
real_server <IPADDR> [<PORT>] {
weight <INTEGER>
lvs_method NAT|DR|TUN
notify_up <STRING>|<QUOTED-STRING> [username [groupname]]
notify_down <STRING>|<QUOTED-STRING> [username [groupname]]
uthreshold <INTEGER>
lthreshold <INTEGER>
smtp_alert <BOOL>
virtualhost <STRING>
alpha <BOOL> # see above connect_timeout <TIMER> # see above retry <INTEGER> # see above delay_before_retry <TIMER> # see above warmup <TIMER> # see above delay_loop <TIMER> # see above inhibit_on_failure <BOOL> # see above log_all_failures <BOOL> # log all failures when checker up
CHECKER_TYPE {
connect_ip <IPADDR>
connect_port <PORT>
bindto <IPADDR>
bind_if <IFNAME>
bind_port <PORT>
fwmark <INTEGER>
alpha <BOOL> # see above connect_timeout <TIMER> # see above retry <INTEGER> # see above delay_before_retry <TIMER> # see above warmup <TIMER> # see above delay_loop <TIMER> # see above inhibit_on_failure <BOOL> # see above }
HTTP_GET|SSL_GET {
url {
path <STRING>
digest <STRING>
status_code <INTEGER>
virtualhost <STRING>
regex <STRING>
regex_no_match
regex_options OPTIONS
regex_stack <START> <MAX>
regex_min_offset <OFFSET>
regex_max_offset <OFFSET> } }
SSL_GET {
enable_sni }
TCP_CHECK {
}
SMTP_CHECK {
helo_name <STRING>|<QUOTED-STRING> }
DNS_CHECK {
type <STRING>
name <STRING> }
MISC_CHECK {
misc_path <STRING>|<QUOTED-STRING>
misc_timeout <INTEGER>
misc_dynamic
user USERNAME [GROUPNAME] }
BFD_CHECK { name <STRING> } } }
SSL {
password <STRING>
ca <STRING>
certificate <STRING>
key <STRING> }
ADVANCED CONFIGURATION Configuration parser has been extended to support advanced features such as conditional configuration and parameter substitution. These features are very usefull for any scripted env where configuration tem- plate are generated (datacenters).
Conditional configuration and configuration id The config-id defaults to the first part of the node name as returned by uname, and can be overridden with the -i or --config-id command line option.
Any configuration line starting with '@' is a conditional configuration line. The word immediately following (i.e. without any space) the '@' character is compared against the config-id, and if they don't match, the configuration line is ignored.
Alternatively, '@^' is a negative comparison, so if the word immedi- ately following does NOT match the config-id, the configuration line IS included.
The purpose of this is to allow a single configuration file to be used for multiple systems, where the only differences are likely to be the router_id, vrrp instance priorities, and possibly interface names and unicast addresses.
For example:
global_defs { @main router_id main_router @backup router_id backup_router } ... vrrp_instance VRRP { ... @main unicast_src_ip 1.2.3.4 @backup unicast_src_ip 1.2.3.5 @backup2 unicast_src_ip 1.2.3.6 unicast_peer { @^main 1.2.3.4 @^backup 1.2.3.5 @^backup2 1.2.3.6 } ... }
If keepalived is invoked with -i main, then the router_id will be set to main_router, if invoked with -i backup, then backup_router, if not invoked with -i, or with -i anything else, then the router_id will not be set. The unicast peers for main will be 1.2.3.5 and 1.2.3.6.
Parameter substitution Substitutable parameters can be specified. The format for defining a parameter is:
$PARAMETER=VALUE
where there must be no space before the '=' and only whitespace may preceed to '$'. Empty values are allowed.
Parameter names can be made up of any combination of A-Za-z0-9 and _, but cannot start with a digit. Parameter names starting with an under- score should be considered reserved names that keepalived will define for various pre-defined options.
After a parameter is defined, any occurrence of $PARAMETER followed by whitespace, or any occurrence of ${PARAMETER} (which need not be fol- lowed by whitespace) will be replaced by VALUE.
Replacement is recursive, so that if a parameter value itself includes a replaceable parameter, then after the first substitution, the parame- ter in the value will then be replaced; the substitution is done at replacement time and not at definition time, so for example:
$ADDRESS_BASE=10.2.${ADDRESS_BASE_SUB} $ADDRESS_BASE_SUB=0 ${ADDRESS_BASE}.100/32 $ADDRESS_BASE_SUB=10 ${ADDRESS_BASE}.100/32
will produce: 10.2.0.100/32 10.2.10.100/32
Note in the above examples the use of both ADDRESS_BASE and ADDRESS_BASE_SUB required braces ({}) since the parameters were not followed by whitespace (after the first substitution which produced 10.2.${ADDRESS_BASE_SUB}.100/32 the parameter is still not followed by whitespace).
If a parameter is not defined, it will not be replaced at all, so for example ${UNDEF_PARAMETER} will remain in the configuration if it is undefined; this means that existing configuration that contains a '$' character (for example in a script definition) will not be changed so long as no new parameter definitions are added to the configuration.
Parameter substitution works in conjunction with conditional configura- tion. For example:
@main $PRIORITY=240 @backup $PRIORITY=200 ... vrrp_instance VI_0 { priority $PRIORITY }
will produce: ... vrrp_instance VI_0 { priority 240 } if the config_id is main.
$IF_MAIN=@main $IF_MAIN priority 240
will produce: priority 240 if the config_id is main and nothing if the config_id is not main, although why anyone would want to use this rather than simply the following is not known (but still possible): @main priority 240
Multiline definitions are also supported, but when used there must be nothing on the line after the parameter name. A multiline definition is specified by ending each line except the last with a '\' character.
Example: $INSTANCE= \ vrrp_instance VI_${NUM} { \ interface eth0.${NUM} \ use_vmac vrrp${NUM}.1 \ virtual_router_id 1 \ @high priority 130 \ @low priority 120 \ advert_int 1 \ virtual_ipaddress { \ 10.0.${NUM}.254/24 \ } \ track_script { \ offset_instance_${NUM} \ } \ }
$NUM=0 $INSTANCE
$NUM=1 $INSTANCE
The use of multiline definitions can be nested.
Example: $RS= \ real_server 192.168.${VS_NUM}.${RS_NUM} 80 { \ weight 1 \ inhibit_on_failure \ smtp_alert \ MISC_CHECK { \ misc_path "${_PWD}/scripts/vs.sh RS_misc.${INST}.${VS_NUM}.${RS_NUM}.0 10.0.${VS_NUM}.4:80->192.168.${VS_NUM}.${RS_NUM}:80" \ } \
MISC_CHECK { \ misc_path "${_PWD}/scripts/vs.sh RS_misc.${INST}.${VS_NUM}.${RS_NUM}.1 10.0.${VS_NUM}.4:80->192.168.${VS_NUM}.${RS_NUM}:80" \ } \
notify_up "${_PWD}/scripts/notify.sh RS_notify.${INST}.${VS_NUM}.${RS_NUM} UP 10.0.${VS_NUM}.4:80->192.168.${VS_NUM}.${RS_NUM}:80" \
notify_down "${_PWD}/scripts/notify.sh RS_notify.${INST}.${VS_NUM}.${RS_NUM} DOWN 10.0.${VS_NUM}.4:80->192.168.${VS_NUM}.${RS_NUM}:80" \
}
$VS= \ virtual_server 10.0.${VS_NUM}.4 80 { \ quorum 2 \ quorum_up "${_PWD}/scripts/notify.sh VS_notify.${INST} UP 10.0.${VS_NUM}.4:80" \ quorum_down "${_PWD}/scripts/notify.sh VS_notify.${INST} DOWN 10.0.${VS_NUM}.4:80" \ $RS_NUM=1 \ $RS \ $RS_NUM=2 \ $RS \ $RS_NUM=3 \ $RS \ }
$VS_NUM=0 $ALPHA=alpha $VS
$VS_NUM=1 $ALPHA= $VS
The above will create 2 virtual servers, each with 3 real servers
Pre-defined definitions The following pre-defined definitions are defined:
${_PWD} : The directory of the current configuration file (this can be changed if using the include directive). ${_INSTANCE} : The instance name (as defined by the -i option, defaults to hostname). ${_RANDOM [MIN [MAX]]} : This is replaced by a random integer in the range [MIN, MAX], where MIN and MAX are optional non- negative integers. Defaults are MIN=0 and MAX=32767.
Additional pre-defined definitions will be added as their need is iden- tified. It will normally be quite straightforward to add additional pre-defined definitions, so if you need one, or have a good idea for one, then raise an issue at https://github.com/acassen/keepalived/issues requesting it.
Sequence blocks A line starting ~SEQ(var, start, step, end) will cause the remainder of the line to be processed multiple times, with the variable $var set initially to start, and then $var will be incremented by step repeat- edly, terminating when it is greater than end. step may be omitted, in which case it defaults to 1 or -1, depending on whether end is greater or less than start. start may also be omitted, in which case it defaults to 1 if end > 0 or -1 if end < 0. so, for example:
~SEQ(SUBNET, 0, 3) ip_address 10.0.$SUBNET.1
would produce: ip_address 10.0.0.1 ip_address 10.0.1.1 ip_address 10.0.2.1 ip_address 10.0.3.1
There can be multiple ~SEQ elements on a line, so for example:
$VI4= \ vrrp_track_file offset_instance_4.${IF}.${NUM}.${ID} { \ file "${_PWD}/679/track_files/4.${IF}.${NUM}.${ID}" \ weight -100 \ } \ vrrp_instance vrrp4.${IF}.${NUM}.${ID} { \ interface bond${IF}.${NUM} \ use_vmac vrrp4.${IF}.${NUM}.${ID} \ virtual_router_id ${ID} \ priority 130 \ virtual_ipaddress { \ 10.${IF}.${NUM}.${ID}/24 \ } \ track_file { \ offset_instance_4.${IF}.${NUM}.${ID} \ } \ }
~SEQ(IF,0,7) ~SEQ(NUM,0,31) ~SEQ(ID,1,254) $VI4
will produce 65024 vrrp instances with names from vrrp4.0.0.1 through to vrrp4.7.31.254.
AUTHORS Initial by Joseph Mack. Extensive updates by Alexandre Cassen & Quentin Armitage.
SEE ALSO ipvsadm(8), ip --help.
Keepalived 2018-11-08 keepalived.conf(5)
|