diff --git a/home/openwrt/openwrt-tftp-settings.md b/home/openwrt/openwrt-tftp-settings.md index 1e5892f..0d86cdd 100644 --- a/home/openwrt/openwrt-tftp-settings.md +++ b/home/openwrt/openwrt-tftp-settings.md @@ -2,12 +2,40 @@ title: openwrt-tftp-settings description: published: true -date: 2024-04-17T01:16:47.323Z +date: 2024-04-17T01:17:24.054Z tags: editor: markdown dateCreated: 2024-04-17T01:16:47.323Z --- # openwrt tftp settings - -Your content here \ No newline at end of file +```bin +config match + option networkid 'bios' + option match '60,PXEClient:Arch:00000' +config match + option networkid 'efi64' + option match '60,PXEClient:Arch:00009' +config match + option networkid 'efi64' + option match '60,PXEClient:Arch:00007' +config userclass + option networkid 'ipxe' + option userclass 'iPXE' +config boot + option filename 'tag:bios,tag:!ipxe,bios/srv/tftp/ipxe.kpxe' + option serveraddress '192.168.1.1' + option servername 'router' +config boot + option filename 'tag:bios,tag:ipxe,bios/srv/tftp/ipxe.kpxe' + option serveraddress '192.168.1.1' + option servername 'router' +config boot + option filename 'tag:efi64,tag:!ipxe,efi64/srv/tftp/ipxe.efi' + option serveraddress '192.168.1.1' + option servername 'router' +config boot + option filename 'tag:efi64,tag:ipxe,efi64/ipxe/srv/tftp/ipxe.efi'' + option serveraddress '192.168.1.1' + option servername 'router' +``` \ No newline at end of file