User guide
Syslog
270 BLACK BOX ® Advanced Console Server
source src { unix-stream("/dev/log"); };
# remote server1-IPaddress 10.0.0.1 port default
destination d_udp1 { udp("10.0.0.1"); };
# remote server2-IPaddress 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); };