Difference between revisions of "Freeswitch under NAT"

From Kolmisoft Wiki
Jump to navigationJump to search
(Created page with 'If your M2 box is under NAT, you should edit ''/usr/local/freeswitch/conf/sip_profiles/external.xml '' file (find these lines in file): <param name="ext-rtp-ip" value="auto-nat…')
 
Line 5: Line 5:




And change 'auto-nat' to your real external IP, for example, if your '''external IP''' is 1.2.3.4, these lines should look like this::
And change 'auto-nat' to your real external IP, for example, if your '''external IP''' is 1.2.3.4, these lines should look like this:


  <param name="ext-rtp-ip" value="1.2.3.4"/>
  <param name="ext-rtp-ip" value="1.2.3.4"/>
  <param name="ext-sip-ip" value="1.2.3.4"/>
  <param name="ext-sip-ip" value="1.2.3.4"/>


Forward SIP ports (UDP 5060, 10000-20000) on your firewall to this Freeswitch machine.
Forward SIP and RTP ports (UDP 5060, 10000-20000) on your firewall to this Freeswitch machine.


Restart Freeswitch:
Restart Freeswitch:


  service freeswitch restart
  service freeswitch restart

Revision as of 08:49, 28 December 2015

If your M2 box is under NAT, you should edit /usr/local/freeswitch/conf/sip_profiles/external.xml file (find these lines in file):

<param name="ext-rtp-ip" value="auto-nat"/>
<param name="ext-sip-ip" value="auto-nat"/>


And change 'auto-nat' to your real external IP, for example, if your external IP is 1.2.3.4, these lines should look like this:

<param name="ext-rtp-ip" value="1.2.3.4"/>
<param name="ext-sip-ip" value="1.2.3.4"/>

Forward SIP and RTP ports (UDP 5060, 10000-20000) on your firewall to this Freeswitch machine.

Restart Freeswitch:

service freeswitch restart