Re: [asterisk-users] multiple host in 1 context on sip.conf

2008-02-19 Thread Faruk Kasumovic
Mark Quitoriano wrote:


 On Sat, Feb 16, 2008 at 12:31 AM, Faruk Kasumovic 
 [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote:

 Johansson Olle E wrote:
  Hi Mark!
 
  13 feb 2008 kl. 23.42 skrev Mark Quitoriano:
 
 
  Is it possilble for a single context to have multiple host=
  something like this
 
  First context is something we use to describe a segment of the
  dialplan. I would call this section.
 
 
 
  [carrier]
  host=ip address1
  host=ip address2
  host=ip address3
  type=peer
  disallow=all
  allow=g729
  allow=ulaw
  canreinvite=no
  insecure=yes
  qualify=yes
 
 
  No. You can only add one.
 
 
 Yes You can, check this ticket
 http://bugs.digium.com/view.php?id=12005


 this is good if the ip addresses are on the same network. But what if 
 it has totally different networks?
Read about it you will surprise :)
http://www.voip-info.org/wiki/index.php?page=Asterisk+sip+permit-deny-mask


 

 ___
 -- Bandwidth and Colocation Provided by http://www.api-digital.com --

 asterisk-users mailing list
 To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users


___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] multiple host in 1 context on sip.conf

2008-02-15 Thread Faruk Kasumovic
Johansson Olle E wrote:
 Hi Mark!

 13 feb 2008 kl. 23.42 skrev Mark Quitoriano:

   
 Is it possilble for a single context to have multiple host=  
 something like this
 
 First context is something we use to describe a segment of the  
 dialplan. I would call this section.


   
 [carrier]
 host=ip address1
 host=ip address2
 host=ip address3
 type=peer
 disallow=all
 allow=g729
 allow=ulaw
 canreinvite=no
 insecure=yes
 qualify=yes
 

 No. You can only add one.

   
Yes You can, check this ticket
http://bugs.digium.com/view.php?id=12005
 ---
 * Olle E. Johansson - [EMAIL PROTECTED]
 * Asterisk Training http://edvina.net/training/




 ___
 -- Bandwidth and Colocation Provided by http://www.api-digital.com --

 asterisk-users mailing list
 To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users

   


___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] multiple host in 1 context on sip.conf

2008-02-15 Thread Mark Quitoriano
Hi Olle,

On Thu, Feb 14, 2008 at 5:35 PM, Johansson Olle E [EMAIL PROTECTED] wrote:

 Hi Mark!

 13 feb 2008 kl. 23.42 skrev Mark Quitoriano:

  Is it possilble for a single context to have multiple host=
  something like this
 First context is something we use to describe a segment of the
 dialplan. I would call this section.


 
 
  [carrier]
  host=ip address1
  host=ip address2
  host=ip address3
  type=peer
  disallow=all
  allow=g729
  allow=ulaw
  canreinvite=no
  insecure=yes
  qualify=yes

 No. You can only add one.

 Normally I would add host=sip.mydomain.com and have multiple DNS
 entries or use SRV records to do failover and such,
 provided you use this for outbound calls.

 Since you call this peer carrier I assume you want to handle inbound
 calls. Today, you will have to define three different
 peers, but remember that you can use templates.

 [carrier](!)
 type=peer
 disallow=all
 allow=g729
 allow=ulaw
 canreinvite=no
 insecure=yes
 qualify=yes

 [carrier-01](carrier)
 host=ip address1

 [carrier-02](carrier)
 host=ip address2

 [carrier-03](carrier)
 host=ip address3

 You will now have three peers named carrier-01-03 but no peer named
 carrier in your sip driver when you run sip show peers.


This looks interesting. Is there more documentation how to do this? And btw
in dialplan can i call this just simply SIP/carrier and all the 3 ip will be
used?


Thanks!
___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Re: [asterisk-users] multiple host in 1 context on sip.conf

2008-02-15 Thread Mark Quitoriano
On Sat, Feb 16, 2008 at 12:31 AM, Faruk Kasumovic [EMAIL PROTECTED]
wrote:

 Johansson Olle E wrote:
  Hi Mark!
 
  13 feb 2008 kl. 23.42 skrev Mark Quitoriano:
 
 
  Is it possilble for a single context to have multiple host=
  something like this
 
  First context is something we use to describe a segment of the
  dialplan. I would call this section.
 
 
 
  [carrier]
  host=ip address1
  host=ip address2
  host=ip address3
  type=peer
  disallow=all
  allow=g729
  allow=ulaw
  canreinvite=no
  insecure=yes
  qualify=yes
 
 
  No. You can only add one.
 
 
 Yes You can, check this ticket
 http://bugs.digium.com/view.php?id=12005


this is good if the ip addresses are on the same network. But what if it has
totally different networks?
___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Re: [asterisk-users] multiple host in 1 context on sip.conf

2008-02-14 Thread Johansson Olle E
Hi Mark!

13 feb 2008 kl. 23.42 skrev Mark Quitoriano:

 Is it possilble for a single context to have multiple host=  
 something like this
First context is something we use to describe a segment of the  
dialplan. I would call this section.




 [carrier]
 host=ip address1
 host=ip address2
 host=ip address3
 type=peer
 disallow=all
 allow=g729
 allow=ulaw
 canreinvite=no
 insecure=yes
 qualify=yes

No. You can only add one.

Normally I would add host=sip.mydomain.com and have multiple DNS  
entries or use SRV records to do failover and such,
provided you use this for outbound calls.

Since you call this peer carrier I assume you want to handle inbound  
calls. Today, you will have to define three different
peers, but remember that you can use templates.

[carrier](!)
type=peer
disallow=all
allow=g729
allow=ulaw
canreinvite=no
insecure=yes
qualify=yes

[carrier-01](carrier)
host=ip address1

[carrier-02](carrier)
host=ip address2

[carrier-03](carrier)
host=ip address3

You will now have three peers named carrier-01-03 but no peer named  
carrier in your sip driver when you run sip show peers.

Regards,
/Olle


---
* Olle E. Johansson - [EMAIL PROTECTED]
* Asterisk Training http://edvina.net/training/




___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


[asterisk-users] multiple host in 1 context on sip.conf

2008-02-13 Thread Mark Quitoriano
Is it possilble for a single context to have multiple host= something like
this

[carrier]
host=ip address1
host=ip address2
host=ip address3
type=peer
disallow=all
allow=g729
allow=ulaw
canreinvite=no
insecure=yes
qualify=yes

-- 
Regards,
Mark Quitoriano
http://asterisk.org.ph

Fan the flame...
http://www.spreadfirefox.com/?q=user/registerr=19441
___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users