<?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: ftp between two HP-UX servers in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-between-two-hp-ux-servers/m-p/3391638#M199293</link>
    <description>On the old server, the only line in my inetd.sec that is uncommented is:&lt;BR /&gt;&lt;BR /&gt;dtspc allow 127.0.0.1 loopback&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;In the inetd.conf here are the uncommented lines containing "ftp":&lt;BR /&gt;&lt;BR /&gt;ftp          stream tcp nowait root /usr/lbin/ftpd ftpd -l&lt;BR /&gt;&lt;BR /&gt;tftp        dgram  udp wait   root /usr/lbin/tftpd    tftpd\&lt;BR /&gt; /opt/ignite\&lt;BR /&gt; /var/opt/ignite&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Fri, 01 Oct 2004 13:13:30 GMT</pubDate>
    <dc:creator>Adrian Sobers2</dc:creator>
    <dc:date>2004-10-01T13:13:30Z</dc:date>
    <item>
      <title>ftp between two HP-UX servers</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-between-two-hp-ux-servers/m-p/3391630#M199285</link>
      <description>I would like to ftp some files from one server (running HP-UX 11.11) to another server (running HP-UX 11.00).&lt;BR /&gt;&lt;BR /&gt;Here is the situation:&lt;BR /&gt;&lt;BR /&gt;ftp 2 files (IRDS.tar.Z, IRDS2.tar.Z) from this location on new server:&lt;BR /&gt;&lt;BR /&gt;/opt/oracle/data/orabackup&lt;BR /&gt;&lt;BR /&gt;to these locations on old server:&lt;BR /&gt;&lt;BR /&gt;/opt/oracle12/newlogs (IRDS2.tar.Z goes here)&lt;BR /&gt;/opt/oracle10/backup (IRDS2.tar.Z goes here)&lt;BR /&gt;&lt;BR /&gt;How do I go about this process? Latest quality and hardware enablement patches installed on both machines.</description>
      <pubDate>Fri, 01 Oct 2004 10:55:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ftp-between-two-hp-ux-servers/m-p/3391630#M199285</guid>
      <dc:creator>Adrian Sobers2</dc:creator>
      <dc:date>2004-10-01T10:55:45Z</dc:date>
    </item>
    <item>
      <title>Re: ftp between two HP-UX servers</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-between-two-hp-ux-servers/m-p/3391631#M199286</link>
      <description>Adrian,&lt;BR /&gt;&lt;BR /&gt;Automating 'ftp' means hardcoding the passwords somewhere. Like .netrc or in the ftp script itself. The best way is to install openssh (you can get it from software.hp.com for free), setup public/private authentication and use 'sftp|scp' without passphrase mechanism.&lt;BR /&gt;If you are copying the files from systemA to systemB as the user 'oracle1 on systemA' and 'oracle2 on systemB', then follow these commands once you installed ssh.&lt;BR /&gt;&lt;BR /&gt;&lt;ORACLE1&gt;$ssh-keygen -t dsa -N ''&lt;BR /&gt; ( press enter for all questions)&lt;BR /&gt;&lt;ORACLE1&gt;cd .ssh&lt;BR /&gt;Copy id_dsa.pub file onto /tmp dir of. Logon to systemB &lt;BR /&gt;&lt;ORACLE2&gt;cd&lt;BR /&gt;&lt;ORACLE2&gt;mkdir .ssh&lt;BR /&gt;&lt;ORACLE2&gt;mv /tmp/id_dsa.key authorized_keys&lt;BR /&gt;&lt;ORACLE&gt;chmod -R 700 ~/.ssh&lt;BR /&gt;(Logon to systemA)&lt;BR /&gt;&lt;ORACLE1&gt;scp some_file oracle2@systemB:/home/oracle2/some_file&lt;BR /&gt;&lt;BR /&gt;It shouldn't ask for a password.&lt;BR /&gt;&lt;BR /&gt;-Sri&lt;/ORACLE1&gt;&lt;/ORACLE&gt;&lt;/ORACLE2&gt;&lt;/ORACLE2&gt;&lt;/ORACLE2&gt;&lt;/ORACLE1&gt;&lt;/ORACLE1&gt;</description>
      <pubDate>Fri, 01 Oct 2004 11:01:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ftp-between-two-hp-ux-servers/m-p/3391631#M199286</guid>
      <dc:creator>Sridhar Bhaskarla</dc:creator>
      <dc:date>2004-10-01T11:01:27Z</dc:date>
    </item>
    <item>
      <title>Re: ftp between two HP-UX servers</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-between-two-hp-ux-servers/m-p/3391632#M199287</link>
      <description>on new server:&lt;BR /&gt;&lt;BR /&gt;$ ftp oldserver&lt;BR /&gt;&lt;ENTER user="" name=""&gt;&lt;BR /&gt;&lt;ENTER password=""&gt;&lt;BR /&gt;&amp;gt; bin&lt;BR /&gt;&amp;gt; lcd /opt/oracle/data/orabackup&lt;BR /&gt;&amp;gt; cd /opt/oracle12/newlogs&lt;BR /&gt;&amp;gt; put IRDS2.tar.Z&lt;BR /&gt;&amp;gt; cd /opt/oracle10/backup&lt;BR /&gt;&amp;gt; put IRDS2.tar.Z&lt;BR /&gt;&amp;gt; quit&lt;BR /&gt;&lt;BR /&gt;$&lt;/ENTER&gt;&lt;/ENTER&gt;</description>
      <pubDate>Fri, 01 Oct 2004 11:03:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ftp-between-two-hp-ux-servers/m-p/3391632#M199287</guid>
      <dc:creator>Bob Smith_23</dc:creator>
      <dc:date>2004-10-01T11:03:26Z</dc:date>
    </item>
    <item>
      <title>Re: ftp between two HP-UX servers</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-between-two-hp-ux-servers/m-p/3391633#M199288</link>
      <description>When I ftp oldserver like:&lt;BR /&gt;&lt;BR /&gt;# ftp 200.200.XXX.X&lt;BR /&gt;&lt;BR /&gt;ftp timed out&lt;BR /&gt;&lt;BR /&gt;happens all the time...&lt;BR /&gt;</description>
      <pubDate>Fri, 01 Oct 2004 11:18:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ftp-between-two-hp-ux-servers/m-p/3391633#M199288</guid>
      <dc:creator>Adrian Sobers2</dc:creator>
      <dc:date>2004-10-01T11:18:55Z</dc:date>
    </item>
    <item>
      <title>Re: ftp between two HP-UX servers</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-between-two-hp-ux-servers/m-p/3391634#M199289</link>
      <description>Sounds like ftp services may not be running on remote system.&lt;BR /&gt;&lt;BR /&gt;If the IP was incorrect, you would get:&lt;BR /&gt;&lt;BR /&gt;ftp: connect: No route to host</description>
      <pubDate>Fri, 01 Oct 2004 11:31:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ftp-between-two-hp-ux-servers/m-p/3391634#M199289</guid>
      <dc:creator>Bob Smith_23</dc:creator>
      <dc:date>2004-10-01T11:31:47Z</dc:date>
    </item>
    <item>
      <title>Re: ftp between two HP-UX servers</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-between-two-hp-ux-servers/m-p/3391635#M199290</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;If you are able to ping to the server, then there is a good chance for any of these possibilities.&lt;BR /&gt;&lt;BR /&gt;1. Firewall setup in between that is not allowing ftp access.&lt;BR /&gt;2. ftp is not enabled on the ohter host. Check the line 'ftp' in /etc/inetd.conf. It shouldn't be commented out.&lt;BR /&gt;3. ftp is disallowed on the other host. Check /var/adm/inetd.sec file for any filters. If you are using tcp_wrappers (you should see ftp line containing tcpd entry in your inetd.conf file.&lt;BR /&gt;&lt;BR /&gt;For reasons 2 and 3, you will get 'connection refused' messages rather than timeout messages. But it doesn't hurt to validate them. For any changes related to 2 and 3, you will need to refresh inetd as (inetd -c)&lt;BR /&gt;&lt;BR /&gt;-Sri</description>
      <pubDate>Fri, 01 Oct 2004 11:32:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ftp-between-two-hp-ux-servers/m-p/3391635#M199290</guid>
      <dc:creator>Sridhar Bhaskarla</dc:creator>
      <dc:date>2004-10-01T11:32:39Z</dc:date>
    </item>
    <item>
      <title>Re: ftp between two HP-UX servers</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-between-two-hp-ux-servers/m-p/3391636#M199291</link>
      <description>Hi mate,&lt;BR /&gt;Since you are in the process of willing to learn all sorts, why not go for NFS, your RP5430 is a good candidate for a NFS server, the D350 would be the client:&lt;BR /&gt;You can use sam for this task:&lt;BR /&gt;export /opt/oracle/data/orabackup&lt;BR /&gt;configure to allow the other box for root access (you never know)&lt;BR /&gt;When done,On the D350, create a new mount point like I dont know /mt_nfs&lt;BR /&gt;&lt;BR /&gt;Then mount the exported filesystem on it&lt;BR /&gt;mount &lt;YOURRP5430HOSTNAME&gt;:/opt/oracle/data/orabackup /mt_nfs&lt;BR /&gt;cd /mt_nfs, can you see your files? just copy them where you wish...&lt;BR /&gt;&lt;BR /&gt;All the best&lt;BR /&gt;Victor.&lt;BR /&gt;P.S.&lt;BR /&gt;Be sure you have each box knowing about the other in /etc/host if you are not using DNS...&lt;/YOURRP5430HOSTNAME&gt;</description>
      <pubDate>Fri, 01 Oct 2004 11:50:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ftp-between-two-hp-ux-servers/m-p/3391636#M199291</guid>
      <dc:creator>Victor BERRIDGE</dc:creator>
      <dc:date>2004-10-01T11:50:22Z</dc:date>
    </item>
    <item>
      <title>Re: ftp between two HP-UX servers</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-between-two-hp-ux-servers/m-p/3391637#M199292</link>
      <description>Could you please post more details steps Victor? I'm very green remember ;)&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 01 Oct 2004 13:01:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ftp-between-two-hp-ux-servers/m-p/3391637#M199292</guid>
      <dc:creator>Adrian Sobers2</dc:creator>
      <dc:date>2004-10-01T13:01:30Z</dc:date>
    </item>
    <item>
      <title>Re: ftp between two HP-UX servers</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-between-two-hp-ux-servers/m-p/3391638#M199293</link>
      <description>On the old server, the only line in my inetd.sec that is uncommented is:&lt;BR /&gt;&lt;BR /&gt;dtspc allow 127.0.0.1 loopback&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;In the inetd.conf here are the uncommented lines containing "ftp":&lt;BR /&gt;&lt;BR /&gt;ftp          stream tcp nowait root /usr/lbin/ftpd ftpd -l&lt;BR /&gt;&lt;BR /&gt;tftp        dgram  udp wait   root /usr/lbin/tftpd    tftpd\&lt;BR /&gt; /opt/ignite\&lt;BR /&gt; /var/opt/ignite&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 01 Oct 2004 13:13:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ftp-between-two-hp-ux-servers/m-p/3391638#M199293</guid>
      <dc:creator>Adrian Sobers2</dc:creator>
      <dc:date>2004-10-01T13:13:30Z</dc:date>
    </item>
    <item>
      <title>Re: ftp between two HP-UX servers</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-between-two-hp-ux-servers/m-p/3391639#M199294</link>
      <description>Help? Anyone?&lt;BR /&gt;&lt;BR /&gt;I can actually ftp &lt;NEW_SERVER&gt; from oldserver root prompt.&lt;BR /&gt;&lt;BR /&gt;I cannot ftp &lt;OLD_SERVER&gt; from newserver root prompt.&lt;BR /&gt;&lt;BR /&gt;:(&lt;/OLD_SERVER&gt;&lt;/NEW_SERVER&gt;</description>
      <pubDate>Fri, 01 Oct 2004 13:47:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ftp-between-two-hp-ux-servers/m-p/3391639#M199294</guid>
      <dc:creator>Adrian Sobers2</dc:creator>
      <dc:date>2004-10-01T13:47:15Z</dc:date>
    </item>
    <item>
      <title>Re: ftp between two HP-UX servers</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-between-two-hp-ux-servers/m-p/3391640#M199295</link>
      <description>I can ftp newserver from newserver so it's not a problem with the ftp I'm assuming.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;attached is the output from:&lt;BR /&gt;&lt;BR /&gt;# netstat -r</description>
      <pubDate>Fri, 01 Oct 2004 13:57:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ftp-between-two-hp-ux-servers/m-p/3391640#M199295</guid>
      <dc:creator>Adrian Sobers2</dc:creator>
      <dc:date>2004-10-01T13:57:25Z</dc:date>
    </item>
    <item>
      <title>Re: ftp between two HP-UX servers</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-between-two-hp-ux-servers/m-p/3391641#M199296</link>
      <description>Hi Adrian,&lt;BR /&gt;&lt;BR /&gt;Can you ping and telnet to the old server from new server?. If so, then the problem is only with ftp. If not, then it's a network problem that you would need to fix.&lt;BR /&gt;&lt;BR /&gt;You would be checking ftpd configuration on  'old server'. Can you be able to ftp to the old server from any other server on the network?. How about ftp from old server to itself?&lt;BR /&gt;&lt;BR /&gt;-Sri</description>
      <pubDate>Fri, 01 Oct 2004 14:08:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ftp-between-two-hp-ux-servers/m-p/3391641#M199296</guid>
      <dc:creator>Sridhar Bhaskarla</dc:creator>
      <dc:date>2004-10-01T14:08:32Z</dc:date>
    </item>
    <item>
      <title>Re: ftp between two HP-UX servers</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-between-two-hp-ux-servers/m-p/3391642#M199297</link>
      <description>I can ping from oldserver to newserver.&lt;BR /&gt;&lt;BR /&gt;When I telnet from oldserver to newserver:&lt;BR /&gt;&lt;BR /&gt;root:INLAND3&amp;gt;telnet 200.200.120.3&lt;BR /&gt;Trying...&lt;BR /&gt;Connected to 200.200.120.3.&lt;BR /&gt;Escape character is '^]'.&lt;BR /&gt;telnetd: /dev/pts/ta: No such file or directory&lt;BR /&gt;.&lt;BR /&gt;Local flow control off&lt;BR /&gt;Connection closed by foreign host.&lt;BR /&gt;root:INLAND3&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;So is this network problem then?</description>
      <pubDate>Fri, 01 Oct 2004 14:25:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ftp-between-two-hp-ux-servers/m-p/3391642#M199297</guid>
      <dc:creator>Adrian Sobers2</dc:creator>
      <dc:date>2004-10-01T14:25:21Z</dc:date>
    </item>
    <item>
      <title>Re: ftp between two HP-UX servers</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-between-two-hp-ux-servers/m-p/3391643#M199298</link>
      <description>Sorry Adrian,&lt;BR /&gt;I wasnt feeling well and gone home, I will try my best to assist you but I feel very dizzy...&lt;BR /&gt;&lt;BR /&gt;Lets see how you are configured network wise:&lt;BR /&gt;from&lt;BR /&gt;box1 -&amp;gt; ping box2&lt;BR /&gt;box2 -&amp;gt; ping box1&lt;BR /&gt;OK?&lt;BR /&gt;Now same but instead of ping-&amp;gt; nslookup&lt;BR /&gt;but with a) ip.address then hostnames&lt;BR /&gt;&lt;BR /&gt;What do you have in the file /etc/nsswitch.conf?&lt;BR /&gt;Do you have a /etc/resolv.conf file?&lt;BR /&gt;&lt;BR /&gt;Are the boxes declared in /etc/hosts?&lt;BR /&gt;What are the permissions on these files?&lt;BR /&gt;(read for every one?)&lt;BR /&gt;&lt;BR /&gt;Courage!</description>
      <pubDate>Fri, 01 Oct 2004 14:44:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ftp-between-two-hp-ux-servers/m-p/3391643#M199298</guid>
      <dc:creator>Victor BERRIDGE</dc:creator>
      <dc:date>2004-10-01T14:44:26Z</dc:date>
    </item>
    <item>
      <title>Re: ftp between two HP-UX servers</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-between-two-hp-ux-servers/m-p/3391644#M199299</link>
      <description>One reason if you are correctly configured (files /etc/hosts DNS...) to be able to ping and not telnet is network:&lt;BR /&gt;You may have some trouble with you lan interface: the interface in the box or speed/protocol mismatch  it happens when it badly negociate with the switch port or if something changed...</description>
      <pubDate>Fri, 01 Oct 2004 14:53:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ftp-between-two-hp-ux-servers/m-p/3391644#M199299</guid>
      <dc:creator>Victor BERRIDGE</dc:creator>
      <dc:date>2004-10-01T14:53:44Z</dc:date>
    </item>
    <item>
      <title>Re: ftp between two HP-UX servers</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-between-two-hp-ux-servers/m-p/3391645#M199300</link>
      <description>I think it is a problem in the /etc/hosts file on new production server.&lt;BR /&gt;&lt;BR /&gt;root:INLAND8&amp;gt;nslookup 200.200.120.8&lt;BR /&gt;Using /etc/hosts on:  inland8&lt;BR /&gt;&lt;BR /&gt;looking up FILES&lt;BR /&gt;Name:    inland3.irdbb.com&lt;BR /&gt;Address:  200.200.120.8&lt;BR /&gt;Aliases:  inland3&lt;BR /&gt;&lt;BR /&gt;root:INLAND8&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;if case is relevant then inland3 is supposed to be INLAND3 although the IP address shouldn't make a difference no?</description>
      <pubDate>Fri, 01 Oct 2004 14:59:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ftp-between-two-hp-ux-servers/m-p/3391645#M199300</guid>
      <dc:creator>Adrian Sobers2</dc:creator>
      <dc:date>2004-10-01T14:59:18Z</dc:date>
    </item>
    <item>
      <title>Re: ftp between two HP-UX servers</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-between-two-hp-ux-servers/m-p/3391646#M199301</link>
      <description>I think it's problem with hosts file. Thing is it has bin listed as the owner. I can't seem to modify/save changes in the hosts file?</description>
      <pubDate>Fri, 01 Oct 2004 15:03:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ftp-between-two-hp-ux-servers/m-p/3391646#M199301</guid>
      <dc:creator>Adrian Sobers2</dc:creator>
      <dc:date>2004-10-01T15:03:45Z</dc:date>
    </item>
    <item>
      <title>Re: ftp between two HP-UX servers</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-between-two-hp-ux-servers/m-p/3391647#M199302</link>
      <description>type netstat -rn on both boxes and give us the output&lt;BR /&gt;</description>
      <pubDate>Fri, 01 Oct 2004 15:05:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ftp-between-two-hp-ux-servers/m-p/3391647#M199302</guid>
      <dc:creator>Victor BERRIDGE</dc:creator>
      <dc:date>2004-10-01T15:05:14Z</dc:date>
    </item>
    <item>
      <title>Re: ftp between two HP-UX servers</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-between-two-hp-ux-servers/m-p/3391648#M199303</link>
      <description>Old Server output</description>
      <pubDate>Fri, 01 Oct 2004 15:10:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ftp-between-two-hp-ux-servers/m-p/3391648#M199303</guid>
      <dc:creator>Adrian Sobers2</dc:creator>
      <dc:date>2004-10-01T15:10:32Z</dc:date>
    </item>
    <item>
      <title>Re: ftp between two HP-UX servers</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-between-two-hp-ux-servers/m-p/3391649#M199304</link>
      <description>New Server output</description>
      <pubDate>Fri, 01 Oct 2004 15:10:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ftp-between-two-hp-ux-servers/m-p/3391649#M199304</guid>
      <dc:creator>Adrian Sobers2</dc:creator>
      <dc:date>2004-10-01T15:10:58Z</dc:date>
    </item>
  </channel>
</rss>

