Linux Connecting to remote server via SSH/SFTP in Nautilus

Gaurish

ex-Mod
Nautilus has a feature by which it can connect to remove FTP, SSH servers. I have been using this feature heavily to ssh into my VPS.

so in the Location Bar, I used to the following:

Code:
ssh://username@ssh.server.com

Now,
I have changed SSH port from 22 to something else. How do I define SSH port in nautilus?
 
Guess you'll have to create a config file and add the details into it.

Code:
$ cat ~/.ssh/config

Host [I]server_name[/I]

HostName ssh.server.com

User [I]username[/I]

Port [I]port_number[/I]
 
Okay, I figured how Can I specify a custom port:D
IJzm5.png


Thanks for help:eek:hyeah:
 
Back
Top