Complete local access only

I’m running the latest firmware version 1.7.2R1 and have managed to add my local ntp server for time sync. The comet lives on a isolated VLAN with no internet access, modifying /etc/ntp.conf allowed it sync locally.

I understand the comet still sends traffic if the status led is blinking and with the status led off the traffic stops.

I would prefer the led to function but if it needs to be turned off, how can i set this and ntp so it persists reboots or firmware upgrades?

Add the following two scripts to the /etc/kvmd/user/scripts folder

[root@glkvm:/etc/kvmd/user/scripts]# cat S10stop_icmp.sh 
#! /bin/sh

# Stop DNS ping flood
/bin/sh /etc/init.d/S23led stop
[root@glkvm:/etc/kvmd/user/scripts]# cat S20update_ntp.sh 
#! /bin/sh

# Set preferred local NTP server
echo "server 192.168.69.5 iburst minpoll 6 maxpoll 8" > /etc/ntp.conf

Make sure they both have execute permissions

chmod a+x S10stop_icmp.sh
chmod a+x S20update_ntp.sh