Packages and utilities for network booting
Go to file
David Anderson 99cc04c381 Clean up more lint errors.
Also remove the 'vetshadow' linter, it's overly noisy on normal code.
2018-02-05 21:09:02 -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 Fixed "unused variable" in ReserveAddresses() function 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 Clean up more lint errors. 2018-02-05 21:09:02 -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 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 Clean up more lint errors. 2018-02-05 21:09:02 -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.