Files
quectel-rgmii-toolkit/www/cgi-bin/get_ttl_status
iamromulan 5aaa75d1b6 Initial Combination
Start the combination process between:

d3505230f6

and the at-telnet portion of

39c20b83b1
2023-09-19 23:13:43 -04:00

19 lines
318 B
Bash

#!/bin/bash
# Check iptables for ttlvalue
ttlvalue=$(iptables -t mangle -vnL | grep TTL | awk '{print $13}')
ttlenabled=true;
# Set Variables
if [ -z "${ttlvalue}" ]; then
ttlvalue=0
ttlenabled=false
fi
echo "Content-type: text/json"
echo ""
cat <<EOT
{
"isEnabled": $ttlenabled,
"ttl": $ttlvalue
}