Easy question - troubleshooting AMI scripts

Working with a client on their CRM interaction. The basic flow is like this:

Web app <-> local interface <-> AMI Interface.

The AMI and local parts seem to be working OK, but the Web app part (which is the only piece we don’t have visibility into) isn’t responding. I need to watch the AMI to local part to make sure we are generating the events that the web app appears to want.

What’s the easiest way to watch that part?

tcpdump -A -s 0 port 5038 ?

1 Like

I changed it a little:

tcpdump -i lo -A -s 0 port 5038

Other than that - awesome - thanks.