8

我想用scp. 如果我使用默认的 ssh 端口,URI 将如下所示:

scp://root@host:/root/ids/rules.tar.gz

但我将 ssh 端口更改为3131. 如何获取 ssh 端口并将其附加到 scp 命令?

4

2 回答 2

10

从 7.7 版开始,常用scp命令行实用程序接受 URL 作为命令行参数。在 URL 中指定端口号的常用方法是跟随主机名:

scp://root@host:3131/root/ids/rules.tar.gz
                ^^^^

或者,scp可以-P选择指定端口:

scp -P 3131 root@host:/root/ids/rules.tar.gz .
于 2015-02-27T18:05:35.477 回答
1

您可以使用 scp -P 命令

于 2013-01-07T07:42:31.533 回答