one short question: Is it possible for the zaptel driver to deal with multiple phone numbers on one single E1 PRI line?
I could make my carrier route +49 xxx aaaaa-zzz and +49 xxx bbbbb-zzz and others down one single PRI trunk to our asterisk box terminating in a Digium TE410P.
Does the driver handle this and can I put calls coming in all on the same physical interface put into different contexts based on the dialed prefix?
Yes, it's very easy, all that will work out-of-the-box. For example:
[default] exten => _4966677777XXX,Goto(one,s,1) exten => _4966688888XXX,Goto(two,s,1)
[one] exten => s,1,Playback(hello)
[two] exten => s,1,Playback(bonjour)
Regards,
Alastair _______________________________________________ Asterisk-Users mailing list [EMAIL PROTECTED] http://lists.digium.com/mailman/listinfo/asterisk-users To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-users
