I’ve recently got a hold of the kill_msg.tcl file. The purpose of me using this file is to send all the ADT & RDE messages in a particular interface except for A05’s. After picking the file in the Proc: drop down box, I set my Args as:
The trick is to remember that the MSH segment is different from all other segments. Since we split on the field separator, which is field 1 of an MSH segment, all other fields are skewed back by one in the count. For example, field 9 (Message Type) is actually extracted at position 8 in kill_msg.
In other words, just change your argument from
Quote:
{FIELDNUM 9}
to
Quote:
{FIELDNUM 8}
and your filter will start working as intended.
This is only for the MSH segment. Good luck in your endeavor.