Is there anyway I can combine these filters into a single line per host?<br>
<br>
filter f_host-dns1 { host (&quot;SVR006*&quot;) or host (&quot;dns1*&quot;); };<br>
filter f_host-dns2 { host (&quot;SVR015*&quot;) or host (&quot;dns2*&quot;); };<br>
filter f_host-dns21 { host (&quot;SVR138*&quot;) or host (&quot;dns21*&quot;); };<br>
filter f_query-dns1 { filter (f_local0) and filter (f_host-dns1); };<br>
filter f_query-dns2 { filter (f_local0) and filter (f_host-dns2); };<br>
filter f_query-dns21 { filter (f_local0) and filter (f_host-dns21); };<br>
<br>
I think I can but I am unsure of how syslog-ng handles ANDs and ORs<br>