Archived documentation — this article is no longer maintained.

The information below is retained for historical reference and may be outdated.


View the current documentation:
 https://www.quotaguard.com/docs/



Secure FTP allows you to transfer data securely between servers.

You can use the Ruby SFTP library to route SFTP transfers via QuotaGuard Static, allowing you to lock down access to our Static IP addresses.

require 'net/ssh'
require 'uri'
require 'net/sftp'
require 'net/ssh/proxy/http'

quotaguard = URI(ENV['QUOTAGUARDSTATIC_URL'])

proxy = Net::SSH::Proxy::HTTP.new(quotaguard.host,quotaguard.port,
                                  user: quotaguard.user,
                                  password: quotaguard.password)

options = { port: 22, proxy: proxy, password: 'sftppw' }

Net::SSH.start('1.1.1.1', 'sftpuser', options) do |ssh|
  ssh.sftp.connect do |sftp|
    sftp.dir.foreach('/') do |entry|
      puts entry.longname
    end
  end
end

If you have questions, or if this solution doesn’t work or fit your use case, please reach out to us at Support so we can help figure it out with you.


Working with sensitive data, like HIPAA, Financial, or Personally Identifiable Information (PII)? 
    Then you will want to check out our QuotaGuard Shield solution, it's the same as QuotaGuard Static, but with stronger end to end security for your requests. We can also help migrate current Static customers to Shield for free, just reach out to us at Support to request assistance.