View previous topic :: View next topic |
Author |
Message |
Vieri l33t
Joined: 18 Dec 2005 Posts: 901
|
Posted: Fri Aug 02, 2024 8:20 am Post subject: [SOLVED] FTP over HTTP |
|
|
Hi,
I believe one can "GET" FTP data via HTTP with OSS such as Apache mod_proxy_ftp.
Is there an OSS solution to "PUT" FTP data via HTTP?
Regards
Last edited by Vieri on Mon Aug 05, 2024 7:50 am; edited 1 time in total |
|
Back to top |
|
|
szatox Advocate
Joined: 27 Aug 2013 Posts: 3407
|
Posted: Fri Aug 02, 2024 9:39 am Post subject: |
|
|
Nothing I know of. AFAIR FTP uses different TCP connections for session management and data transfer making it difficult to shove through a stateless http, so the proxy would have to do a lot of work for little benefit really.
What are you trying to do though? FTP is obsoleted anyway; it's not secure, it doesn't get along with NATs, and other protocols do that better.
If it's not just a gimmic, you'd be better of with HTTP POST form or ssh (be it sshfs, scp, sftp or rsync, depending on what interface you like most), even if what you described was possible. _________________ Make Computing Fun Again |
|
Back to top |
|
|
Zucca Moderator
Joined: 14 Jun 2007 Posts: 3683 Location: Rasi, Finland
|
Posted: Fri Aug 02, 2024 10:01 am Post subject: |
|
|
Didn't FTP use two ports (around 20-25 range)? My guess is that would be quite complicated to achieve. _________________ ..: Zucca :..
My gentoo installs: | init=/sbin/openrc-init
-systemd -logind -elogind seatd |
Quote: | I am NaN! I am a man! |
|
|
Back to top |
|
|
logrusx Advocate
Joined: 22 Feb 2018 Posts: 2380
|
Posted: Fri Aug 02, 2024 10:26 am Post subject: |
|
|
Zucca wrote: | Didn't FTP use two ports (around 20-25 range)? My guess is that would be quite complicated to achieve. |
Only in active mode which is the FTP server actually connecting to the client. That's why I don't find the NAT argument relevant as there's passive mode as well. And that's the default mode. Honestly I can't think of reasons to configure your FTP in active mode, although I've seen it through the years.
Also isn't NAT going to be obsoleted by IPv6?
Best Regards,
Georgi |
|
Back to top |
|
|
Zucca Moderator
Joined: 14 Jun 2007 Posts: 3683 Location: Rasi, Finland
|
Posted: Fri Aug 02, 2024 12:22 pm Post subject: |
|
|
logrusx wrote: | Also isn't NAT going to be obsoleted by IPv6? | Mass adoption of IPv6 far exceeds even the development time of Duke Nukem Forever. :P
And in addition to that I've heard of IPv10, which should work as a drop-in replacement for IPv4. Although... I can't see that taking off any time soon either.
So, I guess IPv4 life-support continues into foreseeable future. _________________ ..: Zucca :..
My gentoo installs: | init=/sbin/openrc-init
-systemd -logind -elogind seatd |
Quote: | I am NaN! I am a man! |
|
|
Back to top |
|
|
logrusx Advocate
Joined: 22 Feb 2018 Posts: 2380
|
Posted: Fri Aug 02, 2024 12:54 pm Post subject: |
|
|
Zucca wrote: | drop-in replacement for IPv4. |
That sounds like sci-fi to me. I don't think a drop-in replacement for IPv4 is possible. However I'm seeing more and more devices supporting IPv6. And some of them are pretty old actually, I'm only recently seeing they are using it, probably because my ISP only recently adopted it.
Don't ask me why I've allowed this, I live with other people who are not concerned with privacy or security.
Best Regards,
Georgi |
|
Back to top |
|
|
Banana Moderator
Joined: 21 May 2004 Posts: 1711 Location: Germany
|
|
Back to top |
|
|
Vieri l33t
Joined: 18 Dec 2005 Posts: 901
|
Posted: Mon Aug 05, 2024 7:51 am Post subject: |
|
|
Thanks |
|
Back to top |
|
|
|