From: Fritz Wuehler Subject: Re: LEAP 15.6 to communicate FTP with Tumbleweed MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Message-ID: <515a5777b25ec67d2cbf61deeeb211a9@msgid.frell.theremailer.net> Date: Thu, 10 Jul 2025 03:17:57 +0200 Newsgroups: comp.os.linux.misc Path: csiph.com!news.mixmin.net!news2.arglkargh.de!sewer!news.dizum.net!not-for-mail Organization: dizum.com - The Internet Problem Provider X-Abuse: abuse@dizum.com Injection-Info: sewer.dizum.com - 2001::1/128 Xref: csiph.com comp.os.linux.misc:69504 Paul R Schmidtbleicher [PRS]: PRS> (Leap) x.x.x.16 (Tumbleweed) x.x.x.44 PRS> The two computers are in two separate rooms in the same house and on PRS> the same home fiber router (192.168.x.x) The intent is to share files PRS> internally for time spent to move them and then shut off the FTP. PRS> No outside use at all. For such a simple scenario there is no need for an FTP server. Just create a tar archive with all the files that need to be moved and send it over the LAN using netcat. If x.x.x.16 is the sender and x.x.x.44 is the receiver, run the following commands: # on host x.x.x.16 (sender) nchost=192.168.99.16; ncport=10000; \ tar -cf - *.mp3 | netcat -n -w 10 -l $nchost $ncport # on host x.x.x.44 (receiver) nchost=192.168.99.16; ncport=10000; \ netcat -n -w 10 $nchost $ncport | tar -xpvf - Ten seconds after the last byte gets sent the connection is automatically shut off.