diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-04-11 19:41:42 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-04-11 19:41:42 +0000 |
commit | 7ab4566c34fb0c170d5805b34cd71d628eb1b501 (patch) | |
tree | 2a3692c04b3c0ed1032a41936fd4cdecb7b23796 /etc | |
parent | ecae586b2a272f8463fb63b561d690b87f1d8b4c (diff) |
Introduce net.inet.{ah,esp}.enable sysctl controls that are off by default.
If you are going to use either of AH or ESP or both, enable these in
/etc/sysctl.conf. Also correct the IPSec debugging sysctl code, it is now
named net.inet.ip.encdebug. Some corrected function signatures too.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/sysctl.conf | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/etc/sysctl.conf b/etc/sysctl.conf index d6f953930d7..da030f003bb 100644 --- a/etc/sysctl.conf +++ b/etc/sysctl.conf @@ -1,9 +1,11 @@ -# $OpenBSD: sysctl.conf,v 1.9 1998/05/05 21:51:53 deraadt Exp $ +# $OpenBSD: sysctl.conf,v 1.10 1999/04/11 19:41:33 niklas Exp $ # This files contains a list of sysctl options the user wants set at # boot time. # ie. #net.inet.ip.forwarding=1 # 1=Permit forwarding (routing) of packets #net.inet.tcp.rfc1323=0 # 0=disable TCP RFC1323 extensions (for if tcp is slow) +#net.inet.esp.enable=1 # 1=Enable the ESP IPSec protocol +#net.inet.ah.enable=1 # 1=Enable the AH IPSec protocol #ddb.panic=0 # 0=Do not drop into ddb on a kernel panic #ddb.console=1 # 1=Permit entry of ddb from the console #fs.posix.setuid=0 # 0=Traditional BSD chown() semantics |