<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Passive mode FTP in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/passive-mode-ftp/m-p/2950970#M4257</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;"Originally, a connection was established and the you had to issue the PASSIVE command to continue. &lt;BR /&gt;Now, we receive message "passive mode off" after the PASSIVE command is issued"&lt;BR /&gt;&lt;BR /&gt;That means your FTP server is running in PASSIVE mode by default . So if you giva PASV  command it toggles the passive mode to off state. &lt;BR /&gt;&lt;BR /&gt;So instruct the users not to give the pasv command. and use ftp server just like that.&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;U.SivaKumar&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Wed, 16 Apr 2003 01:48:26 GMT</pubDate>
    <dc:creator>U.SivaKumar_2</dc:creator>
    <dc:date>2003-04-16T01:48:26Z</dc:date>
    <item>
      <title>Passive mode FTP</title>
      <link>https://community.hpe.com/t5/operating-system-linux/passive-mode-ftp/m-p/2950967#M4254</link>
      <description>Good day all,&lt;BR /&gt;&lt;BR /&gt;We just upgraded a server from Linux Red Hat to Mandrake and FTP no longer performs the same.&lt;BR /&gt;&lt;BR /&gt;Originally, a connection was established and the you had to issue the PASSIVE command to continue.&lt;BR /&gt;Now, we receive message "passive mode off" after the PASSIVE command is issued.&lt;BR /&gt;&lt;BR /&gt;Am I missing a configuration file or something?  If so, I'd appreciate to know which one and the syntax to set it.&lt;BR /&gt;I couln't find anything in the man pages.&lt;BR /&gt;&lt;BR /&gt;Thanks</description>
      <pubDate>Mon, 14 Apr 2003 16:43:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/passive-mode-ftp/m-p/2950967#M4254</guid>
      <dc:creator>Raynald Boucher</dc:creator>
      <dc:date>2003-04-14T16:43:33Z</dc:date>
    </item>
    <item>
      <title>Re: Passive mode FTP</title>
      <link>https://community.hpe.com/t5/operating-system-linux/passive-mode-ftp/m-p/2950968#M4255</link>
      <description>Check config file for FTP daemon, it's probably not allowing passive connectionts.&lt;BR /&gt;&lt;BR /&gt;Details would depend on the FTP daemon that you're using.&lt;BR /&gt;&lt;BR /&gt;G.</description>
      <pubDate>Mon, 14 Apr 2003 16:55:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/passive-mode-ftp/m-p/2950968#M4255</guid>
      <dc:creator>Goran Koruga</dc:creator>
      <dc:date>2003-04-14T16:55:56Z</dc:date>
    </item>
    <item>
      <title>Re: Passive mode FTP</title>
      <link>https://community.hpe.com/t5/operating-system-linux/passive-mode-ftp/m-p/2950969#M4256</link>
      <description>Can you precise also which ftp server you are using (depends on which Mandrake distro, the recent distros even have 4 different ftp servers, default is wu-ftpd server) ?&lt;BR /&gt;If wu-ftpd, your /etc/ftpaccess should contain sth like&lt;BR /&gt;passive address 10.0.0.1 0.0.0.0/0    # this *IS* required for passive&lt;BR /&gt;passive ports 0.0.0.0/0 1024 65535      # to see if it made a difference&lt;BR /&gt;pasv-allow all *.mybox.com               &lt;BR /&gt;port-allow all *.mybox.com&lt;BR /&gt;&lt;BR /&gt;But best would be to let active mode on... depends on your version !</description>
      <pubDate>Tue, 15 Apr 2003 09:03:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/passive-mode-ftp/m-p/2950969#M4256</guid>
      <dc:creator>Jerome Henry</dc:creator>
      <dc:date>2003-04-15T09:03:11Z</dc:date>
    </item>
    <item>
      <title>Re: Passive mode FTP</title>
      <link>https://community.hpe.com/t5/operating-system-linux/passive-mode-ftp/m-p/2950970#M4257</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;"Originally, a connection was established and the you had to issue the PASSIVE command to continue. &lt;BR /&gt;Now, we receive message "passive mode off" after the PASSIVE command is issued"&lt;BR /&gt;&lt;BR /&gt;That means your FTP server is running in PASSIVE mode by default . So if you giva PASV  command it toggles the passive mode to off state. &lt;BR /&gt;&lt;BR /&gt;So instruct the users not to give the pasv command. and use ftp server just like that.&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;U.SivaKumar&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 16 Apr 2003 01:48:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/passive-mode-ftp/m-p/2950970#M4257</guid>
      <dc:creator>U.SivaKumar_2</dc:creator>
      <dc:date>2003-04-16T01:48:26Z</dc:date>
    </item>
    <item>
      <title>Re: Passive mode FTP</title>
      <link>https://community.hpe.com/t5/operating-system-linux/passive-mode-ftp/m-p/2950971#M4258</link>
      <description>Thanks pals,&lt;BR /&gt;I finally opted to remove passive commands from my command files due to time restrictions but found the following:&lt;BR /&gt;&lt;BR /&gt;The /etc files for ftp&lt;BR /&gt;# find . -name '*ftp*' -exec ls -l {} \;&lt;BR /&gt;./xinetd.d/wu-ftpd&lt;BR /&gt;./pam.d/ftp&lt;BR /&gt;./ftpaccess&lt;BR /&gt;./ftpconversions&lt;BR /&gt;./ftpgroups&lt;BR /&gt;./ftphosts&lt;BR /&gt;./ftpusers&lt;BR /&gt;./lftp.conf&lt;BR /&gt;&lt;BR /&gt;./xinetd.d/wu-ftpd contains&lt;BR /&gt;server = /usr/sbin/in.ftp  server_args = -l -a&lt;BR /&gt;&lt;BR /&gt;/etc/ftpaccess has no "passive" related command bu /etc/lftp.conf contains&lt;BR /&gt;set ftp:passive-mode on&lt;BR /&gt;&lt;BR /&gt;NOW I'm encountering another problem / difference.  &lt;BR /&gt;When I ftp TO the server everything is (looks) OK.&lt;BR /&gt;When I ftp FROM the server I keep getting the following in my logs:&lt;BR /&gt;'AUTH GSSAPI': command not understood&lt;BR /&gt;'AUTH KERBEROS_V4': command not understood&lt;BR /&gt;KERBEROS_V4 rejected as an authentication type&lt;BR /&gt;&lt;BR /&gt;Some applications look for empty logs (ie no error) to proceed.&lt;BR /&gt;How can I configure FTP to eliminate those messages?&lt;BR /&gt;&lt;BR /&gt;Thanks again and sorry for the delay in answering</description>
      <pubDate>Tue, 29 Apr 2003 14:31:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/passive-mode-ftp/m-p/2950971#M4258</guid>
      <dc:creator>Raynald Boucher</dc:creator>
      <dc:date>2003-04-29T14:31:25Z</dc:date>
    </item>
    <item>
      <title>Re: Passive mode FTP</title>
      <link>https://community.hpe.com/t5/operating-system-linux/passive-mode-ftp/m-p/2950972#M4259</link>
      <description>It sounds like the remote server's ftpd is trying to negotiate the type of authentication to be used (e.g. kerberos or GSS, generic security service).&lt;BR /&gt;&lt;BR /&gt;Check in /etc/pam.d/ftp for something like:&lt;BR /&gt;&lt;BR /&gt;auth optional /lib/security/pam_krb5.so  &lt;BR /&gt;&lt;BR /&gt;and comment it out.</description>
      <pubDate>Tue, 29 Apr 2003 17:28:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/passive-mode-ftp/m-p/2950972#M4259</guid>
      <dc:creator>Bill Douglass</dc:creator>
      <dc:date>2003-04-29T17:28:32Z</dc:date>
    </item>
  </channel>
</rss>

