标签: c# ssh
我正在尝试使用SshClient(Renci库)进行连接,但是我找不到在连接时添加其他端口的方法。它使用默认的22端口:
代码示例:
using (var client = new SshClient(IP, username, password)) { }
答案 0 :(得分:-2)
我看到SshClient支持端口。您可以在下面写:
using (var client = new SshClient(IP, port, username, password)) { }