Service manual
175Appendix G Generating Alarm and Syslog
Cyclades-TS Installation & Service Manual
# 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); };