Hi, I'm looking for a way to decrypt ISAKMP ikev2 messages using tshark. I was able to do through preferences in wireshark. But not sure how will I give that preference with the "-o" option in tshark. Any help is appreciated. asked 16 May '15, 18:29 shakti edited 17 May '15, 07:05 Kurt Knochner ♦ |
2 Answers:
You would use -o if you want to override a current preferences value. You already configured the decryption in Wireshark and if it works there, it will also work in tshark. Both read the same preferences file. answered 17 May '15, 02:24 Roland |
To decrypt ISAKMP/IKE frames, please fill the following file with the same paramaters you entered in the GUI: IKEv1:
IKEv2:
If you don't know what to put into those files, first fill in the values in the GUI and then take the generated files as an example. Then enable ISAKMP/IKE decryption in tshark, you need the following -o options:
After that, you'll see the decrypted IKE frames in the output files.
See also my other answers related to IKE/ESP decryption:
Regards answered 17 May '15, 07:03 Kurt Knochner ♦ edited 17 May '15, 07:04 |