我想要使用Sublime Text 3中的SFTP包连接到SFTP服务器。
出于某种原因,每次尝试连接时都会出现超时。 SSH密钥设置正确,我也可以使用WinSCP,FileZilla和PuTTy连接到服务器。
这是错误:
Connecting to SFTP server "pirpi.pil.dk" as "devafdoede" ....... failure (Connection timeout)
这只是Sublime SFTP包,不想连接。这是我的配置:
{
// The tab key will cycle through the settings when first created
// Visit http://wbond.net/sublime_packages/sftp/settings for help
// sftp, ftp or ftps
"type": "sftp",
"save_before_upload": true,
"upload_on_save": false,
"sync_down_on_open": false,
"sync_skip_deletes": false,
"sync_same_age": true,
"confirm_downloads": false,
"confirm_sync": true,
"confirm_overwrite_newer": false,
"host": "pirpi.pil.dk",
"user": "devafdoede",
//"password": "password",
//"port": "22",
"remote_path": "/mypath",
"ignore_regexes": [
"\\.sublime-(project|workspace)", "sftp-config(-alt\\d?)?\\.json",
"sftp-settings\\.json", "/venv/", "\\.svn/", "\\.hg/", "\\.git/",
"\\.bzr", "_darcs", "CVS", "\\.DS_Store", "Thumbs\\.db", "desktop\\.ini"
],
//"file_permissions": "664",
//"dir_permissions": "775",
//"extra_list_connections": 0,
"connect_timeout": 30,
//"keepalive": 120,
//"ftp_passive_mode": true,
//"ftp_obey_passive_host": false,
//"ssh_key_file": "~/.ssh/id_rsa",
//"sftp_flags": ["-F", "/path/to/ssh_config"],
//"preserve_modification_times": false,
//"remote_time_offset_in_hours": 0,
//"remote_encoding": "utf-8",
//"remote_locale": "C",
//"allow_config_upload": false,
}
答案 0 :(得分:4)
如果您在Windows上,则需要添加特定的ssh_key_file
。
来自SFTP FAQ:
对于Windows,Sublime SFTP使用PSFTP,并与之一起发布 油灰。 将自动使用加载到Pageant 中的任何键。它是 也可以提供.ppk私钥文件作为ssh_key_file 设置SFTP远程。 .ppk文件可以从头开始生成, 或者是现有的OpenSSH私钥,通过PuTTYgen。所有这些 可以从PuTTY站点下载实用程序,但不是 Sublime SFTP完全发挥作用。
您需要使用PuTTYgen创建私钥文件并打开Pageant并选择密钥。
在这里阅读更多内容: http://wbond.net/sublime_packages/sftp/faq#SSHKeys http://the.earth.li/~sgtatham/putty/0.61/htmldoc/Chapter9.html#pageant
您需要在sftp config中指定ssh_key