Linux SCP定义目标端口


8

如何为目标IP指定端口?当我这样做时,scp -p 0000它仍然尝试连接端口22,而不是我指定的端口。

scp svn_backup.tgz user@xxx.xxx.xx.xxx:/path/to/new/svn/

1
您可以在阅读手册页中找到有用的信息。man scp, 例如。
motobói

1
如有疑问,--helpman可能会给您答案。
Ben Lessani-Sonassi 2012年

Answers:



4

还值得注意的是,端口规范必须位于文件名之前,即:

scp svn_backup.tgz -P 12345 user@xxx.xxx.xx.xxx:/path/to/new/svn/

*不起作用。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.