Re: [asterisk-users] Busy out a zap channel?

2008-05-22 Thread Ricardo Cuevas
Carlos Chavez escribió:
>   Thank you.  Unfortunately the phone Company in Mexico is not very
> helpful when it comes to those services.  
>
> On Tue, 2008-05-20 at 16:48 -0500, Tilghman Lesher wrote:
>   
>> On Tuesday 20 May 2008 16:08:19 Carlos Chavez wrote:
>> 
>>> The problem is that I do not have physical access to the server.  The
>>> other problem with that solution is that the first person to dial the
>>> main number will always get a busy tone and only then can someone else
>>> get to another line.
>>>
>>> I need to leave the line offhook until further notice.
>>>   
>> Then you need to call the telco and request the line be taken out of service.
>> There is simply no other way that that could be done with an analog line.
>>
>> 
i'm a satisfied customer from Telmex (phone company in mexico), always 
they get my with a solution for every problem. mail me and I told you 
for how ask then for help.

Sorry by my poor english



___
-- 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] Busy out a zap channel?

2008-05-21 Thread Steve Totaro
On Tue, May 20, 2008 at 6:05 PM, Carlos Chavez <[EMAIL PROTECTED]> wrote:
>Thank you.  Unfortunately the phone Company in Mexico is not very
> helpful when it comes to those services.
>
> On Tue, 2008-05-20 at 16:48 -0500, Tilghman Lesher wrote:
>> On Tuesday 20 May 2008 16:08:19 Carlos Chavez wrote:
>> > The problem is that I do not have physical access to the server.  The
>> > other problem with that solution is that the first person to dial the
>> > main number will always get a busy tone and only then can someone else
>> > get to another line.
>> >
>> > I need to leave the line offhook until further notice.
>>
>> Then you need to call the telco and request the line be taken out of service.
>> There is simply no other way that that could be done with an analog line.
>>
> --
> Telecomunicaciones Abiertas de México S.A. de C.V.
> Carlos Chávez Prats
> Director de Tecnologìa
> +52-55-91169161 ext 2001
>
>

Just dialout from the console on that line to local time or something
that can be left offhook.

Thanks,
Steve Totaro
___
-- 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] Busy out a zap channel?

2008-05-21 Thread Jay R. Ashworth
On Tue, May 20, 2008 at 05:42:15PM -0300, Vin?cius Fontes wrote:
> You could simply short-circuit the two wires of the line. The telco
> will interpret that as a busy line.

Please

600 ohm, 1 watt wirewound resistor.  If it's on a short loop, you might
have to go as high as 5 watts.  POTS lines can drive a fair amount of
power, as you understand if you've ever dropped a 12" Crescent across a
-48VDC busbar.

Cheers,
-- jra
-- 
Jay R. Ashworth   Baylink  [EMAIL PROTECTED]
Designer The Things I Think   RFC 2100
Ashworth & Associates http://baylink.pitas.com '87 e24
St Petersburg FL USA  http://photo.imageinc.us +1 727 647 1274

 Those who cast the vote decide nothing.
 Those who count the vote decide everything.
   -- (Joseph Stalin)

___
-- 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] Busy out a zap channel?

2008-05-20 Thread Steve Edwards
On Tue, 20 May 2008, Carlos Chavez wrote:

>   Is there a way to busy out a Zap channel?  I have a customer who is
> having problems with a line connected to a TDM800 card and we would like
> to busy out that line.  Since that line is the head of the hunt group I
> cannot simply disable that channel, I need to busy the line so calls
> will come over the other lines.

Any chance the client could send somebody to the local equivalent of a 
RadioShack and buy a telephone extension cord? Something with a jack on 1 
end. Just snip off about 6 inches from the jack, strip off all of the 
insulation and twist all the wires together?

Thanks in advance,

Steve Edwards  [EMAIL PROTECTED]  Voice: +1-760-468-3867 PST
Newline Fax: +1-760-731-3000

___
-- 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] Busy out a zap channel?

2008-05-20 Thread C F
Just create an extension like this:
[busyoutline]
exten => 111,1,Answer()
exten => 111,n,Busy()

then drop a .call file like this:
Channel: Zap/1/111
 MaxRetries: 2
 RetryTime: 60
 WaitTime: 30
 Context: busyoutline
 Extension: 111
 Priority: 1

The above should work, however keep in mind if the telco will send a
CPC at any time during the off hook announcement, that the channel
will be terminated. If the line doesn't work, then this should work
perfectly.

When you want to hang this up just log into CLI and do the following
command (1.2.x not sure about 1.4.x): soft hangup Zap/1-1

Hope this works.

On Tue, May 20, 2008 at 4:33 PM, Carlos Chavez <[EMAIL PROTECTED]> wrote:
>Is there a way to busy out a Zap channel?  I have a customer who is
> having problems with a line connected to a TDM800 card and we would like
> to busy out that line.  Since that line is the head of the hunt group I
> cannot simply disable that channel, I need to busy the line so calls
> will come over the other lines.
>
> --
> Telecomunicaciones Abiertas de México S.A. de C.V.
> Carlos Chávez Prats
> Director de Tecnologìa
> +52-55-91169161 ext 2001
>
>
> ___
> -- 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] Busy out a zap channel?

2008-05-20 Thread Carlos Chavez
Thank you.  Unfortunately the phone Company in Mexico is not very
helpful when it comes to those services.  

On Tue, 2008-05-20 at 16:48 -0500, Tilghman Lesher wrote:
> On Tuesday 20 May 2008 16:08:19 Carlos Chavez wrote:
> > The problem is that I do not have physical access to the server.  The
> > other problem with that solution is that the first person to dial the
> > main number will always get a busy tone and only then can someone else
> > get to another line.
> >
> > I need to leave the line offhook until further notice.
> 
> Then you need to call the telco and request the line be taken out of service.
> There is simply no other way that that could be done with an analog line.
> 
-- 
Telecomunicaciones Abiertas de México S.A. de C.V.
Carlos Chávez Prats
Director de Tecnologìa
+52-55-91169161 ext 2001


___
-- 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] Busy out a zap channel?

2008-05-20 Thread Tilghman Lesher
On Tuesday 20 May 2008 16:08:19 Carlos Chavez wrote:
>   The problem is that I do not have physical access to the server.  The
> other problem with that solution is that the first person to dial the
> main number will always get a busy tone and only then can someone else
> get to another line.
>
>   I need to leave the line offhook until further notice.

Then you need to call the telco and request the line be taken out of service.
There is simply no other way that that could be done with an analog line.

-- 
Tilghman

___
-- 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] Busy out a zap channel?

2008-05-20 Thread Carlos Chavez
The problem is that I do not have physical access to the server.  The
other problem with that solution is that the first person to dial the
main number will always get a busy tone and only then can someone else
get to another line.

I need to leave the line offhook until further notice.

On Tue, 2008-05-20 at 17:42 -0300, Vinícius Fontes wrote:
> You could simply short-circuit the two wires of the line. The telco will 
> interpret that as a busy line.
> 
> Other than that, you could do this on extensions.conf:
> 
> [context]
> exten => s,1,Answer()
> exten => s,n,Busy()
> 
> 
> Att
> Vinícius Fontes
> Desenvolvimento
> Canall Tecnologia em Comunicações Ltda.
> 
> - "Carlos Chavez" <[EMAIL PROTECTED]> escreveu:
> 
> > Is there a way to busy out a Zap channel?  I have a customer who is
> > having problems with a line connected to a TDM800 card and we would
> > like
> > to busy out that line.  Since that line is the head of the hunt group
> > I
> > cannot simply disable that channel, I need to busy the line so calls
> > will come over the other lines.
> > 
> > --
> > Telecomunicaciones Abiertas de México S.A. de C.V.
> > Carlos Chávez Prats
> > Director de Tecnologìa
> > +52-55-91169161 ext 2001
> > 
> > 
> > ___
> > -- 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
-- 
Telecomunicaciones Abiertas de México S.A. de C.V.
Carlos Chávez Prats
Director de Tecnologìa
+52-55-91169161 ext 2001


___
-- 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] Busy out a zap channel?

2008-05-20 Thread Vinícius Fontes
You could simply short-circuit the two wires of the line. The telco will 
interpret that as a busy line.

Other than that, you could do this on extensions.conf:

[context]
exten => s,1,Answer()
exten => s,n,Busy()


Att
Vinícius Fontes
Desenvolvimento
Canall Tecnologia em Comunicações Ltda.

- "Carlos Chavez" <[EMAIL PROTECTED]> escreveu:

> Is there a way to busy out a Zap channel?  I have a customer who is
> having problems with a line connected to a TDM800 card and we would
> like
> to busy out that line.  Since that line is the head of the hunt group
> I
> cannot simply disable that channel, I need to busy the line so calls
> will come over the other lines.
> 
> --
> Telecomunicaciones Abiertas de México S.A. de C.V.
> Carlos Chávez Prats
> Director de Tecnologìa
> +52-55-91169161 ext 2001
> 
> 
> ___
> -- 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