summaryrefslogtreecommitdiff
path: root/sbin
diff options
context:
space:
mode:
authorHans-Joerg Hoexer <hshoexer@cvs.openbsd.org>2005-07-09 22:22:45 +0000
committerHans-Joerg Hoexer <hshoexer@cvs.openbsd.org>2005-07-09 22:22:45 +0000
commit00d33fc9a83a6a13bab94e7fd92dafa6cf1008a4 (patch)
treee91a3fbb1ca83aa683bb766fc8d65ce9e9408b71 /sbin
parentd57a90f7377ddd72baeeacdbf435aa2abcfef37c (diff)
describe how to setup tcpmd5
Diffstat (limited to 'sbin')
-rw-r--r--sbin/ipsecctl/ipsec.conf.537
1 files changed, 36 insertions, 1 deletions
diff --git a/sbin/ipsecctl/ipsec.conf.5 b/sbin/ipsecctl/ipsec.conf.5
index 4048a8d534a..956a9fd924d 100644
--- a/sbin/ipsecctl/ipsec.conf.5
+++ b/sbin/ipsecctl/ipsec.conf.5
@@ -1,4 +1,4 @@
-.\" $OpenBSD: ipsec.conf.5,v 1.8 2005/04/10 14:02:45 jmc Exp $
+.\" $OpenBSD: ipsec.conf.5,v 1.9 2005/07/09 22:22:44 hshoexer Exp $
.\"
.\" Copyright (c) 2004 Mathieu Sauve-Frankel All rights reserved.
.\"
@@ -104,6 +104,37 @@ the
.Ar peer
specification can be left out.
.El
+.Sh TCP MD5 SIGNATURES
+RFC 2385 describes a mechanism to protect
+.Xr tcp 4
+sessions using MD5.
+A Security Association (SA) for TCP MD5 signatures is set up using the
+following rule:
+.Bl -tag -width xxxx
+.It Xo
+.Ar tcpmd5
+.Ar from
+.Aq Ar src
+.Ar to
+.Aq Ar dst
+.Ar spi
+.Aq Ar number
+.Ar key
+.Aq Ar hex string
+.Xc
+This rule applies for packets with source address
+.Aq Ar src
+and destination address
+.Aq Ar dst .
+All addresses are specified in CIDR notation.
+The parameter
+.Ar spi
+is a 32-bit value defining the Security Parameter Index (SPI) for this SA.
+The key to be used is a hexadecimal string of arbitrary length.
+.El
+.Pp
+For details on how to enable TCP MD5 signatures see
+.Xr tcp 4 .
.Sh EXAMPLES
.Bd -literal
# Host-to-host
@@ -119,6 +150,10 @@ flow esp from 192.168.7.0/24 to 192.168.8.0/24 peer 192.168.3.12
# Same as above, but explicitly specifying "in" and "out" rules
flow esp out from 192.168.7.0/24 to 192.168.8.0/24 peer 192.168.3.12
flow esp in from 192.168.8.0/24 to 192.168.7.0/24 peer 192.168.3.12
+
+# Set up a keys for TCP MD5 signatures
+tcpmd5 from 192.168.3.14 to 192.168.3.27 spi 0x1000 key 0xdeadbeef
+tcpmd5 from 192.168.3.27 to 192.168.3.14 spi 0x1001 key 0xbeefdead
.Ed
.Sh SEE ALSO
.Xr ipsec 4 ,