From 0f982ac728d12bcf34202119f29a2d2d391895a0 Mon Sep 17 00:00:00 2001 From: Sean Khan Date: Fri, 20 Sep 2024 17:51:54 -0400 Subject: [PATCH] nss-setup: Add additional notes Signed-off-by: Sean Khan --- nss-setup/example/03-uci-defaults | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nss-setup/example/03-uci-defaults b/nss-setup/example/03-uci-defaults index f32e3fe632..91c54c52ab 100644 --- a/nss-setup/example/03-uci-defaults +++ b/nss-setup/example/03-uci-defaults @@ -94,6 +94,8 @@ fi # For Linksys MX4200/4300/5300 etc, only need to match the first 5 bytes # of the MAC address to determine it's the same device. # Replace 'xx:xx' with the one found on the bottom of your device. +# NOTE: '80:69:1a' is just one of the OUI for Linksys. Yours may be different. +# i.e. 'D8:EC:5E:xx:xx', or others. We just need the first 10 characters. # Add a new `elif` block for each device if needed. if [[ "${mac}" =~ "80:69:1a:xx:xx" ]]; then suffix=2 @@ -156,6 +158,8 @@ config timeserver 'ntp' option enable_server '1' option interface 'lan' $(${bridge_mode} && echo list server ''${router}'') + # The following NTP servers are NIST Internet Time Servers. + # Change them to suit your needs/regional location. list server '129.6.15.28' list server '129.6.15.29' list server '129.6.15.30'