From: Wim N. <wim...@zi...> - 2017-04-26 19:36:57
|
Hello Oliver, When rereading your e-mail it became clear that the IP address in cipSecEndPtRemoteAddr1 is not encoded as an hexadecimal string (8 characters) but as an octet string (4 characters). Still, it is possible to use a single transform to get the desired result, if Devmon patch # 36 (which patches only two lines in Devmon) is applied. The transform is: ip1 : REGSUB : {cipSecEndPtRemoteAddr1} /^(.)(.)(.)(.)$/ord($1) . '.' . ord($2) . '.' . ord($3) . '.' . ord($4)/e Regards, Wim Nelis. |