Packages and utilities for network booting
Go to file
2018-02-05 12:33:17 -08:00
cmd added support for generation of "dns servers" option 2018-02-05 12:33:17 -08:00
dhcp4 dhcp4: parse transaction ID as a byte slice 2018-02-03 11:23:32 -08:00
dhcp6 For compatibility with 1.7 replaced rand.Uint64() call with calls to rand.Uint32() 2018-02-05 12:33:17 -08:00
dockerfiles/pixiecore Replace ENV with ARG at Dockerfile for vars that should not be persisted 2017-08-16 10:55:09 -07:00
pcap Use cmp.Diff to compare pcap packets. 2017-12-24 17:22:09 -08:00
pixiecore Fixed a bug around setting of server duid 2018-02-05 12:33:17 -08:00
pixiecorev6 Fixed a bug around setting of server duid 2018-02-05 12:33:17 -08:00
scripts Trigger docker hub builds from Travis, instead of github. 2017-01-31 17:26:10 -08:00
tftp tftp: move the "Listening on" log message to only show when using ListenAndServe. 2016-08-15 21:34:33 -07:00
third_party Only boot with ipxe.pxe if we're chainloading from another iPXE. #63 2018-02-04 14:41:09 -08:00
.dockerignore Improve build logic (#28) 2017-01-05 15:54:43 -08:00
.gitignore Update .gitignore to ignore pixiecore.test. 2016-09-19 03:55:18 -07:00
.travis.yml misc: Remove glide and use dep 2017-12-31 14:38:36 -06:00
CONTRIBUTING.md Add a contributing doc. 2016-03-05 15:18:01 -08:00
Gopkg.lock Update the dependency set with a recent version of dep. 2018-02-04 19:30:25 -08:00
Gopkg.toml Update the dependency set with a recent version of dep. 2018-02-04 19:30:25 -08:00
LICENSE Add a license file. 2016-03-05 15:08:13 -08:00
Makefile Improve build logic (#28) 2017-01-05 15:54:43 -08:00
README.md Fix URLs in README.md to point to the right packages. 2016-08-10 00:03:02 -07:00

Netboot, packages and utilities for network booting

license Travis api

This repository contains Go implementations of network protocols used in booting machines over the network, as well as software that make use of those implementations.

This is not an official Google project.

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

Libraries

  • 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: the functionality of Pixiecore (see below), in library form. Every stability warning in this repository applies double for this package.

Programs

  • Pixiecore: an all-in-one tool for easy netbooting.