same here. if you're running scribe then create a new filter in /opt/etc/syslog-ng.d called aimesh with below contents:Hi,
I am getting those messages in syslog while I am not using Mesh. The MAC address reported is the one of my Synology NAS. Any idea why this is showing-up ?
View attachment 31124
# put unused aimesh messages into /opt/var/log/aimesh.log
destination d_aimesh {
file("/opt/var/log/aimesh.log");
};
filter f_aimesh {
(message("already exist in UDB, can't add it") or
message("not mesh client, can't update it's ip"));
};
log {
source(src);
filter(f_aimesh);
destination(d_aimesh);
flags(final);
};
#eof
same here. if you're running scribe then create a new filter in /opt/etc/syslog-ng.d called aimesh with below contents:
and then use option rl in scribeCode:# put unused aimesh messages into /opt/var/log/aimesh.log destination d_aimesh { file("/opt/var/log/aimesh.log"); }; filter f_aimesh { (message("already exist in UDB, can't add it") or message("not mesh client, can't update it's ip")); }; log { source(src); filter(f_aimesh); destination(d_aimesh); flags(final); }; #eof
I highly recommend it, along with a shameless plug of uiScribe. It allows you to still log everything but "clean up" the messages log by pushing log lines from certain programs, or matching text, into their own dedicated log files.Thanks. I am not using scribe ...
I'm not sure on levels, I tend to let syslog-ng gobble everything for a specific program/string matchThis was one of the things I wanted to do with scribe, so thank you for that! Also, I can't quite figure out how to set the logging level properly and where with the level() function. Any thoughts on where I'd insert that function call to only log specific levels (I know the function arguments I need, I just can't get the correct syntax when adding the function).
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!