diff options
author | Ryan Thomas McBride <mcbride@cvs.openbsd.org> | 2003-10-17 21:05:00 +0000 |
---|---|---|
committer | Ryan Thomas McBride <mcbride@cvs.openbsd.org> | 2003-10-17 21:05:00 +0000 |
commit | faedf7a876de9ee825ed44b1f6f9dcdbe056bdcd (patch) | |
tree | fb322664c24a0866845294d2d89651bb52715ad7 /sbin/sysctl | |
parent | 570077e03f36a1ce16a462a69f136900e3221923 (diff) |
Common Address Redundancy Protocol
Allows multiple hosts to share an IP address, providing high availability
and load balancing.
Based on code by mickey@, with additional help from markus@
and Marco_Pfatschbacher@genua.de
ok deraadt@
Diffstat (limited to 'sbin/sysctl')
-rw-r--r-- | sbin/sysctl/sysctl.8 | 6 | ||||
-rw-r--r-- | sbin/sysctl/sysctl.c | 10 |
2 files changed, 13 insertions, 3 deletions
diff --git a/sbin/sysctl/sysctl.8 b/sbin/sysctl/sysctl.8 index f2f114e1614..32f748a6ee0 100644 --- a/sbin/sysctl/sysctl.8 +++ b/sbin/sysctl/sysctl.8 @@ -1,4 +1,4 @@ -.\" $OpenBSD: sysctl.8,v 1.108 2003/10/17 09:46:48 jmc Exp $ +.\" $OpenBSD: sysctl.8,v 1.109 2003/10/17 21:04:57 mcbride Exp $ .\" $NetBSD: sysctl.8,v 1.4 1995/09/30 07:12:49 thorpej Exp $ .\" .\" Copyright (c) 1993 @@ -244,6 +244,10 @@ privilege can change the value. .It net.inet.mobileip.allow integer yes .It net.inet.etherip.allow integer yes .It net.inet.ipcomp.enable integer yes +.It net.inet.carp.allow integer yes +.It net.inet.carp.preempt integer yes +.It net.inet.carp.log integer yes +.It net.inet.carp.arpbalance integer yes .It net.inet6.ip6.forwarding integer yes .It net.inet6.ip6.redirect integer yes .It net.inet6.ip6.hlim integer yes diff --git a/sbin/sysctl/sysctl.c b/sbin/sysctl/sysctl.c index 323479f5d9d..c34d13f4713 100644 --- a/sbin/sysctl/sysctl.c +++ b/sbin/sysctl/sysctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sysctl.c,v 1.99 2003/09/26 16:09:27 deraadt Exp $ */ +/* $OpenBSD: sysctl.c,v 1.100 2003/10/17 21:04:57 mcbride Exp $ */ /* $NetBSD: sysctl.c,v 1.9 1995/09/30 07:12:50 thorpej Exp $ */ /* @@ -40,7 +40,7 @@ static const char copyright[] = #if 0 static const char sccsid[] = "@(#)sysctl.c 8.5 (Berkeley) 5/9/95"; #else -static char *rcsid = "$OpenBSD: sysctl.c,v 1.99 2003/09/26 16:09:27 deraadt Exp $"; +static char *rcsid = "$OpenBSD: sysctl.c,v 1.100 2003/10/17 21:04:57 mcbride Exp $"; #endif #endif /* not lint */ @@ -79,6 +79,7 @@ static char *rcsid = "$OpenBSD: sysctl.c,v 1.99 2003/09/26 16:09:27 deraadt Exp #include <netinet/tcp_var.h> #include <netinet/ip_gre.h> #include <netinet/ip_ipcomp.h> +#include <netinet/ip_carp.h> #ifdef INET6 #include <netinet/ip6.h> @@ -1286,6 +1287,7 @@ struct ctlname etheripname[] = ETHERIPCTL_NAMES; struct ctlname grename[] = GRECTL_NAMES; struct ctlname mobileipname[] = MOBILEIPCTL_NAMES; struct ctlname ipcompname[] = IPCOMPCTL_NAMES; +struct ctlname carpname[] = CARPCTL_NAMES; struct list inetlist = { inetname, IPPROTO_MAXID }; struct list inetvars[] = { { ipname, IPCTL_MAXID }, /* ip */ @@ -1397,6 +1399,10 @@ struct list inetvars[] = { { 0, 0 }, { 0, 0 }, { ipcompname, IPCOMPCTL_MAXID }, + { 0, 0 }, + { 0, 0 }, + { 0, 0 }, + { carpname, CARPCTL_MAXID }, }; struct list kernmalloclist = { kernmallocname, KERN_MALLOC_MAXID }; |