This went little bit offtopic :P but i dont mind . Here&#39;s how i solved it ( just if some one in future goes in this problem and end up here by googling ) .<br>Port 5060 was blocked by isp incoming as well as outgoing&nbsp; for few extension&#39;s isp . On server i did 
<br>iptables -t nat -A PREROUTING -i eth0 -p udp --dport 5091 -j DNAT&nbsp; --to <a href="http://72.9.100.210:5060">72.9.100.210:5060</a><br><br>this made softphones register using port 5091 but when they make call asterisk was writing port 5060 somewhere it seems so when they hanged up asterisk was not detecting hangup&#39;s properly ( beware of sjphone it is useless in this situation bcoz it doesnt allow changing port it listens on ) so i went with x-lite and change ports it use to something like 45000 instead of 5060 and i moved asterisk to port 5091 completely and made a rule to 
<br>iptables -t nat -A PREROUTING -i eth0 -p udp --dport 5060 -j DNAT&nbsp; --to <a href="http://72.9.100.210:5091">72.9.100.210:5091</a><br><br>so now other people can make calls and register using port 5060 ( iptables redirect it to 5091 but still hangup and all everything work perfectly ( bcoz port 5060 and 5091 both works for them )&nbsp; and my extensions behind port blocked isp are all happy as they can completely use port 5091 :) for eveything .
<br>Thanks for help everyone :) .<br><br><div><span class="gmail_quote">On 16/12/06, <b class="gmail_sendername">Steve Sobol</b> &lt;<a href="mailto:sjsobol@justthe.net">sjsobol@justthe.net</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
On Fri, 15 Dec 2006, John Novack wrote:<br><br>&gt; Google is your friend!!<br>&gt;<br>&gt; <a href="http://www.eweek.com/article2/0,1895,1773983,00.asp">http://www.eweek.com/article2/0,1895,1773983,00.asp</a><br><br>Which discusses the Vonage case, which was settled, and says
<br><br>&quot;A larger ongoing question is simply how VOIP will be viewed by the FCC, a<br>political organization where a majority of three votes is enough to enact<br>telecom policy into law, pending a review by U.S. District Court. The
<br>Telecommunications Act of 1934 plus the Telecommunications Act of 1996<br>serve as the FCC&#39;s &quot;constitution,&quot; the framework of legislation the agency<br>has to interpret and refine. If it goes too far, however, the FCC&#39;s work
<br>can become subject to judicial review and overturned.&quot;<br><br>In other words, what the FCC has jurisdiction over is governed by federal<br>law. It can change, of course. But right now, FCC isn&#39;t regulating VoIP.
<br><br>And by the way, a settled lawsuit means nothing in terms of setting legal<br>precedent.&nbsp;&nbsp;Don&#39;t ask me - ask a judge or attorney, they&#39;ll tell you the<br>same thing.<br><br>--<br>Steve Sobol, Professional Geek ** Java/VB/VC/PHP/Perl ** Linux/*BSD/Windows
<br>Victorville, California&nbsp;&nbsp;&nbsp;&nbsp; PGP:0xE3AE35ED<br><br>It&#39;s all fun and games until someone starts a bonfire in the living room.<br><br>_______________________________________________<br>--Bandwidth and Colocation provided by 
<a href="http://Easynews.com">Easynews.com</a> --<br><br>asterisk-users mailing list<br>To UNSUBSCRIBE or update options visit:<br>&nbsp;&nbsp; <a href="http://lists.digium.com/mailman/listinfo/asterisk-users">http://lists.digium.com/mailman/listinfo/asterisk-users
</a><br></blockquote></div><br>