Forum Discussion

abeny_894's avatar
abeny_894
Icon for Nimbostratus rankNimbostratus
May 15, 2006

Remote syslog

Dear all,

 

 

 

Can somebody help me that how can configure or use irules to remote syslog logging? it is works that only logging in the bigip

 

 

what i need to config if i need remote syslog logging?

 

 

Many thanks ~
  • Jason_Roppolo_3's avatar
    Jason_Roppolo_3
    Historic F5 Account
    Hi!

     

     

    Under /etc/syslog-ng/syslog-ng.conf

     

     

    You need to modify the configuration where it says:

     

     

     

     

    destination d_ltm {

     

    file("/var/log/ltm" create_dirs(yes));

     

     

    to something like:

     

     

    destination d_ltm {

     

    udp("x.x.x.x");

     

    file("/var/log/ltm" create_dirs(yes));

     

     

    This is assuming that what you are looking for is logging to var/log/ltm

     

     

    Once you make the change you need to do a bigstart restart syslog

     

     

    I would be careful doing this on a production system!

     

     

    -J