-4

i wonder if you can help me out with identifying a Java library that i can use as a network sniffer / network analyzer to detect Cisco SCCP packets and record subsequent RTP packets for a call recording application for Unified Communications Manager (CallManager).

thank you in advance.

1 Answers1

0

You can definitely do this but you're going to run into some problems. Since Java is at such a high level (with respect to packet capturing), you're (probably) going to loose some packets.

The Jpcap project may be able to help you out though.

After you've captured the packet, you'll have to analyze it. Jpcap provides some of this functionality but you'll have to go a bit further to detect Cisco SCCP packets and RTP packets.

Drew
  • 417
  • 4
  • 13
  • thank you for your suggestion. Please note that jpcap just sniffs the packet however it would not analyze it. – Kiyam.Kadir May 24 '12 at 16:08
  • Right, that's what I said above, it provides some of the analysis functionality in that it gives you objects for each type of packet but beyond that you're on your own. – Drew May 24 '12 at 17:37