Mar 27, 2026 - For details about updated CVE-2025-53521 (BIG-IP APM vulnerability), refer to K000156741.

Forum Discussion

Reginald_Sible1's avatar
Reginald_Sible1
Icon for Nimbostratus rankNimbostratus
Feb 06, 2016

Can you Tail -f /var/ltm/logs and specify what IP you DO NOT want to see?

Can you Tail -f /var/ltm/logs and specify what IP you DO NOT want to see?

 

1 Reply

  • Hamish's avatar
    Hamish
    Icon for Cirrocumulus rankCirrocumulus

    grep -v is your friend here...

    tail -f /var/log/ltm | grep -v replace_ip_here
    

    That will show you all lines, EXCEPT ones that contain the IP address you don't want to see. If you want to filter it further, just pipe (That's the vertical bar) through another grep. or you can use egrep and a regex in the filter.

    H