-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ucentral-schema: update to latest HEAD
19fcc8d update schemareader bef2a8f state: add the upstream dhcp servers ip to the state message Signed-off-by: John Crispin <john@phrozen.org>
- Loading branch information
Showing
2 changed files
with
31 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
patches/backports/0033-netifd-on-dhcp-interfaces-store-the-dhcp-server-in-i.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
From a3598bcbc83224faf0d2ecb55761d048a1beb6d1 Mon Sep 17 00:00:00 2001 | ||
From: Felix Fietkau <nbd@nbd.name> | ||
Date: Fri, 10 Dec 2021 10:16:18 +0100 | ||
Subject: [PATCH] netifd: on dhcp interfaces, store the dhcp server in | ||
interface data | ||
|
||
Among other things, this can be used to auto-configure the DHCP server | ||
address for wireless APs using FILS, if the bridged interface is | ||
configured to DHCP | ||
|
||
Signed-off-by: Felix Fietkau <nbd@nbd.name> | ||
--- | ||
package/network/config/netifd/files/lib/netifd/dhcp.script | 1 + | ||
1 file changed, 1 insertion(+) | ||
|
||
diff --git a/package/network/config/netifd/files/lib/netifd/dhcp.script b/package/network/config/netifd/files/lib/netifd/dhcp.script | ||
index e46005d84c..6fcf139beb 100755 | ||
--- a/package/network/config/netifd/files/lib/netifd/dhcp.script | ||
+++ b/package/network/config/netifd/files/lib/netifd/dhcp.script | ||
@@ -60,6 +60,7 @@ setup_interface () { | ||
[ -n "$message" ] && json_add_string message "$message" | ||
[ -n "$timezone" ] && json_add_int timezone "$timezone" | ||
[ -n "$lease" ] && json_add_int leasetime "$lease" | ||
+ [ -n "$serverid" ] && json_add_string dhcpserver "$serverid" | ||
proto_close_data | ||
|
||
proto_send_update "$INTERFACE" | ||
-- | ||
2.25.1 | ||
|