You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@warrenbhw I couldn't find it in the docs but it does support non-standard ports. This works for me:
sftp_options={password: ENV['SFTP_PASSWORD'],port: ENV['SFTP_PORT'],# this is set to 8022non_interactive: true,append_all_supported_algorithms: true}sftp=Net::SFTP.start(ENV['SFTP_HOST'],ENV['SFTP_USER'],sftp_options)
In some rare cases, I want to make a connection over a custom port.
The text was updated successfully, but these errors were encountered: