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.
我想用scp. 如果我使用默认的 ssh 端口,URI 将如下所示:
scp
scp://root@host:/root/ids/rules.tar.gz
但我将 ssh 端口更改为3131. 如何获取 ssh 端口并将其附加到 scp 命令?
3131
从 7.7 版开始,常用scp命令行实用程序接受 URL 作为命令行参数。在 URL 中指定端口号的常用方法是跟随主机名:
scp://root@host:3131/root/ids/rules.tar.gz ^^^^
或者,scp可以-P选择指定端口:
-P
scp -P 3131 root@host:/root/ids/rules.tar.gz .
您可以使用 scp -P 命令