1
0

tftp-proxy.scd 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. tftp-proxy(8)
  2. # NAME
  3. tftp-proxy - TFTP server that request files not found from an HTTP backend
  4. # SYNOPSIS
  5. ```
  6. tftp-proxy -url=http://example.com -dir=/var/lib/tftpboot
  7. ```
  8. # DESCRIPTION
  9. This program is a simple TFTP server that additionally requests a file
  10. not found locally from a configured HTTP backend.
  11. # OPTIONS
  12. *-dir*=<directory>
  13. The directory to serve files from.
  14. Default: /var/lib/tftpboot
  15. *-url*=<address>
  16. The address of the HTTP server to connect to. Mandatory.
  17. # ENVIRONMENT VARIABLES
  18. The _http_proxy_ environment variable is respected when fetching files
  19. from the HTTP server. This might come handy as tftp-proxy does not
  20. write any files.
  21. # COPYRIGHT&LICENSE
  22. Copyright (C) 2019-2020 Arnoud Vermeer <avermeer@tucows.com>
  23. License (Apache-2.0):
  24. ```
  25. Licensed under the Apache License, Version 2.0 (the "License");
  26. you may not use this file except in compliance with the License.
  27. You may obtain a copy of the License at
  28. https://www.apache.org/licenses/LICENSE-2.0
  29. Unless required by applicable law or agreed to in writing, software
  30. distributed under the License is distributed on an "AS IS" BASIS,
  31. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  32. See the License for the specific language governing permissions and
  33. limitations under the License.
  34. On Debian systems, the complete text of the Apache version 2.0 license
  35. can be found in "/usr/share/common-licenses/Apache-2.0".
  36. ```
  37. # AUTHOR
  38. This manpage is based on the usage output of tftp-proxy and
  39. documentation. It was written for the Debian project by Christoph Biedl
  40. <debian.axhn@manchmal.in-ulm.de> but may be used by others.