Autosshオプションがマニュアルページの内容と一致しませんか?

Autosshオプションがマニュアルページの内容と一致しませんか?

無邪気な質問がありますが、たとえば、このスレッドを読むと次のようになります。https://superuser.com/questions/37738/how-to-reliously-keep-an-ssh-tunnel-open

許可された回答でこれを使用する方法を確認できますautossh。たとえば、次のようになります。

autossh -M 20000 -f -N your_public_server -R 1234:localhost:22 -C

しかし、マニュアルページからautossh https://manpages.ubuntu.com/manpages/focus/man1/autossh.1.html-M利用可能なオプションは、-fおよび3つのみ表示されます-V

私のシステムにも同じ状況があります。

$ autossh --help
/usr/lib/autossh/autossh: invalid option -- '-'
usage: autossh [-V] [-M monitor_port[:echo_port]] [-f] [SSH_OPTIONS]

    -M specifies monitor port. Overrides the environment
       variable AUTOSSH_PORT. 0 turns monitoring loop off.
       Alternatively, a port for an echo service on the remote
       machine may be specified. (Normally port 7.)
    -f run in background (autossh handles this, and does not
       pass it to ssh.)
    -V print autossh version and exit.

Environment variables are:
    AUTOSSH_GATETIME    - how long must an ssh session be established
                          before we decide it really was established
                          (in seconds). Default is 30 seconds; use of -f
                          flag sets this to 0.
    AUTOSSH_LOGFILE     - file to log to (default is to use the syslog
                          facility)
    AUTOSSH_LOGLEVEL    - level of log verbosity
    AUTOSSH_MAXLIFETIME - set the maximum time to live (seconds)
    AUTOSSH_MAXSTART    - max times to restart (default is no limit)
    AUTOSSH_MESSAGE     - message to append to echo string (max 64 bytes)
    AUTOSSH_PATH        - path to ssh if not default
    AUTOSSH_PIDFILE     - write pid to this file
    AUTOSSH_POLL        - how often to check the connection (seconds)
    AUTOSSH_FIRST_POLL  - time before first connection check (seconds)
    AUTOSSH_PORT        - port to use for monitor connection
    AUTOSSH_DEBUG       - turn logging to maximum verbosity and log to
                          stderr

-N-Rおよびオプションはどこから来ましたか-C?私は間違った場所を見たか?

ベストアンサー1

usage: autossh [-V] [-M monitor_port[:echo_port]] [-f] [SSH_OPTIONS]

これらは[SSH_OPTIONS]autossh、オプションはそのまま渡され、処理さsshれますssh

バラよりman sshそんな方のために。

おすすめ記事