Re: [asterisk-users] ZapRAS priviledge error

2010-01-05 Thread Will Payne

Another day, another error..

Am now getting:

Plugin zaptel.so loaded.
Zaptel Plugin Initialized
Using zaptel device 'stdin'
Zaptel device is 'stdin'
Unable to put device 'stdin' into HDLC mode


Should ZapRAS see the channel as stdin and not /dev/zap/x?

Will



On 4 Jan 2010, at 16:46, Will Payne wrote:

 
 On 4 Jan 2010, at 16:28, Kevin P. Fleming wrote:
 
 Will Payne wrote:
 
 I'm looking to periodically nudge Asterisk into making an ISDN
 connection, setting up PPP and then (possibly by then starting an AGI
 script) grabbing a file by FTP over the PPP link.
 
 If I'm overcomplicating it or going about it completely the wrong way, a
 point in the right direction would be nice :)
 
 It is doubtful you'll be able to accomplish that, certainly not without
 some seriously ugly hacking. First off, I don't think that PPPD will
 even be invoked with the proper arguments for it to be the 'client' end
 of the connection, but even if it is, the Asterisk dialplan will halt
 execution until PPPD returns, so there's no way you are going to be able
 to execute an AGI or System() or anything to take actions over the PPP link.
 
 Unfortunately, an ugly hack might have to do..
 
 Params - should be able to work around this, even if I have to use a wrapper.
 
 PPPD halting the dialplan - I'll fork off a different process to watch for a 
 connection and make the transfer. I can just tell pppd to connect for a 
 minimum of 'x' seconds and then let Asterisk hang up.
 
 .. which still leaves me in the same position of wondering why I'm getting 
 this Device 'stdin' does not appear to be a zaptel device error...
 
 Will
 
 
 
 ___
 -- 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


[asterisk-users] ZapRAS priviledge error

2010-01-04 Thread Will Payne

Hi,

I'm trying to get ZapRAS working but not getting very far..

Asterisk CLI shows:
WARNING[3355]: app_zapras.c:173 run_ras: wait4 returned -1: No child processes

and /var/log/messages shows:
using the plugin option requires root privilege


Can anyone shed any light on this and any fix? Googling the error doesn't find 
much..
I'm not sure what 'plugin' it is talking about, I'm not passing any plugin 
option to zapras..

Ta,
Will
___
-- 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] ZapRAS priviledge error

2010-01-04 Thread Kevin P. Fleming
Will Payne wrote:

 I'm trying to get ZapRAS working but not getting very far..
 
 Asterisk CLI shows:
 WARNING[3355]: app_zapras.c:173 run_ras: wait4 returned -1: No child processes
 
 and /var/log/messages shows:
 using the plugin option requires root privilege
 
 
 Can anyone shed any light on this and any fix? Googling the error doesn't 
 find much..
 I'm not sure what 'plugin' it is talking about, I'm not passing any plugin 
 option to zapras..

ZapRAS forks off to pppd to handle the PPP session, it does not
implement PPP itself. You will have to be running Asterisk as root for
this to work, or provide a wrapper for pppd that ZapRAS can execute with
the suid bit set so that pppd runs with root privileges.

-- 
Kevin P. Fleming
Digium, Inc. | Director of Software Technologies
445 Jan Davis Drive NW - Huntsville, AL 35806 - USA
skype: kpfleming | jabber: kpflem...@digium.com
Check us out at www.digium.com  www.asterisk.org

___
-- 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] ZapRAS priviledge error

2010-01-04 Thread Will Payne

On 4 Jan 2010, at 13:48, Kevin P. Fleming wrote:
 
 ZapRAS forks off to pppd to handle the PPP session, it does not
 implement PPP itself. You will have to be running Asterisk as root for
 this to work, or provide a wrapper for pppd that ZapRAS can execute with
 the suid bit set so that pppd runs with root privileges.

OK.. I'd tried to setuid pppd so had wondered if it was just permissions. 

Now have pppd apparently starting correctly but am now getting:

Jan  4 16:07:15 asterisk pppd[29485]: Plugin zaptel.so loaded.
Jan  4 16:07:15 asterisk pppd[29485]: Zaptel Plugin Initialized
Jan  4 16:07:15 asterisk pppd[29485]: Using zaptel device 'stdin' 
Jan  4 16:07:15 asterisk pppd[29485]: pppd 2.4.4 started by root, uid 0
Jan  4 16:07:15 asterisk pppd[29485]: Zaptel device is 'stdin' 
Jan  4 16:07:15 asterisk pppd[29485]: Device 'stdin' does not appear to be a 
zaptel device 
Jan  4 16:07:15 asterisk pppd[29485]: Exit.


..which is probably just because I'm doing something stupid (I've never touched 
PPP on linux and am still figuring asterisk out..)

I'd tried initiating a call using:
originate ZAP/g0d/0xx application ZapRas xx|xx|xx...

Will this work?

I'm looking to periodically nudge Asterisk into making an ISDN connection, 
setting up PPP and then (possibly by then starting an AGI script) grabbing a 
file by FTP over the PPP link.

If I'm overcomplicating it or going about it completely the wrong way, a point 
in the right direction would be nice :)

Will___
-- 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] ZapRAS priviledge error

2010-01-04 Thread Kevin P. Fleming
Will Payne wrote:

 I'm looking to periodically nudge Asterisk into making an ISDN
 connection, setting up PPP and then (possibly by then starting an AGI
 script) grabbing a file by FTP over the PPP link.
 
 If I'm overcomplicating it or going about it completely the wrong way, a
 point in the right direction would be nice :)

It is doubtful you'll be able to accomplish that, certainly not without
some seriously ugly hacking. First off, I don't think that PPPD will
even be invoked with the proper arguments for it to be the 'client' end
of the connection, but even if it is, the Asterisk dialplan will halt
execution until PPPD returns, so there's no way you are going to be able
to execute an AGI or System() or anything to take actions over the PPP link.

-- 
Kevin P. Fleming
Digium, Inc. | Director of Software Technologies
445 Jan Davis Drive NW - Huntsville, AL 35806 - USA
skype: kpfleming | jabber: kpflem...@digium.com
Check us out at www.digium.com  www.asterisk.org

___
-- 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] ZapRAS priviledge error

2010-01-04 Thread Will Payne

On 4 Jan 2010, at 16:28, Kevin P. Fleming wrote:

 Will Payne wrote:
 
 I'm looking to periodically nudge Asterisk into making an ISDN
 connection, setting up PPP and then (possibly by then starting an AGI
 script) grabbing a file by FTP over the PPP link.
 
 If I'm overcomplicating it or going about it completely the wrong way, a
 point in the right direction would be nice :)
 
 It is doubtful you'll be able to accomplish that, certainly not without
 some seriously ugly hacking. First off, I don't think that PPPD will
 even be invoked with the proper arguments for it to be the 'client' end
 of the connection, but even if it is, the Asterisk dialplan will halt
 execution until PPPD returns, so there's no way you are going to be able
 to execute an AGI or System() or anything to take actions over the PPP link.

Unfortunately, an ugly hack might have to do..

Params - should be able to work around this, even if I have to use a wrapper.

PPPD halting the dialplan - I'll fork off a different process to watch for a 
connection and make the transfer. I can just tell pppd to connect for a minimum 
of 'x' seconds and then let Asterisk hang up.

.. which still leaves me in the same position of wondering why I'm getting this 
Device 'stdin' does not appear to be a zaptel device error...

Will



___
-- 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] ZapRAS, pppd plugin option

2008-04-23 Thread Etienne Pretorius
Hello list,

I would like to know if anyone could suggest a possible solution to 
getting the ZapRAS command to execute properly. It seems that even with 
suid-root on the pppd binary that the spawned process is still not 
allowed to load the plugin. When I place to option within 
/etc/ppp/options then it loads but asterisk tries to load it again.

Apr 23 15:58:00 juno pppd[4869]: using the plugin option requires root 
privilege
(After editing /etc/ppp/options)
Apr 23 15:59:56 juno pppd[5032]: Plugin /usr/lib/pppd/2.4.1b2/zaptel.so 
loaded.
Apr 23 15:59:56 juno pppd[5032]: Zaptel Plugin Initialized
Apr 23 15:59:56 juno pppd[5032]: Using zaptel device '64000'
Apr 23 15:59:56 juno pppd[5032]: using the plugin option requires root 
privilege

[Apr 23 15:59:56] VERBOSE[5031] logger.c: -- Executing 
[EMAIL PROTECTED]:1] NoOp(Zap/6-1, Entering from-zaptel with DID == 
9602) in new stack
[Apr 23 15:59:56] VERBOSE[5031] logger.c: -- Executing 
[EMAIL PROTECTED]:2] Ringing(Zap/6-1, ) in new stack
[Apr 23 15:59:56] VERBOSE[5031] logger.c: -- Executing 
[EMAIL PROTECTED]:3] Answer(Zap/6-1, ) in new stack
[Apr 23 15:59:56] VERBOSE[5031] logger.c: -- Executing 
[EMAIL PROTECTED]:4] ZapRAS(Zap/6-1, 
debug|64000|auth|-chap|+pap|netmask|255.255.255.0|192.168.10.2:192.168.10.1) 
in new stack
[Apr 23 15:59:56] VERBOSE[5031] logger.c: -- Starting RAS on Zap/6-1
[Apr 23 15:59:56] WARNING[5031] app_zapras.c: wait4 returned -1: No 
child processes
[Apr 23 15:59:56] VERBOSE[5031] logger.c: -- RAS on Zap/6-1 
terminated with signal 59
[Apr 23 15:59:56] VERBOSE[5031] logger.c:   == Spawn extension 
(from-zaptel, s, 4) exited non-zero on 'Zap/6-1'
[Apr 23 15:59:56] DEBUG[5031] chan_zap.c: Set option AUDIO MODE, value: 
ON(1) on Zap/6-1
[Apr 23 15:59:56] DEBUG[5031] chan_zap.c: Not yet hungup...  Calling 
hangup once with icause, and clearing call
[Apr 23 15:59:56] DEBUG[5031] chan_zap.c: Set option AUDIO MODE, value: 
OFF(0) on Zap/6-1
[Apr 23 15:59:56] VERBOSE[5031] logger.c: -- Hungup 'Zap/6-1'

[EMAIL PROTECTED]:~] ls -hal /usr/sbin/pppd
-r-sr-s--- 1 root dialout 178K 2008-04-23 06:09 /usr/sbin/pppd
[EMAIL PROTECTED]:~] grep asterisk /etc/group
dialout:x:20:asterisk
asterisk:x:1001:
[EMAIL PROTECTED]:~] ps aux | grep asterisk
asterisk  4785  1.0  0.4  22072  9164 ?Ssl  15:57   0:08 
/usr/sbin/asterisk -p -U asterisk
root  5674  0.0  0.0   3060   700 pts/1R+   16:10   0:00 grep 
asterisk

-- 

Kind Regards

Etienne Pretorius


___
-- 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] ZapRAS

2006-07-24 Thread Giordano Grandis



Hi 
all,
I'm trying the 
ZapRAS application and I followed this giude. Could it work with an HFC pci isdn 
card? I tryied and i get this error:

*CLI -- Executing Answer("Zap/1-1", "") in 
new stack -- Accepting data call from '123456789' to 
'987654321' on channel 0/1, span 1 -- Executing 
ZapRAS("Zap/1-1", 
"debug|64000|noauth|netmask|255.255.255.0|192.168.0.2:192.168.0.1") in new 
stack -- Starting RAS on Zap/1-1Plugin zaptel.so 
loaded.Zaptel Plugin InitializedUsing zaptel device 'stdin'Zaptel 
device is 'stdin'Unable to put device 'stdin' into HDLC modeJul 24 
16:27:59 WARNING[1441]: app_zapras.c:149 run_ras: wait4 returned -1: No child 
processes -- RAS on Zap/1-1 terminated with signal 
116 == Spawn extension (incoming,123456789, 2) exited non-zero on 
'Zap/1-1' -- Hungup 'Zap/1-1'

Anyone can help me 
?

Thanks in 
advance

Giordano
___
--Bandwidth and Colocation provided by Easynews.com --

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


[asterisk-users] zapRAS

2006-07-12 Thread Ever Zalazar



Hi people!Anyone have used zapRAS? It's 
possible to mount an asterisk with zapRAS and give internet service to some 
customers?


Best Regards


Ever
___
--Bandwidth and Colocation provided by Easynews.com --

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


[Asterisk-Users] ZapRas

2006-02-10 Thread Giordano Grandis



Hi 
all,
could ZapRas work on 
system with a HFC isdn card?

Tnaks






Giordano 

___
--Bandwidth and Colocation provided by Easynews.com --

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


I: [Asterisk-Users] ZapRas

2006-02-10 Thread Giordano Grandis



And about app_pppd, could it work with bristuff 
?

Thanks

Giordano

Da: [EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED] Per conto di Giordano 
GrandisInviato: venerdì 10 febbraio 2006 17.44A: Asterisk 
Users Mailing List - Non-Commercial DiscussionOggetto: 
[Asterisk-Users] ZapRas

Hi 
all,
could ZapRas work on 
system with a HFC isdn card?

Tnaks






Giordano 

___
--Bandwidth and Colocation provided by Easynews.com --

Asterisk-Users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users
___
--Bandwidth and Colocation provided by Easynews.com --

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


[Asterisk-Users] ZapRAS

2005-06-22 Thread Daniel Nyström

I'm trying to use ZapRAS to enable ppp connection through my E1.
After the ZapRAS command is executed, all sound is crappy on all lines!
The only solution is to reboot the machine (or halt it, and then power 
it on since Digium's hardware doesn't like reboots).

Anyone know how this can happen?!
I'm using * 1.0.6 on Dell PowerEdge 1850 which are told (too late 
though) not to work very well, but should that really be the problem 
with ZapRAS?!

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


Re: [Asterisk-Users] ZapRAS

2005-06-22 Thread Jason McAffee
Daniel,
  we have the same problem when our PRI line drops and Zapras has to
reconnect.  You will also notice that the pppd process does not die
when Zapras does and the ppp connection cannot re-establish itself. 
What we normally do is restart asterisk and then kill the pppd process
with the command:  killall -9 pppd.
How much of your resources does the pppd process take up when Zapras executes?
Maybe try making pppd a lower priority than asterisk. 
Double check your configuration and make sure that you've done all
that you needed to in order to properly setup zapras.  go to digiums
website and look at documentation.


On 6/22/05, Daniel Nyström [EMAIL PROTECTED] wrote:
 I'm trying to use ZapRAS to enable ppp connection through my E1.
 After the ZapRAS command is executed, all sound is crappy on all lines!
 The only solution is to reboot the machine (or halt it, and then power
 it on since Digium's hardware doesn't like reboots).
 Anyone know how this can happen?!
 I'm using * 1.0.6 on Dell PowerEdge 1850 which are told (too late
 though) not to work very well, but should that really be the problem
 with ZapRAS?!
 --
 Daniel
 ___
 Asterisk-Users mailing list
 Asterisk-Users@lists.digium.com
 http://lists.digium.com/mailman/listinfo/asterisk-users
 To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

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


[Asterisk-Users] ZapRAS with BRI

2005-01-06 Thread Niksa Baldun
Hello,

I am using * with latest bristuff. I tried to make use of ZapRAS
application (with the little or no documentation available), but I get
the following error when trying to establish RAS connection:

app_zapras.c:149 run_ras: wait4 returned -1: No child processes

Anyone has an idea what this means?
___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] ZapRAS with BRI

2005-01-06 Thread Steven Critchfield
On Thu, 2005-01-06 at 18:10 +, Niksa Baldun wrote:
 Hello,
 
 I am using * with latest bristuff. I tried to make use of ZapRAS
 application (with the little or no documentation available), but I get
 the following error when trying to establish RAS connection:
 
 app_zapras.c:149 run_ras: wait4 returned -1: No child processes
 
 Anyone has an idea what this means?

My guess is that you are having trouble with the PPP daemon. If you
patched and installed your own PPPD like I remember the limited docs
saying to do, it may not be in /usr/sbin/pppd like is compiled into the
app. It is likely it is in /usr/local/sbin/pppd.

Just to help out also, here was the line we used when testing and
actually brought it up with an ISDN Ascend Pipeline router calling into
asterisk.

;exten = 
9022,1,ZapRas(debug|64000|noauth|netmask|255.255.255.0|192.168.10.1:192.168.10.2)


-- 
Steven Critchfield [EMAIL PROTECTED]

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


Re: [Asterisk-Users] ZapRAS with BRI

2005-01-06 Thread Niksa Baldun




Thanks, that was it. Now I can accept incoming RAS connections. But,
what about outgoing connections? Is it possible to make * behave like
ISDN router, i.e. have it establish a connection when someone on the
LAN requests specific IP address?

Thanks again.

Steven Critchfield wrote:

  On Thu, 2005-01-06 at 18:10 +, Niksa Baldun wrote:
  
  
Hello,

I am using * with latest bristuff. I tried to make use of ZapRAS
application (with the little or no documentation available), but I get
the following error when trying to establish RAS connection:

app_zapras.c:149 run_ras: wait4 returned -1: No child processes

Anyone has an idea what this means?

  
  
My guess is that you are having trouble with the PPP daemon. If you
patched and installed your own PPPD like I remember the limited docs
saying to do, it may not be in /usr/sbin/pppd like is compiled into the
app. It is likely it is in /usr/local/sbin/pppd.

Just to help out also, here was the line we used when testing and
actually brought it up with an ISDN Ascend Pipeline router calling into
asterisk.

;exten = 9022,1,ZapRas(debug|64000|noauth|netmask|255.255.255.0|192.168.10.1:192.168.10.2)


  




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

Re: [Asterisk-Users] ZapRAS with BRI

2005-01-06 Thread Steven Critchfield
On Thu, 2005-01-06 at 22:05 +, Niksa Baldun wrote:
 Thanks, that was it. Now I can accept incoming RAS connections. But,
 what about outgoing connections? Is it possible to make * behave like
 ISDN router, i.e. have it establish a connection when someone on the
 LAN requests specific IP address?

This would be a bit harder. Start with detecting when the route is down
and the specific IP needs to come up. If you can detect that, then you
just need to drop an appropriate .call file and it will dial out and
connect. 

I'm assuming this is all in an attempt to do dial on demand out to
remote locations. I'm not sure how to do the detect you need to route so
fire a script.

-- 
Steven Critchfield [EMAIL PROTECTED]

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


Re: [Asterisk-Users] ZapRAS with BRI

2005-01-06 Thread Niksa Baldun




I figured it would be something like that. Well, at least I have
something to work on.

Thanks again.


Steven Critchfield wrote:

  On Thu, 2005-01-06 at 22:05 +, Niksa Baldun wrote:
  
  
Thanks, that was it. Now I can accept incoming RAS connections. But,
what about outgoing connections? Is it possible to make * behave like
ISDN router, i.e. have it establish a connection when someone on the
LAN requests specific IP address?

  
  
This would be a bit harder. Start with detecting when the route is down
and the specific IP needs to come up. If you can detect that, then you
just need to drop an appropriate .call file and it will dial out and
connect. 

I'm assuming this is all in an attempt to do dial on demand out to
remote locations. I'm not sure how to do the detect you need to route so
fire a script.

  




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

Re: [Asterisk-Users] ZapRAS from both sides

2004-10-22 Thread Ulexus
Okay, it turns out I was being stupid.  ZapRAS does not automatically 
answer the channel, so, the PRI_NET side below should have read:

PRI_NET side
--
extensions.conf:
[incoming]
  exten = 6999,1,Answer
  exten = 
6999,2,ZapRas(debug|64000|noauth|multilink|netmask|255.255.255.0|192.168.10.2:192.168.10.1)

I have added this as a note to the Wiki: 
http://www.voip-info.org/tiki-index.php?page=Asterisk+cmd+ZapRAS

Ulexus wrote:
I am flailing around here trying to make ZapRAS function reliably with 
an asterisk box on both sides.  My interpretation of the documentation 
and the wiki is as follows:

PRI_CPE side
---
zapata.conf:
  minunused=2
  minidle=1
  idledial=6999
  [EMAIL PROTECTED]
extensions.conf:
[idle]
exten = 6999,1,ZapRas(debug|64000|noauth|multilink|
netmask|255.255.255.0|192.168.10.1:192.168.10.2)
PRI_NET side
--
extensions.conf:
[incoming]
  exten = 6999,1,ZapRas(debug|64000|noauth|multilink|
netmask|255.255.255.0|192.168.10.2:192.168.10.1)
This would seem to be reasonable:  The cpe side dials out 6999 on the 
PRI, which goes to 6999 on the net side, which starts pppd on the net 
side.  Then, cpe side sends the call to [EMAIL PROTECTED], where pppd is started 
on the cpe side.

The only problem is, this doesn't work.  The cpe side never starts pppd. 
   I can see the net side starting it for every channel that the cpe 
calls, but it eventually times out, receiving no packets from the cpe side.

This does not seem to be a fluke of configuration, since, if I change 
nothing but the side with the idledial,minused,minidle,idleext stuff, 
the same things happens in reverse.

Even more frustratingly, if I configure both sides identically (except 
for the IP addresses reversed, of course), it sometimes works.  Most of 
the time in this scenario, though, I get what appears to be a race 
condition (as I would expect), and the D channel goes up and down, 
ZapRAS spews calls everywhere, and nothing connects.  However, this is 
the only configuration I have yet tried that at least _sometimes_ works.

Can anyone shed any light on this process?
Thanks,
--
Ulexus
[EMAIL PROTECTED]
___
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
___
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


[Asterisk-Users] ZapRAS from both sides

2004-10-18 Thread Ulexus
I am flailing around here trying to make ZapRAS function reliably with 
an asterisk box on both sides.  My interpretation of the documentation 
and the wiki is as follows:

PRI_CPE side
---
zapata.conf:
  minunused=2
  minidle=1
  idledial=6999
  [EMAIL PROTECTED]
extensions.conf:
[idle]
exten = 6999,1,ZapRas(debug|64000|noauth|multilink|
netmask|255.255.255.0|192.168.10.1:192.168.10.2)
PRI_NET side
--
extensions.conf:
[incoming]
  exten = 6999,1,ZapRas(debug|64000|noauth|multilink|
netmask|255.255.255.0|192.168.10.2:192.168.10.1)
This would seem to be reasonable:  The cpe side dials out 6999 on the 
PRI, which goes to 6999 on the net side, which starts pppd on the net 
side.  Then, cpe side sends the call to [EMAIL PROTECTED], where pppd is started 
on the cpe side.

The only problem is, this doesn't work.  The cpe side never starts pppd. 
   I can see the net side starting it for every channel that the cpe 
calls, but it eventually times out, receiving no packets from the cpe side.

This does not seem to be a fluke of configuration, since, if I change 
nothing but the side with the idledial,minused,minidle,idleext stuff, 
the same things happens in reverse.

Even more frustratingly, if I configure both sides identically (except 
for the IP addresses reversed, of course), it sometimes works.  Most of 
the time in this scenario, though, I get what appears to be a race 
condition (as I would expect), and the D channel goes up and down, 
ZapRAS spews calls everywhere, and nothing connects.  However, this is 
the only configuration I have yet tried that at least _sometimes_ works.

Can anyone shed any light on this process?
Thanks,
--
Ulexus
[EMAIL PROTECTED]
___
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


[Asterisk-Users] zapras - and kernel ??

2004-07-15 Thread Hans-Henrik Andresen
Hi,

I'm trying to get zapras do work, I had downloaded the pppd-source and the 2
patches.

I succefull compiled and install the patched version of pppd, but got this
error in message-log

Jul 15 11:43:32 voip1 pppd[9296]: In file /etc/ppp/filters: unrecognized
option 'active-filter'
Jul 15 11:43:57 voip1 pppd[9299]: Plugin zaptel.so loaded.
Jul 15 11:43:57 voip1 pppd[9299]: Zaptel Plugin Initialized
Jul 15 11:43:57 voip1 pppd[9299]: Using zaptel device 'stdin'
Jul 15 11:43:57 voip1 pppd[9299]: pppd 2.4.1b2 started by root, uid 0
Jul 15 11:43:57 voip1 pppd[9299]: Zaptel device is 'stdin'
Jul 15 11:43:57 voip1 pppd[9299]: Unable to put device 'stdin' into HDLC
mode
Jul 15 02:43:57 voip1 kernel: Zaptel: Zaptel PPP support not compiled in
Jul 15 11:43:57 voip1 pppd[9299]: Exit.


It's thrue, I have'nt pathced and compiled the kernel, but Can't find
anything about it - no reademe.

Any clue ? or any how-to for the zapras ?


-- 
mvh. Hans-Henrik Andresen
--
Telefon for en flad 20'er - www.telefin.dk
--



___
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


Re: [Asterisk-Users] zapras - and kernel ??

2004-07-15 Thread Steven Critchfield
On Thu, 2004-07-15 at 04:53, Hans-Henrik Andresen wrote:

 Jul 15 02:43:57 voip1 kernel: Zaptel: Zaptel PPP support not compiled in

 It's thrue, I have'nt pathced and compiled the kernel, but Can't find
 anything about it - no reademe.

The source code is your friend. Learning to use grep and at least
slugging through the code is important. 

grep PPP /usr/src/zaptel

This produces some interesting lines. From there you will see come
entries in zaconfig.h that hav CONFIG in them. Granted you might need
some kernel knowledge to make the jump to the fact that your kernel has
the CONFIG_PPP. So config your kernel and install it, reboot to your new
kernel, and then reconfig your zaptel drivers and get them loaded.
-- 
Steven Critchfield [EMAIL PROTECTED]

___
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


Re: [Asterisk-Users] zapras how to

2004-06-01 Thread denz-infotechs
That prob is solved here's latest problem,

== /var/log/messages ==
Jun  1 15:44:11 RAS pppd[1019]: Plugin zaptel.so loaded.
Jun  1 15:44:11 RAS pppd[1019]: Zaptel Plugin Initialized
Jun  1 15:44:11 RAS pppd[1019]: Using zaptel device 'stdin'
Jun  1 15:44:11 RAS pppd[1019]: pppd 2.4.1b2 started by root, uid 0
Jun  1 15:44:11 RAS pppd[1019]: Zaptel device is 'stdin'
Jun  1 15:44:11 RAS pppd[1019]: Connected to zaptel device 'TE4/0/1/22' (22)
Jun  1 15:44:11 RAS pppd[1019]: Using interface ppp0
Jun  1 15:44:11 RAS pppd[1019]: Connect: ppp0 -- stdin
Jun  1 15:44:11 RAS /etc/hotplug/net.agent: assuming ppp0 is already up

== /var/log/ppp-debug ==
Jun  1 15:44:11 RAS pppd[1019]: Plugin zaptel.so loaded.
Jun  1 15:44:11 RAS pppd[1019]: Zaptel Plugin Initialized
Jun  1 15:44:11 RAS pppd[1019]: Using zaptel device 'stdin'
Jun  1 15:44:11 RAS pppd[1019]: pppd 2.4.1b2 started by root, uid 0
Jun  1 15:44:11 RAS pppd[1019]: Zaptel device is 'stdin'
Jun  1 15:44:11 RAS pppd[1019]: Connected to zaptel device 'TE4/0/1/22' (22)
Jun  1 15:44:11 RAS pppd[1019]: using channel 6
Jun  1 15:44:11 RAS pppd[1019]: Using interface ppp0
Jun  1 15:44:11 RAS pppd[1019]: Connect: ppp0 -- stdin
Jun  1 15:44:11 RAS pppd[1019]: sent [LCP ConfReq id=0x1 magic 0x22d75992]

== /var/log/messages ==
Jun  1 15:44:41 RAS pppd[1019]: LCP: timeout sending Config-Requests
Jun  1 15:44:41 RAS pppd[1019]: Connection terminated.
Jun  1 15:44:41 RAS pppd[1019]: Disconnect from zaptel
Jun  1 15:44:41 RAS pppd[1019]: Exit.
Jun  1 15:44:41 RAS /etc/hotplug/net.agent: NET unregister event not
supported

== /var/log/ppp-debug ==
Jun  1 15:44:38 RAS last message repeated 9 times
Jun  1 15:44:41 RAS pppd[1019]: LCP: timeout sending Config-Requests
Jun  1 15:44:41 RAS pppd[1019]: Connection terminated.
Jun  1 15:44:41 RAS pppd[1019]: Disconnect from zaptel
Jun  1 15:44:41 RAS pppd[1019]: Exit.

It has something to do with LCP. Are we moving in the correct path here ?
And after 1 minute the phone says the call was not  answered

PLATFORM: redhat 9.0


hi!

I'm trying to get zapras working in GSM csd network. Whenever a dialup call
is initiated from the mobile to the * gateway the following appears in the
log and zapras terminates. Phone gives the error dialup not answered.

== /var/log/messages ==
pppd[2310]: Plugin zaptel.so loaded.
pppd[2310]: Zaptel Plugin Initialized
pppd[2310]: Using zaptel device 'stdin'
pppd[2310]: pppd 2.4.1b2 started by root, uid 0
pppd[2310]: Zaptel device is 'stdin'
kernel: Zaptel: Zaptel PPP support not compiled in
pppd[2310]: Unable to put device 'stdin' into HDLC mode
pppd[2310]: Exit.


I patched the given pppd with the two patches
ppp-2.4.1-pppoe.patch4, ppp-2.4.1b2-zaptel.patch

I recompiled my kernel to spupport,
Network device support - PPP over Ethernet (EXPERIMENTAL)
But the result didn't change.

And kernel has this option ticked ( * ),
My kenerl has ISDN support - Support synchronous PPP


what could be wrong here ? Am I missing anything in the kernel. Or ppp not
configured not properly ? Need ur thoughts on this.

thanks in advance,
denzel.

___
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


Re: [Asterisk-Users] zapras how to

2004-06-01 Thread denz-infotechs
By the way I forgot to mention that I connect to * over ISDN.  I read
somewhere that ISDN v.110 connection or v.120 connections are not supported
with zapras. Is it true ? Did the above LCP problem occur due to that ?

 That prob is solved here's latest problem,

 == /var/log/messages ==
 Jun  1 15:44:11 RAS pppd[1019]: Plugin zaptel.so loaded.
 Jun  1 15:44:11 RAS pppd[1019]: Zaptel Plugin Initialized
 Jun  1 15:44:11 RAS pppd[1019]: Using zaptel device 'stdin'
 Jun  1 15:44:11 RAS pppd[1019]: pppd 2.4.1b2 started by root, uid 0
 Jun  1 15:44:11 RAS pppd[1019]: Zaptel device is 'stdin'
 Jun  1 15:44:11 RAS pppd[1019]: Connected to zaptel device 'TE4/0/1/22'
(22)
 Jun  1 15:44:11 RAS pppd[1019]: Using interface ppp0
 Jun  1 15:44:11 RAS pppd[1019]: Connect: ppp0 -- stdin
 Jun  1 15:44:11 RAS /etc/hotplug/net.agent: assuming ppp0 is already up

 == /var/log/ppp-debug ==
 Jun  1 15:44:11 RAS pppd[1019]: Plugin zaptel.so loaded.
 Jun  1 15:44:11 RAS pppd[1019]: Zaptel Plugin Initialized
 Jun  1 15:44:11 RAS pppd[1019]: Using zaptel device 'stdin'
 Jun  1 15:44:11 RAS pppd[1019]: pppd 2.4.1b2 started by root, uid 0
 Jun  1 15:44:11 RAS pppd[1019]: Zaptel device is 'stdin'
 Jun  1 15:44:11 RAS pppd[1019]: Connected to zaptel device 'TE4/0/1/22'
(22)
 Jun  1 15:44:11 RAS pppd[1019]: using channel 6
 Jun  1 15:44:11 RAS pppd[1019]: Using interface ppp0
 Jun  1 15:44:11 RAS pppd[1019]: Connect: ppp0 -- stdin
 Jun  1 15:44:11 RAS pppd[1019]: sent [LCP ConfReq id=0x1 magic
0x22d75992]

 == /var/log/messages ==
 Jun  1 15:44:41 RAS pppd[1019]: LCP: timeout sending Config-Requests
 Jun  1 15:44:41 RAS pppd[1019]: Connection terminated.
 Jun  1 15:44:41 RAS pppd[1019]: Disconnect from zaptel
 Jun  1 15:44:41 RAS pppd[1019]: Exit.
 Jun  1 15:44:41 RAS /etc/hotplug/net.agent: NET unregister event not
 supported

 == /var/log/ppp-debug ==
 Jun  1 15:44:38 RAS last message repeated 9 times
 Jun  1 15:44:41 RAS pppd[1019]: LCP: timeout sending Config-Requests
 Jun  1 15:44:41 RAS pppd[1019]: Connection terminated.
 Jun  1 15:44:41 RAS pppd[1019]: Disconnect from zaptel
 Jun  1 15:44:41 RAS pppd[1019]: Exit.

 It has something to do with LCP. Are we moving in the correct path here ?
 And after 1 minute the phone says the call was not  answered

 PLATFORM: redhat 9.0


 hi!

 I'm trying to get zapras working in GSM csd network. Whenever a dialup
call
 is initiated from the mobile to the * gateway the following appears in
the
 log and zapras terminates. Phone gives the error dialup not answered.

 == /var/log/messages ==
 pppd[2310]: Plugin zaptel.so loaded.
 pppd[2310]: Zaptel Plugin Initialized
 pppd[2310]: Using zaptel device 'stdin'
 pppd[2310]: pppd 2.4.1b2 started by root, uid 0
 pppd[2310]: Zaptel device is 'stdin'
 kernel: Zaptel: Zaptel PPP support not compiled in
 pppd[2310]: Unable to put device 'stdin' into HDLC mode
 pppd[2310]: Exit.


 I patched the given pppd with the two patches
 ppp-2.4.1-pppoe.patch4, ppp-2.4.1b2-zaptel.patch

 I recompiled my kernel to spupport,
 Network device support - PPP over Ethernet (EXPERIMENTAL)
 But the result didn't change.

 And kernel has this option ticked ( * ),
 My kenerl has ISDN support - Support synchronous PPP


 what could be wrong here ? Am I missing anything in the kernel. Or ppp
not
 configured not properly ? Need ur thoughts on this.

 thanks in advance,
 denzel.

 ___
 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



___
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


[Asterisk-Users] zapras how to

2004-05-31 Thread denz-infotechs



hi!

I'm trying to get zapras working in GSM csd 
network. Whenever a dialup call is initiated from the mobile to the * gateway 
the following appears in the log and zapras terminates. Phone gives the error 
dialup not answered.

== /var/log/messages ==pppd[2310]: 
Plugin zaptel.so loaded.pppd[2310]: Zaptel Plugin Initializedpppd[2310]: 
Using zaptel device 'stdin' pppd[2310]: pppd 2.4.1b2 started by root, uid 
0pppd[2310]: Zaptel device is 'stdin' kernel: Zaptel: Zaptel PPP support 
not compiled inpppd[2310]: Unable to put device 'stdin' into HDLC mode 
pppd[2310]: Exit.

I patched the given pppd with the two 
patches
ppp-2.4.1-pppoe.patch4, 
ppp-2.4.1b2-zaptel.patch

I recompiled my kernel to spupport,
Network device support - PPP over Ethernet 
(EXPERIMENTAL)
But the result didn't change.

And kernel has this option ticked ( * 
),
My kenerl has ISDN support - Support 
synchronous PPP


what could be wrong here ? Am I missing anything in 
the kernel. Or ppp not configured not properly ? Need ur thoughts on 
this.

thanks in advance,
denzel.


[Asterisk-Users] ZapRas problems

2004-05-24 Thread Thomas Dingermann
Hi
I try to use zapras. I am using zaptel-bri-0.0.2
I compiled and patched pppd from ftp://ftp.digium.com/pub/zaptel/misc/
pppd is /usr/sbin/pppd
Any idea whats going wrong here?
Thomas

   -- Accepting call from '95' to '8526' on channel 1, span 1
   -- AGI Script nuller.agi completed, returning 0
   -- Executing ZapRAS(Zap/1-1, 
debug|64000|noauth|netmask|255.255.255.0|192.168.1.121:192.168.1.122) in new stack
   -- Starting RAS on Zap/1-1
May 24 16:21:00 WARNING[561180]: app_zapras.c:143 run_ras: wait4 returned -1: No child 
processes
   -- RAS on Zap/1-1 terminated with signal 1
 == Spawn extension (incoming, 8526, 1) exited non-zero on 'Zap/1-1'
   -- Hungup 'Zap/1-1'
___
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


[Asterisk-Users] ZapRAS over IAX anyone?

2004-03-15 Thread Bisker, Scott (7805)
I'm just pinging the list for some quick info that I could turn up in google.  Has 
anyone played with doing ZapRAS over an IAX channel?  i.e. call comes in T-1 to server 
1.  Server 1 sends call to server 2 via IAX.  Server 2 picksup call with ZapRAS, runs 
ppp... etc.   I don't see why this would be a major issue, just checking to see if 
it's been done before.  

Thanks,

-sb
___
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


RE: [Asterisk-Users] ZapRAS over IAX anyone?

2004-03-15 Thread Bisker, Scott (7805)
Make that could not turn up in google.


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Bisker, Scott
(7805)
Sent: Monday, March 15, 2004 4:07 PM
To: [EMAIL PROTECTED]
Subject: [Asterisk-Users] ZapRAS over IAX anyone?


I'm just pinging the list for some quick info that I could turn up in google.  Has 
anyone played with doing ZapRAS over an IAX channel?  i.e. call comes in T-1 to server 
1.  Server 1 sends call to server 2 via IAX.  Server 2 picksup call with ZapRAS, runs 
ppp... etc.   I don't see why this would be a major issue, just checking to see if 
it's been done before.  

Thanks,

-sb
___
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
___
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


RE: [Asterisk-Users] ZapRAS over IAX anyone?

2004-03-15 Thread Eric Wieling
One would assume that ZapRAS only works on Zap channels.  ZapRAS only
works with ISDN DATA calls, not modem calls.

On Mon, 2004-03-15 at 15:13, Bisker, Scott (7805) wrote:
 Make that could not turn up in google.
 
 
 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Behalf Of Bisker, Scott
 (7805)
 Sent: Monday, March 15, 2004 4:07 PM
 To: [EMAIL PROTECTED]
 Subject: [Asterisk-Users] ZapRAS over IAX anyone?
 
 
 I'm just pinging the list for some quick info that I could turn up in google.  Has 
 anyone played with doing ZapRAS over an IAX channel?  i.e. call comes in T-1 to 
 server 1.  Server 1 sends call to server 2 via IAX.  Server 2 picksup call with 
 ZapRAS, runs ppp... etc.   I don't see why this would be a major issue, just 
 checking to see if it's been done before.  
 
 Thanks,
 
 -sb
 ___
 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
 ___
 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
-- 
For Asterisk PBX related documentation go to
http://www.digium.com/index.php?menu=documentation and look at the
Unofficial Links section also see
http://www.voip-info.org/wiki-Asterisk also see my site at
http://www.fnords.org/~eric/asterisk/

BTEL Consulting

___
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


[Asterisk-Users] ZapRAS + RADIUS authentication

2004-02-16 Thread Tomica Crnek



Does it work? I 
can't find if there is a config option in pppd config to make pppd authenticate 
user against radius server.

Tomica



Re: [Asterisk-Users] ZapRAS + RADIUS authentication

2004-02-16 Thread Steven Critchfield
On Mon, 2004-02-16 at 06:15, Tomica Crnek wrote:
 Does it work? I can't find if there is a config option in pppd config
 to make pppd authenticate user against radius server.

It should, but that is really a question for a ppp list or FAQ.
First link from google for me was this...
http://www.xs4all.nl/~evbergen/radius-pppd.html

Please do not make us start the UTFG or UTFW all over again with a
vengeance. I only used the terms pppd linux radius. 

-- 
Steven Critchfield  [EMAIL PROTECTED]

___
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


RE: [Asterisk-Users] ZapRAS + RADIUS authentication

2004-02-16 Thread Tomica Crnek
thanks :)



From: [EMAIL PROTECTED] on behalf of Steven Critchfield
Sent: pon 16.2.2004 20:22
To: [EMAIL PROTECTED]
Subject: Re: [Asterisk-Users] ZapRAS + RADIUS authentication



On Mon, 2004-02-16 at 06:15, Tomica Crnek wrote:
 Does it work? I can't find if there is a config option in pppd config
 to make pppd authenticate user against radius server.

It should, but that is really a question for a ppp list or FAQ.
First link from google for me was this...
http://www.xs4all.nl/~evbergen/radius-pppd.html

Please do not make us start the UTFG or UTFW all over again with a
vengeance. I only used the terms pppd linux radius.

--
Steven Critchfield  [EMAIL PROTECTED]

___
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


winmail.dat

RE: [Asterisk-Users] ZapRAS + RADIUS authentication

2004-02-16 Thread Steven Critchfield
I really should have toned down my response before. For whatever reason,
google gives different results to different people. One may only
experience this when they use someone else's computer to do well known
searches. I apparently have good google juice when it comes to linux
related searches. Sometimes other searches take a bit more time to dig
through. I have noticed that some things I search for, the links I want
come right to the top of the list, or at least on the first page.
Yesterday I was on someone else's computer and dug 5 pages deep without
seeing the link I wanted on known exact search terms. 

Anyways, happy googling.

On Mon, 2004-02-16 at 15:26, Tomica Crnek wrote:
 thanks :)
 
 
 
 From: [EMAIL PROTECTED] on behalf of Steven Critchfield
 Sent: pon 16.2.2004 20:22
 To: [EMAIL PROTECTED]
 Subject: Re: [Asterisk-Users] ZapRAS + RADIUS authentication
 
 
 
 On Mon, 2004-02-16 at 06:15, Tomica Crnek wrote:
  Does it work? I can't find if there is a config option in pppd config
  to make pppd authenticate user against radius server.
 
 It should, but that is really a question for a ppp list or FAQ.
 First link from google for me was this...
 http://www.xs4all.nl/~evbergen/radius-pppd.html
 
 Please do not make us start the UTFG or UTFW all over again with a
 vengeance. I only used the terms pppd linux radius.
 
 --
 Steven Critchfield  [EMAIL PROTECTED]
 
 ___
 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
-- 
Steven Critchfield  [EMAIL PROTECTED]

___
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


Re: [REPOST] [Asterisk-Users] ZapRAS docs needed...

2003-11-05 Thread Steven Critchfield
On Wed, 2003-11-05 at 04:55, Roy Sigurd Karlsbakk wrote:
 Is there any information available about ZapRAS other than the fscking
 source?

just pointing out for those interested in reading that I have written up
my recent experience over on the -dev list where I read this first. 

Ollie, you want to pick it up and find a suitable place for it in the
wiki?

 On Thu, 2003-10-30 at 12:52, Roy Sigurd Karlsbakk wrote:
  hi all
  
  Where can I find documentation about how to setup ZapRAS?
  
  What I want to do (optimally) is to allow for automatic dial-up to
  external sites, each having an ISDN router. Today we use a small ISDN
  router for this, but it'd be a lot better, IMHO, to have asterisk do
  this (functioning as a ISDN router), as we may cancel our BRIs then.
  
  Is this possible? And if so, how can I do it? I can't find any docs
  about ZapRAS at all!
  
  roy
  
  ___
  Asterisk-Users mailing list
  [EMAIL PROTECTED]
  http://lists.digium.com/mailman/listinfo/asterisk-users
 
 ___
 Asterisk-Users mailing list
 [EMAIL PROTECTED]
 http://lists.digium.com/mailman/listinfo/asterisk-users
-- 
Steven Critchfield [EMAIL PROTECTED]

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [REPOST] [Asterisk-Users] ZapRAS docs needed...

2003-11-05 Thread Olle E. Johansson
Steven Critchfield wrote:

On Wed, 2003-11-05 at 04:55, Roy Sigurd Karlsbakk wrote:

Is there any information available about ZapRAS other than the fscking
source?


just pointing out for those interested in reading that I have written up
my recent experience over on the -dev list where I read this first. 

Ollie, you want to pick it up and find a suitable place for it in the
wiki?
Done.
http://www.voip-info.org/tiki-index.php?page=Asterisk+zapras
/Olle
___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users


[REPOST] [Asterisk-Users] ZapRAS docs needed...

2003-11-05 Thread Roy Sigurd Karlsbakk
Is there any information available about ZapRAS other than the fscking
source?

On Thu, 2003-10-30 at 12:52, Roy Sigurd Karlsbakk wrote:
 hi all
 
 Where can I find documentation about how to setup ZapRAS?
 
 What I want to do (optimally) is to allow for automatic dial-up to
 external sites, each having an ISDN router. Today we use a small ISDN
 router for this, but it'd be a lot better, IMHO, to have asterisk do
 this (functioning as a ISDN router), as we may cancel our BRIs then.
 
 Is this possible? And if so, how can I do it? I can't find any docs
 about ZapRAS at all!
 
 roy
 
 ___
 Asterisk-Users mailing list
 [EMAIL PROTECTED]
 http://lists.digium.com/mailman/listinfo/asterisk-users

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users


[Asterisk-Users] ZapRAS docs needed...

2003-10-30 Thread Roy Sigurd Karlsbakk
hi all

Where can I find documentation about how to setup ZapRAS?

What I want to do (optimally) is to allow for automatic dial-up to
external sites, each having an ISDN router. Today we use a small ISDN
router for this, but it'd be a lot better, IMHO, to have asterisk do
this (functioning as a ISDN router), as we may cancel our BRIs then.

Is this possible? And if so, how can I do it? I can't find any docs
about ZapRAS at all!

roy

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users


[Asterisk-Users] ZapRas: Anyone has an idea how to configure it ???

2003-07-07 Thread Lord Stroud
Hi All,

  This is the third time I'm sending this to the list, seems that all my 
messages keep being rejected or something like that. 

  Is there anybody out there that has an idea how to make Asterisk
work with ZapRAS with an E1 interface? In addition, I would like to know
if anybody ever tried making GSM phones to connect to asterisk via PPP,
over an ISDN v.110 connection or v.120 connection.

Best Regards,
  Nir Simionovich
___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users


[Asterisk-Users] ZapRas

2003-07-06 Thread Lord Stroud
Hi All,

  Anyone has information on how to use the ZapRas application ?

Nir S
___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users