From eec7f4c8ec46a05dd956461f3a288fa75c25bf71 Mon Sep 17 00:00:00 2001 From: akanealw Date: Wed, 17 Apr 2024 01:17:26 +0000 Subject: [PATCH] docs: update home/openwrt/openwrt-tftp-settings --- home/openwrt/openwrt-tftp-settings.md | 34 ++++++++++++++++++++++++--- 1 file changed, 31 insertions(+), 3 deletions(-) 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