reordered and renamed for wikidocs

This commit is contained in:
2024-08-10 00:18:30 -05:00
parent 8b47549ff7
commit 1466447ccc
19 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,51 @@
---
title: openwrt-tftp-settings
description:
published: true
date: 2024-04-17T01:22:19.347Z
tags:
editor: markdown
dateCreated: 2024-04-17T01:16:47.323Z
---
# openwrt tftp settings
```bin
option enable_tftp '1'
option tftp_root '/srv/tftp'
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,ipxe.kpxe'
option serveraddress '192.168.1.1'
option servername 'router'
config boot
option filename 'tag:bios,tag:ipxe,ipxe.kpxe'
option serveraddress '192.168.1.1'
option servername 'router'
config boot
option filename 'tag:efi64,tag:!ipxe,ipxe.efi'
option serveraddress '192.168.1.1'
option servername 'router'
config boot
option filename 'tag:efi64,tag:ipxe,ipxe.efi'
option serveraddress '192.168.1.1'
option servername 'router'
```