On Wed, Aug 6, 2008 at 1:00 AM, Roberto Hernandez <[EMAIL PROTECTED]> wrote:

>
>
> Anyone have suggestions on how to the enable the following scenario?  Allow
> internal but control external per user.
>
> More importantly how to disable or enable PSTN access for a specific user
> in a domain (profile)?
>
>
>
> [EMAIL PROTECTED] <--> FS <--> Allowed PSTN
>
> [EMAIL PROTECTED] <--> FS <--> [EMAIL PROTECTED]
>
>
>
> [EMAIL PROTECTED] <--> FS <--> Not Allowed PSTN
>
> [EMAIL PROTECTED] <--> FS <--> [EMAIL PROTECTED]
>
>
Hi Roberto,

I'm real new at FS so there may well be a better way of doing this. Anyway,
I've got a similar need to you (office phones can dial PSTN, remote logged
in users cannot) and I want to use the same context for both. My idea was to
use something similar to this:

(taken from http://wiki.freeswitch.org/wiki/Dialplan_XML#Example_1)

<extension name="DialPSTN">
  <condition field="destination_number" expression="^9(\d+)$"/>
  <condition field="network_addr" expression="^192\.168\.1\.\d{1,3}$"/>
    <action application="bridge" data="sofia/gateway/external/$1"/>
    <anti-action ... (play a sound file saying "invalid extension"??) />
  </condition>
</extension>

So, as you can see, if the network address of the user matches 192.168.1.*,
then bridge away. Otherwise, do something else or simply remove the
anti-action line. Does this suit your needs?

- Gonzalo
_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org

Reply via email to