If you are looking to connect to an SFTP server the default port is 22, but what if the provided port details that you have is not 22, you will need to use -P option to provide the custom port details,
Example Connect to SFTP Custom Port:# sftp -P 8020 user-name@sftp-server-host-name.com
(user-name@sftp-server-host-name.com) Password:
Connected to sftp-server-host-name.com.
sftp>
As you can see by using -P option followed by the port number you can connect to a specific port.
More Posts related to FTP,
- Check help on commands while being on sftp> prompt
- How to connect to SFTP location using Terminal command
- List of 60 useful FTP Client Commands to access server
- 10 FTP SFTP Clients and Alternatives
- How to Copy a remote file to local using SFTP command?
- How to switch between sftp and Terminal shell
- [Solution] SFTP Connection closed File 22 not found
- FileZilla Connection time out Failed to retrieve directory listing
- How to SFTP to port different than 22 (SFTP Custom port)
More Posts:
- How to Copy full Absolute Path of a File on Mac - MacOS
- Android ListView turns Black or Flickers while Scrolling - Android
- Android Shared Preferences API tutorial - Android
- [Solved] SharePoint Search Internal server error exception - SharePoint
- Eclipse : A java Runtime Environment (JRE) or Java Development kit (JDK) must be available - Java
- Understanding grep command and its usage [Unix/Linux/macOS/Windows-Bash] - HowTos
- How to fix PIP Install error: subprocess-exited-with-error - PIP
- Write JSON to file in pretty-printed Format using Java Jackson - Java