Apparently Verizon is blocking or changing packets on port 5060 so my softphone from my hotspot will not work. How do I set asterisk (11.23.0) to run default 5060 for all other devices I have - BUT for my software run on a different port like 5070? I'm using linphone and is easy to change the ports from 5060 to 5070 ( I think). Thanks, Jerry -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20161014/116521bc/attachment.html>
They don't like competition ;) On Fri, Oct 14, 2016 at 9:55 AM, Jerry Geis <geisj at pagestation.com> wrote:> Apparently Verizon is blocking or changing packets on port 5060 so my > softphone from my hotspot will not work. > > How do I set asterisk (11.23.0) to run default 5060 for all other devices > I have - BUT for my software run on a different port like 5070? I'm using > linphone and is easy to change the ports from 5060 to 5070 ( I think). > > Thanks, > > Jerry > > -- > _____________________________________________________________________ > -- Bandwidth and Colocation Provided by http://www.api-digital.com -- > > Join the Asterisk Community at the 13th AstriCon, September 27-29, 2016 > http://www.asterisk.org/community/astricon-user-conference > > New to Asterisk? Start here: > https://wiki.asterisk.org/wiki/display/AST/Getting+Started > > asterisk-users mailing list > To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users >-------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20161014/a359906b/attachment.html>
iptables -t nat -A PREROUTING -i inboundinterface -s sourceip -d destinationip -p udp --dport 5070 -j DNAT --to destinationip:5060 Or something similar. You may however found that the provider's filtering is application based rather than port based. -- Sent from my cellphone.
On Fri, Oct 14, 2016 at 7:55 AM, Jerry Geis <geisj at pagestation.com> wrote:> Apparently Verizon is blocking or changing packets on port 5060 so my > softphone from my hotspot will not work. >Sounds like you are another victim of SIP ALG. I ended up having to change to a VOIP provider that would allow me to use IAX instead of SIP because there was no way to disable SIP ALG on my Xfinity router: http://www.whichvoip.com/disable-sip-alg.htm --Greg -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20161014/3cdf3b15/attachment.html>
Changing your port should fix all your worries. On Fri, Oct 14, 2016 at 11:00 AM, Greg Woods <greg at gregandeva.net> wrote:> > > On Fri, Oct 14, 2016 at 7:55 AM, Jerry Geis <geisj at pagestation.com> wrote: > >> Apparently Verizon is blocking or changing packets on port 5060 so my >> softphone from my hotspot will not work. >> > > Sounds like you are another victim of SIP ALG. I ended up having to change > to a VOIP provider that would allow me to use IAX instead of SIP because > there was no way to disable SIP ALG on my Xfinity router: > > http://www.whichvoip.com/disable-sip-alg.htm > > --Greg > > -- > _____________________________________________________________________ > -- Bandwidth and Colocation Provided by http://www.api-digital.com -- > > Join the Asterisk Community at the 13th AstriCon, September 27-29, 2016 > http://www.asterisk.org/community/astricon-user-conference > > New to Asterisk? Start here: > https://wiki.asterisk.org/wiki/display/AST/Getting+Started > > asterisk-users mailing list > To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users >-------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20161014/fc722b0d/attachment.html>