Repository is archived
No commit activity in last 3 years
No release in over 3 years
Enable Net::FTP to send PORT command.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.6
~> 10.0
~> 3.0
 Project Readme

Net::FTP::PortCommand

Gem Version Build Status

This gem enables Net::FTP to send FTP PORT command.

If your FTP client have to use active mode and over NAT, this gem may be helpful.

Installation

Add this line to your application's Gemfile:

gem 'net-ftp-port_command'

And then execute:

$ bundle

Or install it yourself as:

$ gem install net-ftp-port_command

Usage

require 'net/ftp'
require 'net/ftp/port_command'

ftp = Net::FTP.new("exmaple.com", "ussername", "password")
ftp.port("203.0.113.0", 10020) # Set listening address and port of Data connection.
ftp.list # => ["foo.txt", "bar.txt"]

After address or port was set once, it will be effective until explicitly removed.

ftp.port(nil, nil) # default behavior of Net::FTP

Contributing

  1. Fork it ( https://github.com/[my-github-username]/net-ftp-port_command/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request