错误::EPIPE:网络::FTP的管道破裂



与此问题类似,我可以连接甚至检查/更改工作目录,但调用list会引发Errno::EPIPE: Broken pipe错误。

到目前为止,我只在终端(OS X)上看到过这一点。我已经尝试了几个不同的主机,我已经验证了我可以使用FileZilla正常访问这些主机。我还验证了我可以通过常规的命令行ftp会话列出文件。

这可能是防火墙问题吗?还是我的外壳有问题?

以下是IRB会话的示例。。。

irb> ftp = Net::FTP.new 'host.domain.com' 
 => #<Net::FTP:0x007fc10d053ab8 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x007fc10d053a68>, @binary=true, @passive=false, @debug_mode=false, @resume=false, @sock=#<TCPSocket:fd 7>, @logged_in=false, @last_response="220 ESS FTPn", @last_response_code="220"> 
irb> ftp.debug_mode = true
 => true 
irb> ftp.login 'user', '*********'
put: USER user
get: 331 Password required for user
put: PASS *********
get: 230 Logged on
put: TYPE I
get: 200 Type set to I
 => true 
irb> ftp.pwd
put: PWD
get: 257 "/" is current directory.
  => "/" 
irb> ftp.chdir 'Inventory'
put: CWD Inventory
get: 250 CWD successful. "/Inventory" is current directory.
irb> ftp.list
put: TYPE A
get: 200 Type set to A
put: PORT 10,142,96,98,199,111
put: TYPE I
Errno::EPIPE: Broken pipe
  from /Users/acobster/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/net/ftp.rb:257:in `write'
  from /Users/acobster/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/net/ftp.rb:257:in `putline'
  from /Users/acobster/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/net/ftp.rb:334:in `block in voidcmd'
  from /Users/acobster/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/monitor.rb:211:in `mon_synchronize'
  from /Users/acobster/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/net/ftp.rb:333:in `voidcmd'
  from /Users/acobster/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/net/ftp.rb:162:in `send_type_command'
  from /Users/acobster/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/net/ftp.rb:151:in `binary='
  from /Users/acobster/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/net/ftp.rb:180:in `ensure in with_binary'
  from /Users/acobster/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/net/ftp.rb:180:in `with_binary'
  from /Users/acobster/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/net/ftp.rb:477:in `block in retrlines'
  from /Users/acobster/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/monitor.rb:211:in `mon_synchronize'
  from /Users/acobster/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/net/ftp.rb:476:in `retrlines'
  from /Users/acobster/.rvm/rubies/ruby-1.9.3-p392/lib/ruby/1.9.1/net/ftp.rb:722:in `list'
  from (irb):9
  from /Users/acobster/.rvm/rubies/ruby-1.9.3-p392/bin/irb:16:in `<main>'

请帮忙,谢谢!

更新:我可以在远程服务器上的IRB会话中执行ftp.list

$ ssh myserver
server $ irb
irb> ftp = Net::FTP.new 'host.domain.com' 
=> #<Net::FTP:0x2b7d3c5edc80 @last_response="220 ESS FTPn", @debug_mode=false, @mon_entering_queue=[], @sock=#<TCPSocket:0x2b7d3c5edb18>, @passive=false, @mon_count=0, @binary=true, @mon_owner=nil, @last_response_code="220", @resume=false, @mon_waiting_queue=[]>
irb> ftp.login 'user', 'pass'
=> "230 Logged onn"
irb> ftp.pwd
=> "/"
irb> ftp.chdir 'Inventory'
=> nil
irb> ftp.list 
=> ["-r--r--r-- 1 ftp ftp         302301 Feb 26 20:27 inventory.zip", "-r--r--r-- 1 ftp ftp        1450282 Feb 26 20:24 InventoryWeb.txt"]

但我不确定该从中得出什么结论?我当地版本的Ruby?是否仍然是防火墙/外壳问题?

输入:端口10142,96,98199111

您在活动模式下使用FTP,专用IP地址为10.142.96.199。在主动模式下,服务器必须创建与主机的数据连接,而在被动模式下(PASV命令而不是PORT命令),客户端将连接到服务器。

由于服务器与您的主机不在同一个专用网络上(否则您将无法从远程系统连接到它),它将无法连接到PORT命令中给定的10.142.96.98的专用IP,因为无法从internet访问专用IP地址。服务器可能会意识到这一点,发回一些错误并关闭连接。您的FTP客户端可能会尝试发送另一个命令(如QUIT或ABOR),但由于服务器已关闭连接,因此此发送将导致EPIPE。

FileZilla之所以有效,可能是因为它将使用被动模式而不是主动模式。要使用Net::FTP的被动模式,必须设置ftp.passive = true

相关内容

  • 没有找到相关文章

最新更新