Forum Discussion
grep -i rst /var/log/ltm | grep x.x.x.x
- JonathancertNimbostratus
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.
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.
grep -i rst /var/log/ltm | grep x.x.x.x
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.