diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2004-01-21 19:42:43 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2004-01-21 19:42:43 +0000 |
commit | cbb23386b36e20b414a76654368719582f1ec799 (patch) | |
tree | 659dc20271e42c96b4185ab87b5145bc1a6e89dd | |
parent | 8404edb6606d47b7b34d489ec90720058af99ae2 (diff) |
fix wording; from Ross L Richardson (PR 3641);
while i'm here, `\\' -> `\e' and kill a nasty Pp;
-rw-r--r-- | sbin/brconfig/brconfig.8 | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/sbin/brconfig/brconfig.8 b/sbin/brconfig/brconfig.8 index 9aa1430e8c4..f9d3f2ccaf9 100644 --- a/sbin/brconfig/brconfig.8 +++ b/sbin/brconfig/brconfig.8 @@ -1,4 +1,4 @@ -.\" $OpenBSD: brconfig.8,v 1.47 2003/12/07 06:13:23 deraadt Exp $ +.\" $OpenBSD: brconfig.8,v 1.48 2004/01/21 19:42:42 jmc Exp $ .\" .\" Copyright (c) 1999-2001 Jason L. Wright (jason@thought.net) .\" All rights reserved. @@ -353,23 +353,22 @@ Configure the gif0 interface: Create Security Associations (SAs) between the external IP address of each bridge: .Bd -literal -# ipsecadm new esp -spi 4242 -dst 4.3.2.1 -src 1.2.3.4 \\ +# ipsecadm new esp -spi 4242 -dst 4.3.2.1 -src 1.2.3.4 \e -enc 3des -auth md5 -keyfile keyfile1 -authkeyfile authkeyfile1 .Ed -.Pp .Bd -literal -# ipsecadm new esp -spi 4243 -dst 1.2.3.4 -src 4.3.2.1 \\ +# ipsecadm new esp -spi 4243 -dst 1.2.3.4 -src 4.3.2.1 \e -enc 3des -auth md5 -keyfile keyfile2 -authkeyfile authkeyfile2 .Ed .Pp Set up ingress flows so that traffic is allowed between the two bridges for the above associations: .Bd -literal -(on bridge1) # ipsecadm flow -dst 4.3.2.1 -out \\ - -transport etherip -require \\ +(on bridge1) # ipsecadm flow -dst 4.3.2.1 -out \e + -transport etherip -require \e -addr 1.2.3.4 255.255.255.255 4.3.2.1 255.255.255.255 -(on bridge2) # ipsecadm flow -dst 1.2.3.4 -out \\ - -transport etherip -require \\ +(on bridge2) # ipsecadm flow -dst 1.2.3.4 -out \e + -transport etherip -require \e -addr 4.3.2.1 255.255.255.255 1.2.3.4 255.255.255.255 .Ed .Pp @@ -389,7 +388,7 @@ frames: The internal interface, ie. fxp1, on each bridge need not have an IP address; the bridge can function without it. .Pp -Note: It is possible to put all the following commands in the +Note: It is possible to put the above commands in the .Xr hostname.if 5 and .Xr bridgename.if 5 |