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그런 분들을 위해.

관련 정보