- stevesk@cvs.openbsd.org 2002/08/29 16:02:54
[ssh.1 ssh.c] deprecate -P as UsePrivilegedPort defaults to no now; ok markus@
This commit is contained in:
parent
ebc2306629
commit
147bba3453
|
@ -42,6 +42,9 @@
|
||||||
[monitor.c session.c sshlogin.c sshlogin.h]
|
[monitor.c session.c sshlogin.c sshlogin.h]
|
||||||
pass addrlen with sockaddr *; from Hajimu UMEMOTO <ume@FreeBSD.org>
|
pass addrlen with sockaddr *; from Hajimu UMEMOTO <ume@FreeBSD.org>
|
||||||
NOTE: there are also p-specific parts to this patch. ok markus@
|
NOTE: there are also p-specific parts to this patch. ok markus@
|
||||||
|
- stevesk@cvs.openbsd.org 2002/08/29 16:02:54
|
||||||
|
[ssh.1 ssh.c]
|
||||||
|
deprecate -P as UsePrivilegedPort defaults to no now; ok markus@
|
||||||
|
|
||||||
20020820
|
20020820
|
||||||
- OpenBSD CVS Sync
|
- OpenBSD CVS Sync
|
||||||
|
@ -1583,4 +1586,4 @@
|
||||||
- (stevesk) entropy.c: typo in debug message
|
- (stevesk) entropy.c: typo in debug message
|
||||||
- (djm) ssh-keygen -i needs seeded RNG; report from markus@
|
- (djm) ssh-keygen -i needs seeded RNG; report from markus@
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.2438 2002/09/04 06:45:09 djm Exp $
|
$Id: ChangeLog,v 1.2439 2002/09/04 06:46:06 djm Exp $
|
||||||
|
|
13
ssh.1
13
ssh.1
|
@ -34,7 +34,7 @@
|
||||||
.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||||
.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
.\"
|
.\"
|
||||||
.\" $OpenBSD: ssh.1,v 1.163 2002/08/17 23:07:14 stevesk Exp $
|
.\" $OpenBSD: ssh.1,v 1.164 2002/08/29 16:02:54 stevesk Exp $
|
||||||
.Dd September 25, 1999
|
.Dd September 25, 1999
|
||||||
.Dt SSH 1
|
.Dt SSH 1
|
||||||
.Os
|
.Os
|
||||||
|
@ -48,7 +48,7 @@
|
||||||
.Op Ar command
|
.Op Ar command
|
||||||
.Pp
|
.Pp
|
||||||
.Nm ssh
|
.Nm ssh
|
||||||
.Op Fl afgknqstvxACNPTX1246
|
.Op Fl afgknqstvxACNTX1246
|
||||||
.Op Fl b Ar bind_address
|
.Op Fl b Ar bind_address
|
||||||
.Op Fl c Ar cipher_spec
|
.Op Fl c Ar cipher_spec
|
||||||
.Op Fl e Ar escape_char
|
.Op Fl e Ar escape_char
|
||||||
|
@ -523,15 +523,6 @@ command-line flag.
|
||||||
Port to connect to on the remote host.
|
Port to connect to on the remote host.
|
||||||
This can be specified on a
|
This can be specified on a
|
||||||
per-host basis in the configuration file.
|
per-host basis in the configuration file.
|
||||||
.It Fl P
|
|
||||||
Use a non-privileged port for outgoing connections.
|
|
||||||
This can be used if a firewall does
|
|
||||||
not permit connections from privileged ports.
|
|
||||||
Note that this option turns off
|
|
||||||
.Cm RhostsAuthentication
|
|
||||||
and
|
|
||||||
.Cm RhostsRSAAuthentication
|
|
||||||
for older servers.
|
|
||||||
.It Fl q
|
.It Fl q
|
||||||
Quiet mode.
|
Quiet mode.
|
||||||
Causes all warning and diagnostic messages to be suppressed.
|
Causes all warning and diagnostic messages to be suppressed.
|
||||||
|
|
5
ssh.c
5
ssh.c
|
@ -40,7 +40,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
RCSID("$OpenBSD: ssh.c,v 1.182 2002/07/19 17:42:40 stevesk Exp $");
|
RCSID("$OpenBSD: ssh.c,v 1.183 2002/08/29 16:02:54 stevesk Exp $");
|
||||||
|
|
||||||
#include <openssl/evp.h>
|
#include <openssl/evp.h>
|
||||||
#include <openssl/err.h>
|
#include <openssl/err.h>
|
||||||
|
@ -174,7 +174,6 @@ usage(void)
|
||||||
fprintf(stderr, " -v Verbose; display verbose debugging messages.\n");
|
fprintf(stderr, " -v Verbose; display verbose debugging messages.\n");
|
||||||
fprintf(stderr, " Multiple -v increases verbosity.\n");
|
fprintf(stderr, " Multiple -v increases verbosity.\n");
|
||||||
fprintf(stderr, " -V Display version number only.\n");
|
fprintf(stderr, " -V Display version number only.\n");
|
||||||
fprintf(stderr, " -P Don't allocate a privileged port.\n");
|
|
||||||
fprintf(stderr, " -q Quiet; don't display any warning messages.\n");
|
fprintf(stderr, " -q Quiet; don't display any warning messages.\n");
|
||||||
fprintf(stderr, " -f Fork into background after authentication.\n");
|
fprintf(stderr, " -f Fork into background after authentication.\n");
|
||||||
fprintf(stderr, " -e char Set escape character; ``none'' = disable (default: ~).\n");
|
fprintf(stderr, " -e char Set escape character; ``none'' = disable (default: ~).\n");
|
||||||
|
@ -303,7 +302,7 @@ again:
|
||||||
case 'g':
|
case 'g':
|
||||||
options.gateway_ports = 1;
|
options.gateway_ports = 1;
|
||||||
break;
|
break;
|
||||||
case 'P':
|
case 'P': /* deprecated */
|
||||||
options.use_privileged_port = 0;
|
options.use_privileged_port = 0;
|
||||||
break;
|
break;
|
||||||
case 'a':
|
case 'a':
|
||||||
|
|
Loading…
Reference in New Issue