[BACK]Return to ssh.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/ssh.c between version 1.207 and 1.208

version 1.207, 2004/03/09 22:11:05 version 1.208, 2004/03/10 09:45:06
Line 142 
Line 142 
 static void  static void
 usage(void)  usage(void)
 {  {
         fprintf(stderr, "Usage: %s [options] host [command]\n", __progname);          fprintf(stderr,
         fprintf(stderr, "Options:\n");  "usage: ssh [-1246AaCfghkNnqsTtVvXxY] [-b bind_address] [-c cipher_spec]\n"
         fprintf(stderr, "  -l user     Log in using this user name.\n");  "           [-D port] [-e escape_char] [-F configfile] [-i identity_file]\n"
         fprintf(stderr, "  -n          Redirect input from " _PATH_DEVNULL ".\n");  "           [-L port:host:hostport] [-l login_name] [-m mac_spec] [-o option]\n"
         fprintf(stderr, "  -F config   Config file (default: ~/%s).\n",  "           [-p port] [-R port:host:hostport] [user@]hostname [command]\n"
              _PATH_SSH_USER_CONFFILE);          );
         fprintf(stderr, "  -A          Enable authentication agent forwarding.\n");  
         fprintf(stderr, "  -a          Disable authentication agent forwarding (default).\n");  
         fprintf(stderr, "  -X          Enable X11 connection forwarding.\n");  
         fprintf(stderr, "  -Y          Enable trusted X11 connection forwarding.\n");  
         fprintf(stderr, "  -x          Disable X11 connection forwarding (default).\n");  
         fprintf(stderr, "  -i file     Identity for public key authentication "  
             "(default: ~/.ssh/identity)\n");  
 #ifdef SMARTCARD  
         fprintf(stderr, "  -I reader   Set smartcard reader.\n");  
 #endif  
         fprintf(stderr, "  -t          Tty; allocate a tty even if command is given.\n");  
         fprintf(stderr, "  -T          Do not allocate a tty.\n");  
         fprintf(stderr, "  -v          Verbose; display verbose debugging messages.\n");  
         fprintf(stderr, "              Multiple -v increases verbosity.\n");  
         fprintf(stderr, "  -V          Display version number only.\n");  
         fprintf(stderr, "  -q          Quiet; don't display any warning messages.\n");  
         fprintf(stderr, "  -f          Fork into background after authentication.\n");  
         fprintf(stderr, "  -e char     Set escape character; ``none'' = disable (default: ~).\n");  
   
         fprintf(stderr, "  -c cipher   Select encryption algorithm\n");  
         fprintf(stderr, "  -m macs     Specify MAC algorithms for protocol version 2.\n");  
         fprintf(stderr, "  -p port     Connect to this port.  Server must be on the same port.\n");  
         fprintf(stderr, "  -L listen-port:host:port   Forward local port to remote address\n");  
         fprintf(stderr, "  -R listen-port:host:port   Forward remote port to local address\n");  
         fprintf(stderr, "              These cause %s to listen for connections on a port, and\n", __progname);  
         fprintf(stderr, "              forward them to the other side by connecting to host:port.\n");  
         fprintf(stderr, "  -D port     Enable dynamic application-level port forwarding.\n");  
         fprintf(stderr, "  -C          Enable compression.\n");  
         fprintf(stderr, "  -N          Do not execute a shell or command.\n");  
         fprintf(stderr, "  -g          Allow remote hosts to connect to forwarded ports.\n");  
         fprintf(stderr, "  -1          Force protocol version 1.\n");  
         fprintf(stderr, "  -2          Force protocol version 2.\n");  
         fprintf(stderr, "  -4          Use IPv4 only.\n");  
         fprintf(stderr, "  -6          Use IPv6 only.\n");  
         fprintf(stderr, "  -o 'option' Process the option as if it was read from a configuration file.\n");  
         fprintf(stderr, "  -s          Invoke command (mandatory) as SSH2 subsystem.\n");  
         fprintf(stderr, "  -b addr     Local IP address.\n");  
         exit(1);          exit(1);
 }  }
   

Legend:
Removed from v.1.207  
changed lines
  Added in v.1.208