Skip to content
This repository has been archived by the owner on Nov 9, 2020. It is now read-only.

vmware-archive/gotftp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

VMware has ended active development of this project, this repository will no longer be updated.

gotftp

TFTP server implementation in Go.

Usage

For an example server implementation, see the example directory.

This server provides read/write access to $PWD.

To run the server (from the example directory):

$ go build main.go
$ echo "Hello world!" > file
$ sudo ./main

To access the server with curl (for example):

$ curl tftp://localhost/file
Hello world!

Notes

A client implementation could easily be built on top since the packet serialization/deserialization is in place and not tied to either the server or the client side. If you're looking to build this feature, let us know through an issue on GitHub, or directly with a pull request for this functionality.

RFCs

Other RFCs are informational or obsoleted by newer versions.

  • 1350: THE TFTP PROTOCOL (REVISION 2)
  • 2347: TFTP Option Extension
  • 2348: TFTP Blocksize Option
  • 2349: TFTP Timeout Interval and Transfer Size Options

License

This project is available under the Apache 2.0 license.

Releases

No releases published

Packages

No packages published

Languages