<?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: which iptables entries are needed for custom ftp service in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/which-iptables-entries-are-needed-for-custom-ftp-service/m-p/4168612#M32041</link>
    <description>more details.....&lt;BR /&gt;Yes, the ftp service is listening in Port 3021.&lt;BR /&gt;When I have 3021/tcp enabled in iptables, I can get a ftp connection established to port 3021, but I get "no route to host" when trying to transfer files.&lt;BR /&gt;When I have iptables enabled but without any reference to my custom ftp ports, I get "no route to host" errors when trying to establish the connection.</description>
    <pubDate>Thu, 27 Mar 2008 15:27:06 GMT</pubDate>
    <dc:creator>Debbie Fleith</dc:creator>
    <dc:date>2008-03-27T15:27:06Z</dc:date>
    <item>
      <title>which iptables entries are needed for custom ftp service</title>
      <link>https://community.hpe.com/t5/operating-system-linux/which-iptables-entries-are-needed-for-custom-ftp-service/m-p/4168605#M32034</link>
      <description>I'm getting "no route to host" erors when trying to send or retrieve files from my new RH 5 Linux system, using a custom ftp service that we implement years ago.&lt;BR /&gt;&lt;BR /&gt;Our /etc/services entries for this ftp service are:&lt;BR /&gt;adaftp-data     3020/tcp&lt;BR /&gt;adaftp          3021/tcp&lt;BR /&gt;&lt;BR /&gt;Do I need to add both of these tcp ports to my iptables configuration?</description>
      <pubDate>Wed, 26 Mar 2008 20:44:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/which-iptables-entries-are-needed-for-custom-ftp-service/m-p/4168605#M32034</guid>
      <dc:creator>Debbie Fleith</dc:creator>
      <dc:date>2008-03-26T20:44:53Z</dc:date>
    </item>
    <item>
      <title>Re: which iptables entries are needed for custom ftp service</title>
      <link>https://community.hpe.com/t5/operating-system-linux/which-iptables-entries-are-needed-for-custom-ftp-service/m-p/4168606#M32035</link>
      <description>Could you provide more information?&lt;BR /&gt;&lt;BR /&gt;Assuming the FTP service is on this new RH 5 Linux system, can you ping to this server? &lt;BR /&gt;&lt;BR /&gt;if you are able ssh/consolelogin to the server, do a netstat -ant to make sure ftp is listening on that port 3021.  &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 26 Mar 2008 21:28:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/which-iptables-entries-are-needed-for-custom-ftp-service/m-p/4168606#M32035</guid>
      <dc:creator>slydmin</dc:creator>
      <dc:date>2008-03-26T21:28:32Z</dc:date>
    </item>
    <item>
      <title>Re: which iptables entries are needed for custom ftp service</title>
      <link>https://community.hpe.com/t5/operating-system-linux/which-iptables-entries-are-needed-for-custom-ftp-service/m-p/4168607#M32036</link>
      <description>may be you have no route entry to other hosts.&lt;BR /&gt;&lt;BR /&gt;dont't need to add adaftp-data in iptables. You can add entry of 21 port in iptables.</description>
      <pubDate>Thu, 27 Mar 2008 09:06:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/which-iptables-entries-are-needed-for-custom-ftp-service/m-p/4168607#M32036</guid>
      <dc:creator>Jeeshan</dc:creator>
      <dc:date>2008-03-27T09:06:59Z</dc:date>
    </item>
    <item>
      <title>Re: which iptables entries are needed for custom ftp service</title>
      <link>https://community.hpe.com/t5/operating-system-linux/which-iptables-entries-are-needed-for-custom-ftp-service/m-p/4168608#M32037</link>
      <description>disable the IP table if not mandatory. Try and configure/test the normal ftp first and make sure that is working itself.</description>
      <pubDate>Thu, 27 Mar 2008 09:29:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/which-iptables-entries-are-needed-for-custom-ftp-service/m-p/4168608#M32037</guid>
      <dc:creator>skt_skt</dc:creator>
      <dc:date>2008-03-27T09:29:02Z</dc:date>
    </item>
    <item>
      <title>Re: which iptables entries are needed for custom ftp service</title>
      <link>https://community.hpe.com/t5/operating-system-linux/which-iptables-entries-are-needed-for-custom-ftp-service/m-p/4168609#M32038</link>
      <description>Enabling ftp logging in Linux which can give more verbose information when u look at /var/log/vsftpd.log&lt;BR /&gt;&lt;BR /&gt;â ¢ Update /etc/vsftpd/vsftpd.conf with xferlog_std_format=NO from  xferlog_std_format=YES&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;When enabled, all FTP requests and responses are logged, providing the option xferlog_std_format is not enabled. Useful for debugging.&lt;BR /&gt;&lt;BR /&gt;Default: NO&lt;BR /&gt;&lt;BR /&gt;â ¢ Add log_ftp_protocol=YES at the end of /etc/vsftpd/vsftpd.conf&lt;BR /&gt;&lt;BR /&gt;â ¢ Uncomment xferlog_file=/var/log/vsftpd.log on /etc/vsftpd/vsftpd.conf&lt;BR /&gt;&lt;BR /&gt;           Default log file is /var/log/xferlog&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;â ¢ Restart the vsftpd service&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 27 Mar 2008 09:32:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/which-iptables-entries-are-needed-for-custom-ftp-service/m-p/4168609#M32038</guid>
      <dc:creator>skt_skt</dc:creator>
      <dc:date>2008-03-27T09:32:41Z</dc:date>
    </item>
    <item>
      <title>Re: which iptables entries are needed for custom ftp service</title>
      <link>https://community.hpe.com/t5/operating-system-linux/which-iptables-entries-are-needed-for-custom-ftp-service/m-p/4168610#M32039</link>
      <description>Normal vsftpd is working fine.  If I disable iptables, I don't have the problem.   Yes, I can ping this server and ssh into it.&lt;BR /&gt;&lt;BR /&gt;How do I determine if iptables is mandatory?   If this server is going into a LAN that has a firewall already, can I safely keep iptables disabled?</description>
      <pubDate>Thu, 27 Mar 2008 11:23:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/which-iptables-entries-are-needed-for-custom-ftp-service/m-p/4168610#M32039</guid>
      <dc:creator>Debbie Fleith</dc:creator>
      <dc:date>2008-03-27T11:23:20Z</dc:date>
    </item>
    <item>
      <title>Re: which iptables entries are needed for custom ftp service</title>
      <link>https://community.hpe.com/t5/operating-system-linux/which-iptables-entries-are-needed-for-custom-ftp-service/m-p/4168611#M32040</link>
      <description>you figure out yourself what is your scenario.&lt;BR /&gt;&lt;BR /&gt;if you wanna make system more secure than keep iptables but make sure you can access significant services.&lt;BR /&gt;&lt;BR /&gt;another thing is you need not to set iptables entry with software or service level, you can specify it with tcp or udp port basis. coz a software or service level may need another tcp or udp port that may be block.</description>
      <pubDate>Thu, 27 Mar 2008 12:39:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/which-iptables-entries-are-needed-for-custom-ftp-service/m-p/4168611#M32040</guid>
      <dc:creator>Jeeshan</dc:creator>
      <dc:date>2008-03-27T12:39:20Z</dc:date>
    </item>
    <item>
      <title>Re: which iptables entries are needed for custom ftp service</title>
      <link>https://community.hpe.com/t5/operating-system-linux/which-iptables-entries-are-needed-for-custom-ftp-service/m-p/4168612#M32041</link>
      <description>more details.....&lt;BR /&gt;Yes, the ftp service is listening in Port 3021.&lt;BR /&gt;When I have 3021/tcp enabled in iptables, I can get a ftp connection established to port 3021, but I get "no route to host" when trying to transfer files.&lt;BR /&gt;When I have iptables enabled but without any reference to my custom ftp ports, I get "no route to host" errors when trying to establish the connection.</description>
      <pubDate>Thu, 27 Mar 2008 15:27:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/which-iptables-entries-are-needed-for-custom-ftp-service/m-p/4168612#M32041</guid>
      <dc:creator>Debbie Fleith</dc:creator>
      <dc:date>2008-03-27T15:27:06Z</dc:date>
    </item>
    <item>
      <title>Re: which iptables entries are needed for custom ftp service</title>
      <link>https://community.hpe.com/t5/operating-system-linux/which-iptables-entries-are-needed-for-custom-ftp-service/m-p/4168613#M32042</link>
      <description>when u already have a firwall setup up in n/w level. then linux level firwall is not mandatory</description>
      <pubDate>Thu, 27 Mar 2008 18:06:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/which-iptables-entries-are-needed-for-custom-ftp-service/m-p/4168613#M32042</guid>
      <dc:creator>skt_skt</dc:creator>
      <dc:date>2008-03-27T18:06:40Z</dc:date>
    </item>
  </channel>
</rss>

