grep dnsmasq /tmp/syslog.log
#!/bin/sh
CONFIGS_DIR='/jffs/configs'
CONFIG="$CONFIGS_DIR/dnsmasq.conf.add"
mkdir -p $CONFIGS_DIR
create_config() {
cat << 'EOF' > $CONFIG
dns-forward-max=300
log-queries=extra
EOF
}
if [ -f $CONFIG ]; then
echo "error: $CONFIG already exists; requires manual installation"
else
create_config
echo 'Done.'
fi
:
service restart_dnsmasq
It's typically caused by an issue with the upstream DNS server, or an issue connecting to it. Check your DNS settings, particularly if you're using the VPN client.I have never seen this before, now it happens at least once a day even when no one is using the internet.
dnsmasq[22622]: Maximum number of concurrent DNS queries reached (max: 150)
tboughts?
Did you ever figure this out?Looking thru my dns logs I see that there was a wave of requests to bogus websites all made at the same time. That seems to be the issue.
Still narrowing down which of the 25 devices on the network causes the random spam bursts. As the problem is not consistent (not the same time every day and not every day), so i have extra logging turned on and im waiting for the next occurrence of the problem to then filter the logs and assess. Any recommendations to narrow the cause down faster would be appreciatedI suggest both of you scan the systems generating those calls for malware
Still narrowing down which of the 25 devices on the network causes the random spam bursts. As the problem is not consistent (not the same time every day and not every day), so i have extra logging turned on and im waiting for the next occurrence of the problem to then filter the logs and assess. Any recommendations to narrow the cause down faster would be appreciated
Wait, are you saying my TV is spamming my network and taking it down or is that an example of how it can happen without being maliciousIt's not always malware! I've a 7yo Samsung SmartTV that just spams Samsung Servers that no longer exist (I've seen Sony SmartTVs do the same). The solution here is the TV has its DNS pointed to a Pi-Hole connected to the same switch, so minimising traffic as much as possible. That said, in this setup, even if the TV were allowed to go on a DNS spam-fest, you'd probably not realise unless you look at the logs!
Welcome To SNBForums
SNBForums is a community for anyone who wants to learn about or discuss the latest in wireless routers, network storage and the ins and outs of building and maintaining a small network.
If you'd like to post a question, simply register and have at it!
While you're at it, please check out SmallNetBuilder for product reviews and our famous Router Charts, Ranker and plenty more!