├── .gitignore ├── DOCUMENTATION.md ├── LICENSE.md ├── README.md ├── example_cfg.json ├── example_leases.json ├── netboot ├── Core.iso ├── boot.http.ipxe ├── boot.http.nbd.ipxe ├── boot.ipxe ├── chainload.kpxe ├── ldlinux.c32 ├── ldlinux.e32 ├── ldlinux.e64 ├── libutil.c32 ├── memdisk ├── menu.c32 ├── pxelinux.0 ├── pxelinux.cfg │ └── default ├── syslinux.efi32 └── syslinux.efi64 ├── pypxe ├── __init__.py ├── dhcp.py ├── helpers.py ├── http.py ├── nbd │ ├── __init__.py │ ├── nbd.py │ └── writes.py ├── server.py └── tftp.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypxe/PyPXE/HEAD/.gitignore -------------------------------------------------------------------------------- /DOCUMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypxe/PyPXE/HEAD/DOCUMENTATION.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypxe/PyPXE/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypxe/PyPXE/HEAD/README.md -------------------------------------------------------------------------------- /example_cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypxe/PyPXE/HEAD/example_cfg.json -------------------------------------------------------------------------------- /example_leases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypxe/PyPXE/HEAD/example_leases.json -------------------------------------------------------------------------------- /netboot/Core.iso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypxe/PyPXE/HEAD/netboot/Core.iso -------------------------------------------------------------------------------- /netboot/boot.http.ipxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypxe/PyPXE/HEAD/netboot/boot.http.ipxe -------------------------------------------------------------------------------- /netboot/boot.http.nbd.ipxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypxe/PyPXE/HEAD/netboot/boot.http.nbd.ipxe -------------------------------------------------------------------------------- /netboot/boot.ipxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypxe/PyPXE/HEAD/netboot/boot.ipxe -------------------------------------------------------------------------------- /netboot/chainload.kpxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypxe/PyPXE/HEAD/netboot/chainload.kpxe -------------------------------------------------------------------------------- /netboot/ldlinux.c32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypxe/PyPXE/HEAD/netboot/ldlinux.c32 -------------------------------------------------------------------------------- /netboot/ldlinux.e32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypxe/PyPXE/HEAD/netboot/ldlinux.e32 -------------------------------------------------------------------------------- /netboot/ldlinux.e64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypxe/PyPXE/HEAD/netboot/ldlinux.e64 -------------------------------------------------------------------------------- /netboot/libutil.c32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypxe/PyPXE/HEAD/netboot/libutil.c32 -------------------------------------------------------------------------------- /netboot/memdisk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypxe/PyPXE/HEAD/netboot/memdisk -------------------------------------------------------------------------------- /netboot/menu.c32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypxe/PyPXE/HEAD/netboot/menu.c32 -------------------------------------------------------------------------------- /netboot/pxelinux.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypxe/PyPXE/HEAD/netboot/pxelinux.0 -------------------------------------------------------------------------------- /netboot/pxelinux.cfg/default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypxe/PyPXE/HEAD/netboot/pxelinux.cfg/default -------------------------------------------------------------------------------- /netboot/syslinux.efi32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypxe/PyPXE/HEAD/netboot/syslinux.efi32 -------------------------------------------------------------------------------- /netboot/syslinux.efi64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypxe/PyPXE/HEAD/netboot/syslinux.efi64 -------------------------------------------------------------------------------- /pypxe/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '1.8.4' 2 | -------------------------------------------------------------------------------- /pypxe/dhcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypxe/PyPXE/HEAD/pypxe/dhcp.py -------------------------------------------------------------------------------- /pypxe/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypxe/PyPXE/HEAD/pypxe/helpers.py -------------------------------------------------------------------------------- /pypxe/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypxe/PyPXE/HEAD/pypxe/http.py -------------------------------------------------------------------------------- /pypxe/nbd/__init__.py: -------------------------------------------------------------------------------- 1 | from . import * 2 | -------------------------------------------------------------------------------- /pypxe/nbd/nbd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypxe/PyPXE/HEAD/pypxe/nbd/nbd.py -------------------------------------------------------------------------------- /pypxe/nbd/writes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypxe/PyPXE/HEAD/pypxe/nbd/writes.py -------------------------------------------------------------------------------- /pypxe/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypxe/PyPXE/HEAD/pypxe/server.py -------------------------------------------------------------------------------- /pypxe/tftp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypxe/PyPXE/HEAD/pypxe/tftp.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypxe/PyPXE/HEAD/setup.py --------------------------------------------------------------------------------