diff options
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | sshd.8 | 35 |
2 files changed, 35 insertions, 8 deletions
@@ -1,3 +1,9 @@ | |||
1 | 20010409 | ||
2 | - OpenBSD CVS Sync | ||
3 | - stevesk@cvs.openbsd.org 2001/04/08 16:01:36 | ||
4 | [sshd.8] | ||
5 | document ListenAddress addr:port | ||
6 | |||
1 | 20010408 | 7 | 20010408 |
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 $ |
@@ -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. | |||
485 | If the value is 0, the key is never regenerated. | 485 | If the value is 0, the key is never regenerated. |
486 | The default is 3600 (seconds). | 486 | The default is 3600 (seconds). |
487 | .It Cm ListenAddress | 487 | .It Cm ListenAddress |
488 | Specifies what local address | 488 | Specifies the local addresses |
489 | .Nm | 489 | .Nm |
490 | should listen on. | 490 | should listen on. |
491 | The default is to listen to all local addresses. | 491 | The following forms may be used: |
492 | Multiple options of this type are permitted. | 492 | .Pp |
493 | Additionally, the | 493 | .Bl -item -offset indent -compact |
494 | .Cm Ports | 494 | .It |
495 | options must precede this option. | 495 | .Cm ListenAddress |
496 | host|IPv4_addr|IPv6_addr | ||
497 | .It | ||
498 | .Cm ListenAddress | ||
499 | host|IPv4_addr:port | ||
500 | .It | ||
501 | .Cm ListenAddress | ||
502 | [host|IPv6_addr]:port | ||
503 | .El | ||
504 | .Pp | ||
505 | If | ||
506 | .Dq :port | ||
507 | is not specified, | ||
508 | .Nm | ||
509 | will listen on the address and all prior | ||
510 | .Cm Port | ||
511 | options specified. The default is to listen on all local | ||
512 | addresses. Multiple | ||
513 | .Cm ListenAddress | ||
514 | options are permitted. Additionally, any | ||
515 | .Cm Port | ||
516 | options must precede this option for non port qualified addresses. | ||
496 | .It Cm LoginGraceTime | 517 | .It Cm LoginGraceTime |
497 | The server disconnects after this time if the user has not | 518 | The server disconnects after this time if the user has not |
498 | successfully logged in. | 519 | successfully logged in. |