VitalyKondratiev / vscode-sshextension

Extension for SSH connections using the ftp-simple settings
MIT License
21 stars 12 forks source link

config a new connection #14

Closed ghost closed 6 years ago

ghost commented 6 years ago

I want yo use shhextension to my remote

user: root 
eth0  inet addr:192.168.15.124  Bcast:192.168.15.255  Mask:255.255.255.0

but don't need "privateKey, project, "path": "/" etc ..." are those mandatory? how the set should look like?

VitalyKondratiev commented 6 years ago

Hello. No, required fields is name, host and username only. Check the readme (or extension page) for more info.

{
            "name": "My remote server",
            "host": "192.168.15.124",
            "username": "root",
}
ghost commented 6 years ago

Great! it works, Thank you!