[Freeswitch-users] Outbound Call (No Registration)

Frank Carmickle frank at carmickle.com
Mon Feb 1 11:34:59 PST 2010


On Mon, Feb 01, RR wrote:
> Hi Folks,
> 
>  
> 
> As I continue to learn configuring FS, I am trying to use FS as a peering
> switch sending a call to our SBC on the other side of the pond (across the
> pacific) where the IP address of the FS (in the US) is configured to receive
> traffic from. In this case no registration is required by the sending
> gateway to make calls through the system overseas as its IP address is in
> the "known" gateways (ACL) list. 
> 

I allowed calls in to my pbx from a specific ip in the dialplan with out an acl or a gateway by putting a statement like

  <extension name="fjc-pbx-inbound">
  <condition field="network_addr" expression="^2001\:470\:XXXX\:XXXX\:X:X\:X\:X$"/>
    <condition field="destination_number" expression="^(.*)$">
      <action application="transfer" data="$1 xml default"/>
    </condition>
  </extension>

in the public section of the dialplan.  In this example you see that it is a ipv6 address.  This could easily be replaced with a ipv4 address like the level3 address 4.3.2.1.

There are other ways to do this with a gateway if you so choose.

--FC




More information about the FreeSWITCH-users mailing list