I am having trouble getting ip tos to fire an alert. In the pcap below, I have AF41 (34) and EF (46) DSCP tagged traffic.
I can filter this traffic in wireshark:
ip.dsfield.dscp == 34 or ip.dsfield.dscp == 46
I have tried several rule permutations (see below) to try and get an alert to fire. Can anyone point me in the right direction?
alert ip any any -> any any (msg:“Differentiated Services Codepoint: AF41”; tos:34; flow:to_server; classtype:not-suspicious; sid:202004; rev:1;)
alert ip any any -> any any (msg:“Differentiated Services Codepoint: AF41”; tos:34; classtype:not-suspicious; sid:202004; rev:1;)
alert ip any any -> any any (msg:“Differentiated Services Codepoint: AF41”; tos:34; flow:established; classtype:not-suspicious; sid:202004; rev:1;)