dnsmasq: bind to br0

This commit is contained in:
2026-01-28 14:43:54 +00:00
parent 0251cef38e
commit 40d9144191
2 changed files with 5 additions and 3 deletions

View File

@@ -32,6 +32,9 @@ Borg
netboot
-------
1. `dmesg | grep enp0` <- find the usb interface
2. Disable power saving: `echo -1 | sudo tee /sys/bus/usb/devices/2-1/power/autosuspend`.
efi:
qemu-system-x86_64 \

View File

@@ -268,9 +268,9 @@ in
dhcp-option = "66,\"0.0.0.0\"";
enable-tftp = true;
tftp-root = "${tftp-root}";
listen-address = "10.14.143.1";
bind-interfaces = true;
# Detect client architecture and serve appropriate bootloader
# DHCP option 93 = Client System Architecture Type
dhcp-match = [
"set:efi-x86_64,option:client-arch,7" # EFI BC (x86-64)
"set:efi-x86_64,option:client-arch,9" # EFI x86-64
@@ -278,7 +278,6 @@ in
"set:bios,option:client-arch,0" # BIOS x86
];
# Serve appropriate boot file based on architecture
dhcp-boot = [
"tag:efi-x86_64,boot.efi" # UEFI x86-64 clients
"tag:efi-x86,boot.efi" # UEFI IA32 clients