Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
How to set up ISDN on Gentoo
View unanswered posts
View posts from last 24 hours

Goto page Previous  1, 2, 3, 4, 5  
Reply to topic    Gentoo Forums Forum Index Documentation, Tips & Tricks
View previous topic :: View next topic  
Author Message
krist4l
n00b
n00b


Joined: 30 Jul 2005
Posts: 2

PostPosted: Sun Jul 31, 2005 8:33 pm    Post subject: Reply with quote

Douse neyone know how to solve this problem. Plz tell me !
Back to top
View user's profile Send private message
R1zZ1
Tux's lil' helper
Tux's lil' helper


Joined: 24 Jul 2005
Posts: 91
Location: Campobasso-Roma (Italy)

PostPosted: Sun Jul 31, 2005 9:15 pm    Post subject: Reply with quote

I'm finally connected with gentoo...but now i want to use both channels. Can i do this ?


Bye
Back to top
View user's profile Send private message
R1zZ1
Tux's lil' helper
Tux's lil' helper


Joined: 24 Jul 2005
Posts: 91
Location: Campobasso-Roma (Italy)

PostPosted: Mon Aug 01, 2005 10:18 pm    Post subject: Reply with quote

Problem solved, now i'm connected in dual channel mode.

I just configured ippp1 like ippp0 and works. :D
Back to top
View user's profile Send private message
My_World
Guru
Guru


Joined: 01 Sep 2003
Posts: 339
Location: Kalahari Desert

PostPosted: Wed Aug 03, 2005 5:55 pm    Post subject: Reply with quote

Could somebody in the States or Europe please test this How-To to see if it will work over there?

It works 100% in South Africa, I'm only curious to know if it will work there as well...
http://gentoo-wiki.com/HOWTO_ISDN_Alt
_________________
"Ubuntu" - an African word meaning "Gentoo is too hard for me".
Back to top
View user's profile Send private message
mmaric
n00b
n00b


Joined: 21 Sep 2005
Posts: 3

PostPosted: Wed Dec 07, 2005 7:04 pm    Post subject: Reply with quote

R1zZ1 wrote:
Problem solved, now i'm connected in dual channel mode.

I just configured ippp1 like ippp0 and works. :D


Hello,

could you give me all configuration on how you started with multchannel?

I still have problems with it.
Back to top
View user's profile Send private message
R1zZ1
Tux's lil' helper
Tux's lil' helper


Joined: 24 Jul 2005
Posts: 91
Location: Campobasso-Roma (Italy)

PostPosted: Fri Dec 09, 2005 2:04 pm    Post subject: Reply with quote

Here is my isdn-setup script:
Code:

#!/bin/bash

MYMSN=*** # my number, without 0, with areacode
REMMSN=***     # number of ISP
REMNAME=***
MYUSER=***
MYIP=10.0.0.1
/usr/sbin/isdnctrl verbose 3            # verbose messages
/usr/sbin/isdnctrl system on            # ensure ISDN system is turned on
/usr/sbin/isdnctrl addif ippp0          # add the interface
/usr/sbin/isdnctrl eaz ippp0 $MYMSN
/usr/sbin/isdnctrl l2_prot ippp0 hdlc
/usr/sbin/isdnctrl l3_prot ippp0 trans
/usr/sbin/isdnctrl encap ippp0 syncppp  # we will use syncPPP
/usr/sbin/isdnctrl dialmode ippp0 manual  # dial on demand
/usr/sbin/isdnctrl addphone ippp0 out $REMMSN   # ISP's number
/usr/sbin/isdnctrl huptimeout ippp0 900  # set timeout to 10 seconds (or whatever)
/usr/sbin/isdnctrl dialmax ippp0 20     # set redial count to 20
/usr/sbin/ipppd user $MYUSER remotename $REMNAME defaultroute name $MYUSER -detach mru 1524 mtu 1500 lcp-restart 1 /dev/ippp0 &
/sbin/ifconfig ippp0 $MYIP pointopoint
/sbin/ifconfig ippp0 -arp -broadcast
/sbin/route add $MYIP ippp0
/sbin/route add default netmask 0 ippp0

/usr/sbin/isdnctrl verbose 3            # verbose messages
/usr/sbin/isdnctrl system on            # ensure ISDN system is turned on
/usr/sbin/isdnctrl addif ippp1         # add the interface
/usr/sbin/isdnctrl eaz ippp1 $MYMSN
/usr/sbin/isdnctrl l2_prot ippp1 hdlc
/usr/sbin/isdnctrl l3_prot ippp1 trans
/usr/sbin/isdnctrl encap ippp1 syncppp  # we will use syncPPP
/usr/sbin/isdnctrl dialmode ippp1 manual  # dial on demand
/usr/sbin/isdnctrl addphone ippp1 out $REMMSN   # ISP's number
/usr/sbin/isdnctrl huptimeout ippp1 900  # set timeout to 10 seconds (or whatever)
/usr/sbin/isdnctrl dialmax ippp1 20     # set redial count to 20
/usr/sbin/ipppd user $MYUSER remotename $REMNAME defaultroute name $MYUSER -detach mru 1524 mtu 1500 lcp-restart 1 /dev/ippp1 &
/sbin/ifconfig ippp1 $MYIP pointopoint
/sbin/ifconfig ippp1 -arp -broadcast
/sbin/route add $MYIP ippp1
/sbin/route add default netmask 0 ippp1


My isdn-initialise:
Code:

#!/bin/bash

MYUSER=***       # my username at the ISP
REMNAME=***       # name of ISP's system
REMMSN=***     # number of ISP
MYIP=10.0.0.1    # my fixed IP number

/sbin/ifconfig ippp0 $MYIP pointopoint
/sbin/ifconfig ippp0 -arp -broadcast    # don't allow arps and broadcasts

/sbin/route add $MYIP ippp0
/sbin/route add default netmask 0 ippp0 # all non-local traffic goes to ippp0
/usr/sbin/ipppd user $MYUSER remotename $REMNAME defaultroute /dev/ippp0   


/sbin/ifconfig ippp1 $MYIP pointopoint
/sbin/ifconfig ippp1 -arp -broadcast    # don't allow arps and broadcasts

/sbin/route add $MYIP ippp1
/sbin/route add default netmask 0 ippp1 # all non-local traffic goes to ippp0
/usr/sbin/ipppd user $MYUSER remotename $REMNAME defaultroute /dev/ippp1


You have just to execute first
Code:
isdnctrl dial ippp0
and then
Code:
isdnctrl dial ippp1



Good luck!
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Documentation, Tips & Tricks All times are GMT
Goto page Previous  1, 2, 3, 4, 5
Page 5 of 5

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum