Packages and utilities for network booting
Go to file
2020-02-05 13:06:10 -08:00
.circleci Gaaaah. Switch deploy stage to Go 1.11. Where modules work. 2019-01-22 21:29:12 -08:00
cmd Add a CircleCI configuration for building container images. 2018-02-06 23:45:09 -08:00
dhcp4 Fix #87, add broadcast discover message support 2019-02-14 17:33:30 -08:00
dhcp6 Remove unneccessary conversions, further appeasing lint. 2018-02-05 22:00:13 -08:00
dockerfiles/pixiecore fix for #78, dockerfile compiles again 2020-02-05 13:06:10 -08:00
pcap Use cmp.Diff to compare pcap packets. 2017-12-24 17:22:09 -08:00
pixiecore quickcmd: Ubuntu version up to focal 2020-01-26 13:25:55 -08:00
scripts Trigger docker hub builds from Travis, instead of github. 2017-01-31 17:26:10 -08:00
tftp Clean up more lint errors. 2018-02-05 21:09:02 -08:00
third_party Gofmt -s the code. 2018-02-05 21:09:02 -08:00
.dockerignore Improve build logic (#28) 2017-01-05 15:54:43 -08:00
.gitignore Add a CircleCI configuration for building container images. 2018-02-06 23:45:09 -08:00
CONTRIBUTING.md Add a contributing doc. 2016-03-05 15:18:01 -08:00
go.mod Update dependencies. 2020-01-26 13:50:20 -08:00
go.sum Update dependencies. 2020-01-26 13:50:20 -08:00
LICENSE Add a license file. 2016-03-05 15:08:13 -08:00
Makefile Correct go tool vet invocation. 2019-01-22 21:04:32 -08:00
Makefile.inc Desperation setting in. 2019-01-22 21:26:10 -08:00
README.md Update README.md 2019-11-27 20:18:57 -08:00

Netboot, packages and utilities for network booting

This repository contains Go implementations of network protocols used in booting machines over the network, as well as utilites built on top of these libraries.

This project is no longer actively developed. I'm glad if you find it useful, but don't expect any significant changes.

Programs

  • Pixiecore: Command line all-in-one tool for easy netbooting

Libraries

The canonical import path for Go packages in this repository is go.universe.tf/netboot.

  • pcap: Pure Go implementation of reading and writing pcap files.
  • dhcp4: DHCPv4 library providing the low-level bits of a DHCP client/server (packet marshaling, RFC-compliant packet transmission semantics).
  • tftp: Read-only TFTP server implementation.
  • pixiecore: Go library for Pixiecore tool functionality. Every stability warning in this repository applies double for this package.