Packages and utilities for network booting
Go to file
2018-08-12 20:30:37 -07:00
.circleci Switch the image building to happen on Go 1.10. 2018-08-12 20:30:37 -07:00
cmd Add a CircleCI configuration for building container images. 2018-02-06 23:45:09 -08:00
dhcp4 dhcp4: add OptInterfaceMTU 2018-07-27 08:59:23 -07:00
dhcp6 Remove unneccessary conversions, further appeasing lint. 2018-02-05 22:00:13 -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 Simplify and add TL;DR with quick xyz option 2018-08-12 16:38:36 -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 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
Gopkg.lock Update dep lock in a desperate attempt to make dep not suck ass. 2018-02-06 23:57:58 -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 Enable verbose logging on dep ensure. 2018-02-06 23:51:34 -08:00
Makefile.inc Add a CircleCI configuration for building container images. 2018-02-06 23:45:09 -08:00
README.md Update README.md 2018-08-12 16:38:36 -07:00

Netboot, packages and utilities for network booting

license CircleCI api

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 is not an official Google project.

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.