I'm trying to connect to an FTP server over HTTP. Is there any way I can use a VPN like Hamachi and tunnel through my home PC, then connect tothe FTP via HTTP or another port?
1
There are 1 best solutions below
Related Questions in HTTP
- My get request for http is very slow
- Angular multiple http requests chrome android
- HttpRequestContext vs HttpContext
- Converting curl command to iOS
- getting google contacts using shuttlecloud
- Node.js http.get example
- How can hide url value in php
- Symfony2 - handle HTTP/Entity user access restrictions
- Angular http interceptor responseError doesn't have statusText
- Which of the following hostnames are valid?
- Send Http request at specific time
- Rails - read file from POST request / octet-stream
- Python - Cookies & BeautifulSoup
- Npm requests stopped by home router
- POST Android json data
Related Questions in FTP
- Site code to enable UTF-8 to EBCDIC encoding
- Images not showing when uploaded to server
- Batch file: map a FTP server
- Checking FTP folder for filenames in HTML
- Problems uploading file within a do while loop
- C# FTP server never receives incoming transfer connection after processing EPRT command
- I get 530 access denied in ftp connection after some upgrade in my internet connection
- Need to create a simple script for ftp login
- Unable to send file from ftp to another ftp
- How to upload any file to FTP Server using Google Apps Script
- Upload file to ftp with unique name in asp.net c#
- ftp_rawlist not running for huge directories
- How to login FTP with empty password in C#?
- View an image available in ftp
- Laravel 5 on shared hosting getting internal server error
Related Questions in TUNNEL
- Security implications of a socket race when tunnelling a sub-command
- Packet Tunnel Provider in iOS 9
- How to allow protocol-41 (6in4) through the GCE firewall?
- How to both read and write from a TAP device connected to a MACVLAN via a bridge?
- Unable to tunnel through proxy. Proxy returns “HTTP/1.1 407” via https
- How to make Reverse SSH Tunnels secure
- I am not able to connect to mysql via ssh and I don't know why using Java
- How To Setup Local Tunnel Through Windows Remote Desktop
- How to use JProfiler over two-hop SSH tunnel
- Python - How to create a tunnel of proxies
- connect to drive through ssh hops
- Why server unexpectedly closed network connection?
- http tunneling between devices, behind firewalls
- Hamachi and FTP/HTTP
- How to debug a ssh tunnel
Related Questions in HAMACHI
- Java TCP Client Server working over LAN with port Forwarding but not with hamachi
- Accessing remote web application using LogMeIn Hamachi2
- Hamachi and FTP/HTTP
- Using networks in c++
- Connect to SQL Server via Hamachi VPN - SSMS works, Node doesn't
- Raspberry Pi 3 B+ hamachi hostname issue
- Hamachi throw "failed to connect to the engine" error in MacOs M1
- Logging on to a reporting server through hamachi
- Minecraft Server closes immediately after running?
- Hamachi VPN client Raspberry Pi disconnecting?
- IIS with Hamachi
- How can I deploy my .NET app to Amazon EC2?
- Hamachi client status on webpage
- multicast clients connected via hamachi
- Synology DS213j how to install Hamachi or LogMeIn service?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
The main problem with FTP over HTTP is not port mapping, but being able to translate HTTP commands to FTP. Something like mod_proxy_ftp should help. Note that FTP over HTTP proxies tend to support only fetching of files and listing of directories, i.e. they convert a directory URL to a LIST commands, and a file URL to a RETR command.
I realize I might not have answered your exact question, so apologies if there is a strong reason why you need to use VPN and not a proxy. Still I can't see how a VPN would do the protocol conversion.