<?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 FTP error in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-error/m-p/4313309#M670323</link>
    <description>Hi All,&lt;BR /&gt;&lt;BR /&gt;I am getting error&lt;BR /&gt;while doing FTP to same server .&lt;BR /&gt;For ex:&lt;BR /&gt;&lt;BR /&gt;host1 :&amp;gt;ftp host1&lt;BR /&gt;ftp: connect to address 192.168.10.10: Connection refused&lt;BR /&gt;Trying 192.168.10.10...&lt;BR /&gt;ftp: connect: Connection refused&lt;BR /&gt;ftp&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Even i made entries into /etc/hosts and .rhosts&lt;BR /&gt;&lt;BR /&gt;(Node:error on SUN server)&lt;BR /&gt;&lt;BR /&gt;Can anybody suggest me?&lt;BR /&gt;&lt;BR /&gt;Thanks in ADV.</description>
    <pubDate>Wed, 26 Nov 2008 10:16:10 GMT</pubDate>
    <dc:creator>pratibha_kajbale</dc:creator>
    <dc:date>2008-11-26T10:16:10Z</dc:date>
    <item>
      <title>FTP error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-error/m-p/4313309#M670323</link>
      <description>Hi All,&lt;BR /&gt;&lt;BR /&gt;I am getting error&lt;BR /&gt;while doing FTP to same server .&lt;BR /&gt;For ex:&lt;BR /&gt;&lt;BR /&gt;host1 :&amp;gt;ftp host1&lt;BR /&gt;ftp: connect to address 192.168.10.10: Connection refused&lt;BR /&gt;Trying 192.168.10.10...&lt;BR /&gt;ftp: connect: Connection refused&lt;BR /&gt;ftp&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Even i made entries into /etc/hosts and .rhosts&lt;BR /&gt;&lt;BR /&gt;(Node:error on SUN server)&lt;BR /&gt;&lt;BR /&gt;Can anybody suggest me?&lt;BR /&gt;&lt;BR /&gt;Thanks in ADV.</description>
      <pubDate>Wed, 26 Nov 2008 10:16:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ftp-error/m-p/4313309#M670323</guid>
      <dc:creator>pratibha_kajbale</dc:creator>
      <dc:date>2008-11-26T10:16:10Z</dc:date>
    </item>
    <item>
      <title>Re: FTP error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-error/m-p/4313310#M670324</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Did you check /var/adm/inetd.sec ?&lt;BR /&gt;Is there any entry related ftp ?&lt;BR /&gt;&lt;BR /&gt;Did you check inetd.conf ftp line should not be # example&lt;BR /&gt;ftp          stream tcp6 nowait root /usr/lbin/ftpd     ftpd -a -l&lt;BR /&gt;check with /etc/ftpaccess&lt;BR /&gt;&lt;BR /&gt;what u r getting if u do &lt;BR /&gt;ftp localhost &lt;BR /&gt;&lt;BR /&gt;Suraj</description>
      <pubDate>Wed, 26 Nov 2008 10:31:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ftp-error/m-p/4313310#M670324</guid>
      <dc:creator>Suraj K Sankari</dc:creator>
      <dc:date>2008-11-26T10:31:54Z</dc:date>
    </item>
    <item>
      <title>Re: FTP error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-error/m-p/4313311#M670325</link>
      <description>Hi Pratibha,&lt;BR /&gt;&lt;BR /&gt;It looks ftp service is disabled on the ftp server. It is not unusual that people use to disable insecure ftp service and enable secure ftp like sftp(part of SSH)&lt;BR /&gt;&lt;BR /&gt;Check inetd.conf and /etc/services to confirm ftp service is enabled.&lt;BR /&gt;&lt;BR /&gt;PS(Not sure about conf files on sun)</description>
      <pubDate>Wed, 26 Nov 2008 10:37:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ftp-error/m-p/4313311#M670325</guid>
      <dc:creator>Ganesan R</dc:creator>
      <dc:date>2008-11-26T10:37:39Z</dc:date>
    </item>
    <item>
      <title>Re: FTP error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-error/m-p/4313312#M670326</link>
      <description>Another thing to look at is this: -&lt;BR /&gt;are the 2 servers on the same subnet or different. Have a look at the IP addreses of both servers, if they are on differnet subnets, then you will need some routing between them.&lt;BR /&gt;# lanscan&lt;BR /&gt;# ifconfig lan0&lt;BR /&gt;# netstat -rn&lt;BR /&gt;&lt;BR /&gt;Check to see if you can ping between the hosts after checking this.&lt;BR /&gt;You cuold also see if the FTP pot is open and listening by using this command: -&lt;BR /&gt;# telnet 192.168.10.10 21&lt;BR /&gt;(21 being the post that FTP uses)&lt;BR /&gt;If you get a "connection refused", then the post may not be listening.&lt;BR /&gt;Go onto the server 192.168.10.10, and use this command to see if it's listening: -&lt;BR /&gt;# netstat -a |grep -i ftp&lt;BR /&gt;and look for somthing like this: -&lt;BR /&gt;&lt;BR /&gt;tcp 0 0 *.ftp  *.*  LISTEN&lt;BR /&gt;&lt;BR /&gt;If you don't see this line, then FTP is not running.&lt;BR /&gt;If this is the case, have a look in /etc/services to see if ftp is commented out.&lt;BR /&gt;&lt;BR /&gt;Sime.&lt;BR /&gt;</description>
      <pubDate>Thu, 27 Nov 2008 09:29:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ftp-error/m-p/4313312#M670326</guid>
      <dc:creator>Simeon Harwood</dc:creator>
      <dc:date>2008-11-27T09:29:23Z</dc:date>
    </item>
    <item>
      <title>Re: FTP error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-error/m-p/4313313#M670327</link>
      <description>&amp;gt; [...]&lt;BR /&gt;&amp;gt; Check to see if you can ping between the&lt;BR /&gt;&amp;gt; hosts after checking this.&lt;BR /&gt;&amp;gt; [...]&lt;BR /&gt;&lt;BR /&gt;"Connection refused" normally means that the&lt;BR /&gt;it was possible to connect to the remote&lt;BR /&gt;system, but that there was no server program&lt;BR /&gt;running (or configured to run) for the port&lt;BR /&gt;requested.  So, if you get "connection&lt;BR /&gt;refused", there's no need to look at all that&lt;BR /&gt;network stuff.  You need to figure out why&lt;BR /&gt;there's no FTP server running/configured on&lt;BR /&gt;the remote system.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; (Node:error on SUN server)&lt;BR /&gt;&lt;BR /&gt;You seem to be lost.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.sun.com/support/communities/index.jsp" target="_blank"&gt;http://www.sun.com/support/communities/index.jsp&lt;/A&gt;</description>
      <pubDate>Thu, 27 Nov 2008 15:10:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ftp-error/m-p/4313313#M670327</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2008-11-27T15:10:06Z</dc:date>
    </item>
  </channel>
</rss>

