bigbox
jump
중간자 역할을 하여 어디에서나(방화벽 뒤) 로그인 할 수 있도록 과 사이에 역방향 SSH 터널을 설정했습니다 . 이것은 훌륭하게 작동합니다. 랩톱에서 시작하면 곧 시작됩니다.bigbox
jump
ssh bigbox
이제 사용하고 싶습니다.모쉬대기 시간을 줄이기 위해 노력했지만 어떻게 작동하게 만드는지 잘 모르겠습니다. 나는 Mosh에 대한 이전 경험이 없었습니다. 기본적으로 SSH를 사용하여 내 구성으로 초기 연결을 설정한 다음 Mosh에 맡기고 싶습니다.
예상대로, 어느 쪽도 작동하지 mosh bigbox
않았습니다 mosh --ssh="ssh bigbox" localhost
.
$ mosh bigbox
/opt/homebrew/bin/mosh: Could not connect to localhost, last tried ::1: Connection refused
kex_exchange_identification: Connection closed by remote host
Connection closed by UNKNOWN port 65535
/opt/homebrew/bin/mosh: Did not find remote IP address (is SSH ProxyCommand disabled?).
내 구성은 다음과 같습니다.
~/.ssh/config
Host jump
HostName jump.somedomain.com
User jumpuser
# https://unix.stackexchange.com/questions/693885/hardening-reverse-ssh-tunnel-via-jump-host/693886#693886
Host bigbox
ProxyJump jump
User my_user
# Using a reversed SSH tunnel
HostName localhost
Port 20001