diff options
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | ssh.1 | 33 | ||||
-rw-r--r-- | ssh_config.5 | 20 | ||||
-rw-r--r-- | sshd.8 | 7 |
4 files changed, 21 insertions, 47 deletions
@@ -1,3 +1,11 @@ | |||
1 | 20100905 | ||
2 | - OpenBSD CVS Sync | ||
3 | - djm@cvs.openbsd.org 2010/08/04 05:37:01 | ||
4 | [ssh.1 ssh_config.5 sshd.8] | ||
5 | Remove mentions of weird "addr/port" alternate address format for IPv6 | ||
6 | addresses combinations. It hasn't worked for ages and we have supported | ||
7 | the more commen "[addr]:port" format for a long time. ok jmc@ markus@ | ||
8 | |||
1 | 20100903 | 9 | 20100903 |
2 | - (dtucker) [monitor.c] Bug #1795: Initialize the values to be returned from | 10 | - (dtucker) [monitor.c] Bug #1795: Initialize the values to be returned from |
3 | PAM to sane values in case the PAM method doesn't write to them. Spotted by | 11 | PAM to sane values in case the PAM method doesn't write to them. Spotted by |
@@ -34,8 +34,8 @@ | |||
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: ssh.1,v 1.307 2010/07/23 08:49:25 dtucker Exp $ | 37 | .\" $OpenBSD: ssh.1,v 1.308 2010/08/04 05:37:01 djm Exp $ |
38 | .Dd $Mdocdate: July 23 2010 $ | 38 | .Dd $Mdocdate: August 4 2010 $ |
39 | .Dt SSH 1 | 39 | .Dt SSH 1 |
40 | .Os | 40 | .Os |
41 | .Sh NAME | 41 | .Sh NAME |
@@ -202,14 +202,7 @@ will act as a SOCKS server. | |||
202 | Only root can forward privileged ports. | 202 | Only root can forward privileged ports. |
203 | Dynamic port forwardings can also be specified in the configuration file. | 203 | Dynamic port forwardings can also be specified in the configuration file. |
204 | .Pp | 204 | .Pp |
205 | IPv6 addresses can be specified with an alternative syntax: | 205 | IPv6 addresses can be specified by enclosing the address in square brackets. |
206 | .Sm off | ||
207 | .Xo | ||
208 | .Op Ar bind_address No / | ||
209 | .Ar port | ||
210 | .Xc | ||
211 | .Sm on | ||
212 | or by enclosing the address in square brackets. | ||
213 | Only the superuser can forward privileged ports. | 206 | Only the superuser can forward privileged ports. |
214 | By default, the local port is bound in accordance with the | 207 | By default, the local port is bound in accordance with the |
215 | .Cm GatewayPorts | 208 | .Cm GatewayPorts |
@@ -320,15 +313,7 @@ port | |||
320 | .Ar hostport | 313 | .Ar hostport |
321 | from the remote machine. | 314 | from the remote machine. |
322 | Port forwardings can also be specified in the configuration file. | 315 | Port forwardings can also be specified in the configuration file. |
323 | IPv6 addresses can be specified with an alternative syntax: | 316 | IPv6 addresses can be specified by enclosing the address in square brackets. |
324 | .Sm off | ||
325 | .Xo | ||
326 | .Op Ar bind_address No / | ||
327 | .Ar port No / Ar host No / | ||
328 | .Ar hostport | ||
329 | .Xc | ||
330 | .Sm on | ||
331 | or by enclosing the address in square brackets. | ||
332 | Only the superuser can forward privileged ports. | 317 | Only the superuser can forward privileged ports. |
333 | By default, the local port is bound in accordance with the | 318 | By default, the local port is bound in accordance with the |
334 | .Cm GatewayPorts | 319 | .Cm GatewayPorts |
@@ -511,15 +496,7 @@ from the local machine. | |||
511 | Port forwardings can also be specified in the configuration file. | 496 | Port forwardings can also be specified in the configuration file. |
512 | Privileged ports can be forwarded only when | 497 | Privileged ports can be forwarded only when |
513 | logging in as root on the remote machine. | 498 | logging in as root on the remote machine. |
514 | IPv6 addresses can be specified by enclosing the address in square braces or | 499 | IPv6 addresses can be specified by enclosing the address in square braces. |
515 | using an alternative syntax: | ||
516 | .Sm off | ||
517 | .Xo | ||
518 | .Op Ar bind_address No / | ||
519 | .Ar host No / Ar port No / | ||
520 | .Ar hostport | ||
521 | .Xc . | ||
522 | .Sm on | ||
523 | .Pp | 500 | .Pp |
524 | By default, the listening socket on the server will be bound to the loopback | 501 | By default, the listening socket on the server will be bound to the loopback |
525 | interface only. | 502 | interface only. |
diff --git a/ssh_config.5 b/ssh_config.5 index 04df8184c..ddb806ec0 100644 --- a/ssh_config.5 +++ b/ssh_config.5 | |||
@@ -34,8 +34,8 @@ | |||
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: ssh_config.5,v 1.137 2010/07/19 09:15:12 djm Exp $ | 37 | .\" $OpenBSD: ssh_config.5,v 1.138 2010/08/04 05:37:01 djm Exp $ |
38 | .Dd $Mdocdate: July 19 2010 $ | 38 | .Dd $Mdocdate: August 4 2010 $ |
39 | .Dt SSH_CONFIG 5 | 39 | .Dt SSH_CONFIG 5 |
40 | .Os | 40 | .Os |
41 | .Sh NAME | 41 | .Sh NAME |
@@ -351,9 +351,7 @@ The argument must be | |||
351 | .Sm off | 351 | .Sm off |
352 | .Oo Ar bind_address : Oc Ar port . | 352 | .Oo Ar bind_address : Oc Ar port . |
353 | .Sm on | 353 | .Sm on |
354 | IPv6 addresses can be specified by enclosing addresses in square brackets or | 354 | IPv6 addresses can be specified by enclosing addresses in square brackets. |
355 | by using an alternative syntax: | ||
356 | .Oo Ar bind_address Ns / Oc Ns Ar port . | ||
357 | By default, the local port is bound in accordance with the | 355 | By default, the local port is bound in accordance with the |
358 | .Cm GatewayPorts | 356 | .Cm GatewayPorts |
359 | setting. | 357 | setting. |
@@ -678,11 +676,7 @@ The first argument must be | |||
678 | .Sm on | 676 | .Sm on |
679 | and the second argument must be | 677 | and the second argument must be |
680 | .Ar host : Ns Ar hostport . | 678 | .Ar host : Ns Ar hostport . |
681 | IPv6 addresses can be specified by enclosing addresses in square brackets or | 679 | IPv6 addresses can be specified by enclosing addresses in square brackets. |
682 | by using an alternative syntax: | ||
683 | .Oo Ar bind_address Ns / Oc Ns Ar port | ||
684 | and | ||
685 | .Ar host Ns / Ns Ar hostport . | ||
686 | Multiple forwardings may be specified, and additional forwardings can be | 680 | Multiple forwardings may be specified, and additional forwardings can be |
687 | given on the command line. | 681 | given on the command line. |
688 | Only the superuser can forward privileged ports. | 682 | Only the superuser can forward privileged ports. |
@@ -862,11 +856,7 @@ The first argument must be | |||
862 | .Sm on | 856 | .Sm on |
863 | and the second argument must be | 857 | and the second argument must be |
864 | .Ar host : Ns Ar hostport . | 858 | .Ar host : Ns Ar hostport . |
865 | IPv6 addresses can be specified by enclosing addresses in square brackets | 859 | IPv6 addresses can be specified by enclosing addresses in square brackets. |
866 | or by using an alternative syntax: | ||
867 | .Oo Ar bind_address Ns / Oc Ns Ar port | ||
868 | and | ||
869 | .Ar host Ns / Ns Ar hostport . | ||
870 | Multiple forwardings may be specified, and additional | 860 | Multiple forwardings may be specified, and additional |
871 | forwardings can be given on the command line. | 861 | forwardings can be given on the command line. |
872 | Privileged ports can be forwarded only when | 862 | Privileged ports can be forwarded only when |
@@ -34,8 +34,8 @@ | |||
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.256 2010/05/07 11:30:30 djm Exp $ | 37 | .\" $OpenBSD: sshd.8,v 1.257 2010/08/04 05:37:01 djm Exp $ |
38 | .Dd $Mdocdate: May 7 2010 $ | 38 | .Dd $Mdocdate: August 4 2010 $ |
39 | .Dt SSHD 8 | 39 | .Dt SSHD 8 |
40 | .Os | 40 | .Os |
41 | .Sh NAME | 41 | .Sh NAME |
@@ -595,8 +595,7 @@ Limit local | |||
595 | .Li ``ssh -L'' | 595 | .Li ``ssh -L'' |
596 | port forwarding such that it may only connect to the specified host and | 596 | port forwarding such that it may only connect to the specified host and |
597 | port. | 597 | port. |
598 | IPv6 addresses can be specified with an alternative syntax: | 598 | IPv6 addresses can be specified by enclosing the address in square brackets. |
599 | .Ar host Ns / Ns Ar port . | ||
600 | Multiple | 599 | Multiple |
601 | .Cm permitopen | 600 | .Cm permitopen |
602 | options may be applied separated by commas. | 601 | options may be applied separated by commas. |