I'm monitoring a Cisco CUCM for troubleshooting purposes. All I care about are call setup messages. The REGISTER and OPTIONS messages are cluttering up the display, and I was wondering if I could filter those out? asked 23 Sep '11, 08:47 Cisco TelePr... |
One Answer:
Apply display filter answered 23 Sep '11, 12:34 Jaap ♦ |
OK, so if all I want to see are the INVITEs and the dialog that comes after them, I would use:
sip.Method != "REGISTER" or sip.Method != "OPTIONS"
@Cisco, I don't know much about SIP, but I think you meant:
If you want to see them use:
(sip.Method == "REGISTER") || (sip.Method == "OPTIONS")
If you want to hide them use:
!(sip.Method == "REGISTER") && !(sip.Method == "OPTIONS")
Yes, I think the last comment is the syntax of what I was looking for. Thanks!
above ones are not filtering all OPTIONS and 200 OK response to OPTIONS message.
But below one is working for that.
sip && !(sip.CSeq.method == "OPTIONS")