tftp-http-proxy is a simple TFTP server that proxies all read requests to a backing HTTP server, and serves the response.
Release binaries for linux amd64 platforms are built by default and can be downloaded from the Releases page.
For other platforms or to build from source, clone the repository and just run make
.
Usage of dist/tftp-http-proxy:
-http-base-url string
HTTP base URL (default "http://127.0.0.1/tftp")
-tftp-timeout duration
TFTP timeout (default 5s)
When tftp-http-proxy is started, it will listen on (UDP) port 69 as a normal TFTP server. Whenever a new TFTP read request is received, the request will be forwarded as an HTTP request to the configured HTTP URL (-http-base-url
flag). The HTTP request will have some additional HTTP headers containing information about the TFTP request:
X-TFTP-IP
: The IP of the requesting TFTP clientX-TFTP-Port
: The port used by the requesting TFTP clientX-TFTP-File
: The filename requested by the TFTP client
If the HTTP request returns a status 200 response, the contents of the response will be sent as the file contents for the TFTP read request. The HTTP response should contain an accurate ContentLength header, as it will be used to set the TFTP TSize option on the read response.
If the HTTP response status is not 200, an error response will be sent to the TFTP client instead.
tftp-http-proxy is released under the MIT License.