<br><br><div class="gmail_quote">2009/4/14 jonas kellens <span dir="ltr">&lt;<a href="mailto:jonas.kellens@telenet.be">jonas.kellens@telenet.be</a>&gt;</span><br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">



  
  

<div>
<br>
[root@asterisk asterisk]# netstat -a -n -p | grep 5060<br>
udp        0      0 <a href="http://0.0.0.0:5060" target="_blank">0.0.0.0:5060</a>                0.0.0.0:*                               3047/asterisk <br>
<br>
<br>
[root@asterisk asterisk]# /usr/sbin/tcpdump port 5060<br>
tcpdump: verbose output suppressed, use -v or -vv for full protocol decode<br>
listening on eth1, link-type EN10MB (Ethernet), capture size 96 bytes<br>
23:04:59.522498 IP 192.168.4.114.sip &gt; 192.168.4.248.sip: SIP, length: 530<br>
23:05:01.233460 IP 192.168.4.112.sip &gt; 192.168.4.248.sip: SIP, length: 540<br>
23:05:23.521076 IP 192.168.4.114.sip &gt; 192.168.4.248.sip: SIP, length: 530<br>
23:05:24.520486 IP 192.168.4.114.sip &gt; 192.168.4.248.sip: SIP, length: 530<br>
23:05:25.232068 IP 192.168.4.112.sip &gt; 192.168.4.248.sip: SIP, length: 540<br>
23:05:26.231229 IP 192.168.4.112.sip &gt; 192.168.4.248.sip: SIP, length: 540<br>
23:05:26.520308 IP 192.168.4.114.sip &gt; 192.168.4.248.sip: SIP, length: 530<br>
23:05:28.231050 IP 192.168.4.112.sip &gt; 192.168.4.248.sip: SIP, length: 540<br>
23:05:30.519957 IP 192.168.4.114.sip &gt; 192.168.4.248.sip: SIP, length: 530<br>
23:05:32.230693 IP 192.168.4.112.sip &gt; 192.168.4.248.sip: SIP, length: 540<br>
23:05:34.521843 IP 192.168.4.114.sip &gt; 192.168.4.248.sip: SIP, length: 925<br>
23:05:34.530587 IP 192.168.4.114.sip &gt; 192.168.4.248.sip: SIP, length: 530<br>
23:05:35.519255 IP 192.168.4.114.sip &gt; 192.168.4.248.sip: SIP, length: 925<br>
23:05:36.230336 IP 192.168.4.112.sip &gt; 192.168.4.248.sip: SIP, length: 540<br>
23:05:37.519077 IP 192.168.4.114.sip &gt; 192.168.4.248.sip: SIP, length: 925<br>
23:05:41.518720 IP 192.168.4.114.sip &gt; 192.168.4.248.sip: SIP, length: 925<br>
<br>
Connected to Asterisk 1.4.24 currently running on asterisk (pid = 3047)<br>
Verbosity is at least 3<br>
asterisk*CLI&gt; sip debug<br>
SIP Debugging re-enabled<br>
asterisk*CLI&gt; <br>
<br>
and it stays that way...<br>
</div></blockquote><div><br>So far, what you&#39;ve provided as information suggests that asterisk is running, that it is listening on the SIP port, udp 5060, that the phones are sending information to asterisk, the machine asterisk is running on can see the packets in a tcpdump, but, asterisk never sees what the phones are sending going back the lack of anything showing up in the asterisk cli...<br>
<br>Make sure you set at least udp port 5060 in your iptables configuration as ACCEPTed... <br></div></div><br>To do it as a one off, you can do &#39;iptables -I INPUT -i eth1 -p udp -m udp -s <a href="http://192.168.4.0/24">192.168.4.0/24</a> --dport 5060 -j ACCEPT&#39;, though unless you change your configuration this will not survive across a reboot...<br>
<br>This wouldn&#39;t necessarily be enough to get SIP working, but, the phones should at least register and you should be able to see them at least try to make calls... If you get that far, you&#39;ll also need to open a range of ports for RTP...<br>
<br>d<br>