Neko Docs

ssh

SSH 端口转发

https://www.cnblogs.com/good-study/p/15740136.html

https://wangdoc.com/ssh/port-forwarding

SSH 动态转发

ssh -D <local port> <username>@<host>

SSH 本地转发

ssh -L -N -f <local port>:<target host>:<target port> <username>@<host>

SSH 远程转发

ssh -R -N <remote port>:<target host>:<target port> <username>@<host>

多个密钥

同时配置多个id_rsa

On this page