Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道您可以通过 SSH 执行如下操作:
ssh remote@dyndns.org 'your actions'
但我想知道,如果您在远程连接的另一端与其他本地计算机有一个网络,您是否可以ssh对这些计算机执行操作并执行操作。会不会是这样:
ssh
ssh remote@dyndns.org 'ssh computer_local 'your actions''
这可能吗?如果是这样,你能走多深,你能连接到内部网络并走三深吗?
是的,我已经做到了。真的没有限制。您不需要在命令中使用引号。例如:
ssh user1@host1 ssh user2@host2 ssh user3@host3 env
但是,为了完成这项工作,您需要在整个链中进行无密码登录。