Re: ISDN 128k Summary

2000-08-15 Thread Ishai Parasol

On Wed, 16 Aug 2000, Shapira Home Mail wrote:

> can some1 modify this for 64k.
> thx
> MS
> 

Hi 

Just give up the ippp1 configuration
 
#!/bin/bash
/usr/sbin/isdnctrl addif ippp0
/usr/sbin/isdnctrl secure ippp0 on
/usr/sbin/isdnctrl addphone ippp0 out 136014
/usr/sbin/isdnctrl l2_prot ippp0 hdlc 
/usr/sbin/isdnctrl l3_prot ippp0 trans 
/usr/sbin/isdnctrl encap ippp0 syncppp
/usr/sbin/isdnctrl huptimeout ippp0 3600 
/usr/sbin/ipppd /dev/ippp0 
/sbin/ifconfig ippp0 up
sleep 4
/usr/sbin/isdnctrl dial ippp0
sleep 7
route add default ippp0

and don't forget the files in /etc/ppp:

pap-secrets: username * password
ioptions: username

It should work.

Ishai


=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]




Re: ISDN 128k Summary

2000-08-15 Thread Shapira Home Mail

can some1 modify this for 64k.
thx
MS


> Hi,
> 
> Thanks Nimrod S. Carmi,- your script is 100% working (attached).
> 
> One can connect Linux using isdn4linux to the BezeqInt
> 128k ISDN line.
> 
> Connection speed "mini-benchmark"
> -
> Download netscape3.exe from ftp.bezeqint.net
>   If connecting on a single   64k channel, the speed is  6.5Kb/s
>   If connecting on a bundled 128k channel, the speed is 11.3Kb/s
> 
> BTW, don't expect for help from BezeqInt.
> They don't know what Linux is ;-(
> 
> All the best,
> 
> Alex Rier| 
> Linux Consultant | Tel:  +972-52-442549
> Breakthrough Ltd.| FAX:  +972-3-5364060
> http://www.breakt.co.il  | mailto:[EMAIL PROTECTED]
> 
> 
> 
> 
> #!/bin/bash
> /usr/sbin/isdnctrl addif ippp0
> /usr/sbin/isdnctrl addslave ippp0 ippp1
> /usr/sbin/isdnctrl secure ippp0 on
> /usr/sbin/isdnctrl secure ippp1 on
> /usr/sbin/isdnctrl addphone ippp0 out 136014
> /usr/sbin/isdnctrl addphone ippp1 out 136014
> /usr/sbin/isdnctrl l2_prot ippp0 hdlc 
> /usr/sbin/isdnctrl l3_prot ippp0 trans 
> /usr/sbin/isdnctrl encap ippp0 syncppp
> /usr/sbin/isdnctrl l2_prot ippp1 hdlc 
> /usr/sbin/isdnctrl l3_prot ippp1 trans 
> /usr/sbin/isdnctrl encap ippp1 syncppp
> /usr/sbin/isdnctrl huptimeout ippp0 3600 
> /usr/sbin/isdnctrl huptimeout ippp1 3600
> /usr/sbin/ipppd /dev/ippp0 /dev/ippp1
> /sbin/ifconfig ippp0 up
> sleep 4
> /usr/sbin/isdnctrl dial ippp0
> /usr/sbin/isdnctrl dial ippp1
> sleep 7
> route add default ippp0
> 
> 
> 
> 
> =
> To unsubscribe, send mail to [EMAIL PROTECTED] with
> the word "unsubscribe" in the message body, e.g., run the command
> echo unsubscribe | mail [EMAIL PROTECTED]
> 


=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]




Re: ISDN 128k Summary

2000-08-11 Thread Eli Marmor

Alex Rier wrote:

> Thanks Nimrod S. Carmi,- your script is 100% working (attached).
> ...

Now that everything (?) works, let's go to the next challenge:

Running a PPP server (*SERVER*) on ISDN

I suggest to start with scripts for single line (64Kb), and only
then to continue with 128Kb.

Like PPP clients, this issue *supposed* to be obvious, but like PPP
clients, it is far from being simple.

(of course, contrary to the previous issue, this one is not limited
to a specific ISP; Here, *YOU* are the ISP)

(ISP's, like Miki and others, are allowed and even recommended to
join this challenge!)

P.S. Is there any difference (for Linux) between the various ISDN
"modems"?   And which of them supports FAX and/or mgetty and/or MSN
(please don't confuse with MicroSoft Network...). I want to have 3-8
numbers for the same ISDN, to distinguish between the different
numbers, and to forward received FAXes to virtual FAX boxes. Most of
these actions are obvious, except for finding an ISDN modem with
support for Linux, mgetty, FAX, and MSN.
-- 
Eli Marmor

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]




ISDN 128k Summary

2000-08-10 Thread Alex Rier

Hi,

Thanks Nimrod S. Carmi,- your script is 100% working (attached).

One can connect Linux using isdn4linux to the BezeqInt
128k ISDN line.

Connection speed "mini-benchmark"
-
Download netscape3.exe from ftp.bezeqint.net
  If connecting on a single   64k channel, the speed is  6.5Kb/s
  If connecting on a bundled 128k channel, the speed is 11.3Kb/s

BTW, don't expect for help from BezeqInt.
They don't know what Linux is ;-(

All the best,

Alex Rier| 
Linux Consultant | Tel:  +972-52-442549
Breakthrough Ltd.| FAX:  +972-3-5364060
http://www.breakt.co.il  | mailto:[EMAIL PROTECTED]




#!/bin/bash
/usr/sbin/isdnctrl addif ippp0
/usr/sbin/isdnctrl addslave ippp0 ippp1
/usr/sbin/isdnctrl secure ippp0 on
/usr/sbin/isdnctrl secure ippp1 on
/usr/sbin/isdnctrl addphone ippp0 out 136014
/usr/sbin/isdnctrl addphone ippp1 out 136014
/usr/sbin/isdnctrl l2_prot ippp0 hdlc 
/usr/sbin/isdnctrl l3_prot ippp0 trans 
/usr/sbin/isdnctrl encap ippp0 syncppp
/usr/sbin/isdnctrl l2_prot ippp1 hdlc 
/usr/sbin/isdnctrl l3_prot ippp1 trans 
/usr/sbin/isdnctrl encap ippp1 syncppp
/usr/sbin/isdnctrl huptimeout ippp0 3600 
/usr/sbin/isdnctrl huptimeout ippp1 3600
/usr/sbin/ipppd /dev/ippp0 /dev/ippp1
/sbin/ifconfig ippp0 up
sleep 4
/usr/sbin/isdnctrl dial ippp0
/usr/sbin/isdnctrl dial ippp1
sleep 7
route add default ippp0




=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]