summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog8
-rw-r--r--sshd.835
2 files changed, 35 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index 5c45998c8..f6d4c4447 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
120010409
2 - OpenBSD CVS Sync
3 - stevesk@cvs.openbsd.org 2001/04/08 16:01:36
4 [sshd.8]
5 document ListenAddress addr:port
6
120010408 720010408
2 - OpenBSD CVS Sync 8 - OpenBSD CVS Sync
3 - stevesk@cvs.openbsd.org 2001/04/06 22:12:47 9 - stevesk@cvs.openbsd.org 2001/04/06 22:12:47
@@ -4937,4 +4943,4 @@
4937 - Wrote replacements for strlcpy and mkdtemp 4943 - Wrote replacements for strlcpy and mkdtemp
4938 - Released 1.0pre1 4944 - Released 1.0pre1
4939 4945
4940$Id: ChangeLog,v 1.1079 2001/04/07 17:25:48 mouring Exp $ 4946$Id: ChangeLog,v 1.1080 2001/04/08 18:02:43 mouring Exp $
diff --git a/sshd.8 b/sshd.8
index 65d3ca751..b4e2af155 100644
--- a/sshd.8
+++ b/sshd.8
@@ -34,7 +34,7 @@
34.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 34.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
35.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 35.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36.\" 36.\"
37.\" $OpenBSD: sshd.8,v 1.109 2001/04/02 14:15:31 stevesk Exp $ 37.\" $OpenBSD: sshd.8,v 1.110 2001/04/08 16:01:36 stevesk Exp $
38.Dd September 25, 1999 38.Dd September 25, 1999
39.Dt SSHD 8 39.Dt SSHD 8
40.Os 40.Os
@@ -485,14 +485,35 @@ The key is never stored anywhere.
485If the value is 0, the key is never regenerated. 485If the value is 0, the key is never regenerated.
486The default is 3600 (seconds). 486The default is 3600 (seconds).
487.It Cm ListenAddress 487.It Cm ListenAddress
488Specifies what local address 488Specifies the local addresses
489.Nm 489.Nm
490should listen on. 490should listen on.
491The default is to listen to all local addresses. 491The following forms may be used:
492Multiple options of this type are permitted. 492.Pp
493Additionally, the 493.Bl -item -offset indent -compact
494.Cm Ports 494.It
495options must precede this option. 495.Cm ListenAddress
496host|IPv4_addr|IPv6_addr
497.It
498.Cm ListenAddress
499host|IPv4_addr:port
500.It
501.Cm ListenAddress
502[host|IPv6_addr]:port
503.El
504.Pp
505If
506.Dq :port
507is not specified,
508.Nm
509will listen on the address and all prior
510.Cm Port
511options specified. The default is to listen on all local
512addresses. Multiple
513.Cm ListenAddress
514options are permitted. Additionally, any
515.Cm Port
516options must precede this option for non port qualified addresses.
496.It Cm LoginGraceTime 517.It Cm LoginGraceTime
497The server disconnects after this time if the user has not 518The server disconnects after this time if the user has not
498successfully logged in. 519successfully logged in.