Tomislav ParĨina
2006-Sep-20 23:27 UTC
[asterisk-users] Re: Can you explain why multiple registration isan important (missing) feature ?
In article <56a990d20609201923t6a3537a8j38ef2feb6e39d869@mail.gmail.com>, aspendora@gmail.com says...> Your definition in the sip.conf would be defining devices according to their > MAC addresses. Your dial plan would call these devices based on extensions. > > exten => 100,1,Dial(SIP/MAC) ; where MAC is the MAC address of the phoneAll right. Then I give to my girlfriend my number 1234567 and she calls me in, how will I know to which MAC address I need to pass call? -- Tomislav Par?ina Lama Computers Split Stinice 12, 21000 Split Tel.: +385(21)495148 Mob.: +385(91)1212148 SIP: tomo@pbx.lama.hr e-mail: tparcina#lama.hr http://www.lama.hr
Eric "ManxPower" Wieling
2006-Sep-21 04:33 UTC
[asterisk-users] Re: Can you explain why multiple registration isan important (missing) feature ?
Tomislav Par?ina wrote:> In article <56a990d20609201923t6a3537a8j38ef2feb6e39d869@mail.gmail.com>, aspendora@gmail.com says... >> Your definition in the sip.conf would be defining devices according to their >> MAC addresses. Your dial plan would call these devices based on extensions. >> >> exten => 100,1,Dial(SIP/MAC) ; where MAC is the MAC address of the phone > > All right. Then I give to my girlfriend my number 1234567 and she calls me in, how will I know to which MAC address I need to pass call?Perhaps you are tying to use wildcard destinations in your setup. This does not scale. Wildcard: exten => 1234567,1,Dial(SIP/${EXTEN}) This does not scale. Each extension should have it's own exten => line and Dial(... line. exten => 1234567,1,Dial(SIP/[0004f201e443-a) because 0004f201e443-a is the userid of the phone that you want to send the call to.