In article <[email protected]>, Sean Darcy <[email protected]> wrote: > On 09/06/2013 07:08 PM, Steve Edwards wrote: > > On Fri, 6 Sep 2013, Sean Darcy wrote: > > > >> I'm not sure asterisk is even listening for the packets: > >> > >> [root@asterisk ~]# netstat -apnt | grep 4569 > >> [root@asterisk ~]# > > > > '-t' meand TCP. IAX is UDP. > > > > My bad: > > netstat -apnu | grep 4569 > udp 0 0 0.0.0.0:4569 0.0.0.0:* > 3176/asterisk > > But why isn't asterisk seeing/acting upon the registration request? > Wireshark finds the packet to 4569, so it's not a firewall problem.
Are you sure about that? I have found in the past that tcpdump sees inbound packets before they get to the iptables filter. What happens if you do: iptables -I INPUT 1 -p udp --dport 4569 -j ACCEPT Cheers Tony -- Tony Mountifield Work: [email protected] - http://www.softins.co.uk Play: [email protected] - http://tony.mountifield.org -- _____________________________________________________________________ -- Bandwidth and Colocation Provided by http://www.api-digital.com -- New to Asterisk? Join us for a live introductory webinar every Thurs: http://www.asterisk.org/hello asterisk-users mailing list To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-users
