![Black Box LS1016A User Manual Download Page 270](http://html.mh-extra.com/html/black-box/ls1016a/ls1016a_user-manual_2763435270.webp)
Syslog
270
BLACK BOX
®
Advanced Console Server
source src { unix-stream("/dev/log"); };
# remote server 1 - IP address 10.0.0.1 port default
destination d_udp1 { udp("10.0.0.1"); };
# remote server 2 - IP address 10.0.0.2 port 1999
destination d_udp2 { udp("10.0.0.2" port(1999););};
# filter messages from facility local1 and level info to warning
filter f_local1 { facility(local1) and level(info..warn);};
# filter messages from facility local 1 and level err to alert
filter f_critic { facility(local1) and level(err .. alert);};
# send info, notice and warning messages to remote server udp1
log { source(src); filter(f_local1); destination(d_udp1); };
# send error, critical and alert messages to remote server udp2
log { source(src); filter(f_critic); destination(d_udp2); };