Packages and utilities for network booting
Go to file
2025-01-14 19:10:31 -05:00
.github/workflows Create go.yml 2025-01-14 18:50:49 -05:00
artifacts Create go.yml 2025-01-14 18:50:49 -05:00
cmd Create go.yml 2025-01-14 18:50:49 -05: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 pixiecore: stop asking for bug reports, pixiecore isn't actively developed 2024-05-31 16:23:30 -07: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 Create go.yml 2025-01-14 18:50:49 -05:00
.dockerignore Improve build logic (#28) 2017-01-05 15:54:43 -08:00
.gitignore Create go.yml 2025-01-14 18:50:49 -05:00
.gitmodules fix #113: get the update-ipxe target working 2020-06-17 09:54:17 -07:00
CONTRIBUTING.md Add a contributing doc. 2016-03-05 15:18:01 -08:00
go.mod Create go.yml 2025-01-14 18:50:49 -05:00
go.sum Create go.yml 2025-01-14 18:50:49 -05:00
LICENSE Add a license file. 2016-03-05 15:08:13 -08:00
Makefile Build into the build dir 2025-01-14 19:10:31 -05: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.