Forum Discussion

cgwin12's avatar
cgwin12
Icon for Altostratus rankAltostratus
May 08, 2024

cat and grep command for rst messages

I need to grep for rst messages in var/log/ltm. I want to filter by rst packets to or from a specific virtual server ip. Does anyone know a command for that? Or a resource I can reference that shows those options? Thanks. 

  • You can try this command in bash.

     

    tail -f /var/log/ltm | grep -i 'RST' | grep x.x.x.x <-This allows you to see the reset specific logs.