What's new

dnsmasq-script errors

  • SNBForums Code of Conduct

    SNBForums is a community for everyone, no matter what their level of experience.

    Please be tolerant and patient of others, especially newcomers. We are all here to share and learn!

    The rules are simple: Be patient, be nice, be helpful or be gone!

Nitr0

New Around Here
I saw these in several posts regarding firmware updates between 384.13 and 384.14 but I never saw an answer. I'm running 384.15 on an AC88 and these started when I changed one of my AC68U routers to aimesh today. Is there any way to find the root cause and fix the errors?

Mar 28 21:00:14 dnsmasq-script[30987]: [SEND_AMAS_NODE_EVENT:(4684)] ERROR connecting:No such file or directory.
Mar 28 21:00:14 dnsmasq-script[30987]: connect error: No such file or directory
Mar 28 21:00:14 dnsmasq-script[30987]: [SEND_AMAS_NODE_EVENT:(4684)] ERROR connecting:No such file or directory.
Mar 28 21:00:14 dnsmasq-script[30987]: connect error: No such file or directory
Mar 28 21:00:14 dnsmasq-script[30987]: [SEND_AMAS_NODE_EVENT:(4684)] ERROR connecting:No such file or directory.
Mar 28 21:00:14 dnsmasq-script[30987]: connect error: No such file or directory
Mar 28 21:00:14 dnsmasq-script[30987]: [SEND_AMAS_NODE_EVENT:(4684)] ERROR connecting:No such file or directory.
Mar 28 21:01:42 dnsmasq-script[30987]: connect error: No such file or directory
Mar 28 21:01:42 dnsmasq-script[30987]: [SEND_AMAS_NODE_EVENT:(4684)] ERROR connecting:No such file or d
 
I saw these in several posts regarding firmware updates between 384.13 and 384.14 but I never saw an answer. I'm running 384.15 on an AC88 and these started when I changed one of my AC68U routers to aimesh today. Is there any way to find the root cause and fix the errors?

Mar 28 21:00:14 dnsmasq-script[30987]: [SEND_AMAS_NODE_EVENT:(4684)] ERROR connecting:No such file or directory.
Mar 28 21:00:14 dnsmasq-script[30987]: connect error: No such file or directory
Mar 28 21:00:14 dnsmasq-script[30987]: [SEND_AMAS_NODE_EVENT:(4684)] ERROR connecting:No such file or directory.
Mar 28 21:00:14 dnsmasq-script[30987]: connect error: No such file or directory
Mar 28 21:00:14 dnsmasq-script[30987]: [SEND_AMAS_NODE_EVENT:(4684)] ERROR connecting:No such file or directory.
Mar 28 21:00:14 dnsmasq-script[30987]: connect error: No such file or directory
Mar 28 21:00:14 dnsmasq-script[30987]: [SEND_AMAS_NODE_EVENT:(4684)] ERROR connecting:No such file or directory.
Mar 28 21:01:42 dnsmasq-script[30987]: connect error: No such file or directory
Mar 28 21:01:42 dnsmasq-script[30987]: [SEND_AMAS_NODE_EVENT:(4684)] ERROR connecting:No such file or d
Appears to be AiMesh closed source code spewing those messages.
https://ftp.snbforums.com/threads/s...r-connecting-no-such-file-or-directory.62407/
 
So I factory reset my AC88 last weekend and did a clean rebuild on 384.17. These messages started happening again after I installed Entware. I hadn't even installed another package and they started occurring. Is there a way to stop them or should I just ignore them?
 
How did you install Entware? Did you format the JFFS partition? Did you format the USB drive on a computer first? :)
 
So I factory reset my AC88 last weekend and did a clean rebuild on 384.17. These messages started happening again after I installed Entware. I hadn't even installed another package and they started occurring. Is there a way to stop them or should I just ignore them?

yes you can filter them out of your main syslog- install scribe via amtm - install uiscribe via amtm

create file called "amas" with following content
Code:
destination d_dnsscripterror{
    file("/opt/var/log/dnsscripterror.log");
};
filter f_dnsscripterror{
    program("dnsmasq-script");
};
log {
    source(src);
    filter(f_dnsscripterror);
    destination(d_dnsscripterror);
    flags(final);
};
#eof

Put that file "amas" into /opt/etc/syslog-ng.d

restart syslog-ng via scribe menu in amtm
 
Last edited:
I've been using it for a while and then just factory reset. After factory reset I used AMTM to
yes you can filter them out of your main syslog- install scribe via amtm - install uiscribe via amtm

create file called "amas" with following content
Code:
destination d_dnsscripterror{
    file("/opt/var/log/dnsscripterror.log");
};
filter f_dnsscripterror{
    program("dnsmasq-script");
};
log {
    source(src);
    filter(f_dnsscripterror);
    destination(d_dnsscripterror);
    flags(final);
};
#eof

Put that file "amas" into /opt/etc/syslog-ng.d

restart syslog-ng via scribe menu in amtm

Thanks, I've placed the file and restarted syslog-ng.d. I'll keep an eye on it but after 5-10 minutes I'm so far clear.
 

Latest threads

Sign Up For SNBForums Daily Digest

Get an update of what's new every day delivered to your mailbox. Sign up here!
Top