Skip to content
This repository was archived by the owner on Feb 18, 2026. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions rl_cli/commands/devbox.py
Original file line number Diff line number Diff line change
Expand Up @@ -294,6 +294,8 @@ async def ssh(args) -> None:
User {user}
IdentityFile {keyfile_path}
StrictHostKeyChecking no
ServerAliveInterval 15
ServerAliveCountMax 3
ProxyCommand openssl s_client -quiet -servername %h -connect {ssh_url()} 2>/dev/null
"""
)
Expand All @@ -310,6 +312,10 @@ async def ssh(args) -> None:
f"ProxyCommand={proxy_command}",
"-o",
"StrictHostKeyChecking=no",
"-o",
"ServerAliveInterval=15",
"-o",
"ServerAliveCountMax=3",
f"{user}@{url}",
]
subprocess.run(command)
Expand Down
Loading