Skip to content

thisleenoble/vscode-sshextension

 
 

Repository files navigation

About SSHExtension

Join the chat at https://gitter.im/Vitalykondratiev/vscode-sshextension

Latest Release Installs

This extension allows you to open an SSH connection in the integrated terminal. The extension was created in order to have access to the SSH in conjunction with the already available access to the FTP.

Features

You can use configurations from another extensions (e.g. ftp-simple)
The connection opens in a new instance of the integrated terminal.
SSH port forwarding.

How to use

Open terminal from server list

  • Open the Command Palette (usually F1 or Ctrl+Shift+P).
  • Select the command SSHExtension: Open SSH Connection.
  • Select a server from the list.

Demo Open connection from list

Fast open terminal

  • Open workspace with project mapped to server
  • Open any project file or go to already opened editor tab
  • Click on "Open SSH on <servername>" button

Demo Open connection from list

SSH port forwarding

  • Open the Command Palette (usually F1 or Ctrl+Shift+P).
  • Select the command SSHExtension: SSH Port Forwarding.
  • Select a forwarding type from: Local to remote (-L), Local to remote (-R), SOCKS (-D), Recently used (if exists saved arguments).
  • Enter the required parameters on request.
  • (Optionally) You can save your selections for faster port forwarding in the future.

Demo Open connection from list

To add a server, see Settings section.

Requirements

You should still have an ssh agent, not necessarily that it is available in the entire system. it is important that it is accessible from the integrated VSCode terminal.

Settings (for servers)

You can use ready-made config file from this extensions (if you use):

Or you can use extension settings simply add sshextension.serverList directive.

Extension settings

sshextension.serverList

  • Type: Array
  • Defaut: []

You can describe servers config in this parameter as array of objects.
Server object parameters:

  • name (string)* - name of server (showing in picks list if showHostsInPickLists is false).
  • host (string)* - server hostname.
  • port (number) - SSH port.
  • username (string)* - username for authentication.
  • password (string) - password for authentication.
  • privateKey (string) - string that contains a path to private key.
  • project (object) - specify local workspace path and server root path for fast terminal open.
  • path (string) - used for change directory after server connection.
  • customCommands (array of strings) - specifies custom commands which will execute on session start
  • portKnocking (object) - Port knocking server details

For example:

{
    "sshextension.serverList": [
        {
            "name": "Example server",
            "host": "example.com",
            "port": 22,
            "username": "user",
            "privateKey": "D:\\id_rsa",
            "project": {
                "D:/projects/project": "/home/user/project",
                "D:/projects/yet_another_project": "/home/user/yet_another_project"
            },
            "path": "/",
            "customCommands": [
              "pwd"
            ],
            "portKnocking" : {
              "host": "example.com",
              "port": 82517
            }
        },
        ...
    ]
}

sshextension.portKnocking

  • Type: Object
  • Defaut: ``

Specifies server details to be knocked prior to SSH connection. Host will revert to SSH host if undefined. Port is required For example:

{
  "sshextension.portKnocking": {
    "port": 82517
  }
}

sshextension.customCommands

  • Type: Array
  • Defaut: []

Specifies custom commands which will execute on session start.
For example:

{
  "sshextension.customCommands": [
    "pwd",
    "ls"
  ]
}

Demo Custom commands

sshextension.openProjectCatalog

  • Type: Boolean
  • Defaut: false

Open the project directory from the ftp-simple config, if it exists, after starting the SSH session.
For example:

{
  "sshextension.openProjectCatalog": true
}

sshextension.recentlyUsedForwardings

  • Type: Array
  • Defaut: []

In this place stored all saved port forwarding args. You can save the arguments for port forwarding, which you often use.
For example:

{
  "sshextension.recentlyUsedForwardings": [
    "-R 9000:localhost:9000"
  ]
}

sshextension.allowMultipleConnections

  • Type: Boolean
  • Defaut: false

Allow you open few connections for one server at the same time.
For example:

{
  "sshextension.allowMultipleConnections": true
}

sshextension.showHostsInPickLists

  • Type: Boolean
  • Defaut: false

Show usernames and hosthames in pick lists instead on server names.
For example:

{
  "sshextension.showHostsInPickLists": true
}

Roadmap

Add the ability to work with an external terminal.
Open SSH connections in Putty.
And a few more secret (before their release) features... ).

Special thanks

eduardbadillo
Added ability to use different port in ssh connections (pull request merged in version 0.1.2)

Feedback

I want to make a really useful extension, if you find a bug, please create an issue at github.
If you have suggestions to the functional, then write to the same.
And also if it's not difficult for you, leave a comment in the marketplace.

About

Extension for SSH connections using the ftp-simple settings

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%