We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SSH config is not loaded when sshConfigPath is not set in settings.
sshConfigPath
"host": "webserver-la-2"
.ftpconfig
Expected behavior: Supposed to read ~/.ssh/config by default, connection should be made without any issue.
~/.ssh/config
Actual behavior: Connection error
Reproduces how often: 100%
$ atom --version Atom : 1.25.0 Electron: 1.7.11 Chrome : 58.0.3029.110 Node : 7.9.0
N/A
The text was updated successfully, but these errors were encountered:
aae9610
Hi @sparanoid , can you share your .ftpconfig file and ~/.ssh/config file? Thank you very much!
Sorry, something went wrong.
@bearpaw
In ~/.ssh/config:
Host custom-hostname HostName __host_ip_here__ User ec2-user IdentityFile ~/.ssh/aws.pem
In .ftpconfig:
{ "protocol": "sftp", "host": "custom-hostname", "port": 22, "user": "ec2-user", "pass": "", "promptForPass": false, "remote": "/srv/", "local": "", "agent": "", "privatekey": "/path/to/your/key", "passphrase": "", "hosthash": "", "ignorehost": true, "connTimeout": 10000, "keepalive": 10000, "keyboardInteractive": false, "watch": [], "watchTimeout": 500 }
Actually user field in .ftpconfig is ignored, it can be anything or just left empty since we define it in SSH config.
user
Settings must specify the path for the configuration. I changed the default value, but only next version included. (Look at this)
No branches or pull requests
Description
SSH config is not loaded when
sshConfigPath
is not set in settings.Steps to Reproduce
sshConfigPath
unset."host": "webserver-la-2"
in.ftpconfig
.Expected behavior:
Supposed to read
~/.ssh/config
by default, connection should be made without any issue.Actual behavior:
Connection error
Reproduces how often:
100%
Versions
Additional Information
N/A
The text was updated successfully, but these errors were encountered: