Gentoo Archives: gentoo-user-de

From: Martin Wegner <mehrwertsteuer@×××.de>
To: christoph@××××××.org, gentoo-user-de Mailing-list <gentoo-user-de@l.g.o>
Subject: Re: [gentoo-user-de] Der letzte Grund für Windows: ISDN
Date: Wed, 25 Aug 2004 12:44:12
Message-Id: 412C89A5.9030806@web.de
In Reply to: Re: [gentoo-user-de] Der letzte Grund für Windows: ISDN by Christoph Maria Dahlen
1 Hallo,
2
3 Christoph Maria Dahlen wrote:
4 > Kannst Du mir vielleicht noch ein paar Hinweise geben? Die Kernel 2.4er
5 > ISDN Konstellation war seinerzeit unter Debian Woody und schon etwas
6 > länger her.
7 >
8 > In der obigen Kernel-Konfiguration habe ich jetzt den zweiten Punkt
9 > genommen, aber geändert hat das noch nichts.
10
11 Was sagt ein dmesg | grep HiSax ?
12
13 Hier eine kurz gehaltene Anleitung:
14
15 Kernel-Optionen:
16
17 Device Drivers --->
18 Networking support --->
19 <*> PPP (point-to-point protocol) support
20 ISDN subsystem --->
21 <*> ISDN support
22 Old ISDN4Linux --->
23 <*> Old ISDN4Linux (obsolete)
24 [*] Support synchronous PPP
25 [*] Use VJ-compression with synchronous PPP
26 [*] Filtering for synchronous PPP
27 <*> Support BSD compression
28 Passive cards --->
29 <*> HiSax SiemensChipSet driver support
30 [*] HiSax Support for EURO/DSS1
31 [*] Support for german chargeinfo
32 [*] HiSax Support for german 1TR6
33 (1) Maximum number of cards supported by HiSax
34 --- HiSax PCMCIA card service modules
35 <*> AVM A1 PCMCIA cards (NEW)
36
37 Kernel neu compilieren (wirst du für dein System kennen):
38
39 $ cd /usr/src/linux
40 $ make && make modules_install
41 $ cp arch/i386/boot/bzImage /boot/kernel-2.6.x
42
43 Dann restart.
44
45 ISDN4LINUX:
46
47 $ emerge isdn4linux
48
49 Dann dieses Script ausführen:
50
51 --- isdn-setup.sh ---
52 #!/bin/bash
53
54 MYMSN=Deine Telefonnummer ohne Vorwahl
55 REMMSN=Die Einwahlnummer deines Anbieters
56 USERNAME=Dein Provider-Loginname
57 REMNAME=Name deines Anbieters
58
59 /sbin/isdnctrl verbose 3
60 /sbin/isdnctrl system on
61 /sbin/isdnctrl addif ippp0
62 /sbin/isdnctrl eaz ippp0 $MYMSN
63 /sbin/isdnctrl l2_prot ippp0 hdlc
64 /sbin/isdnctrl l3_prot ippp0 trans
65 /sbin/isdnctrl encap ippp0 syncppp
66 /sbin/isdnctrl dialmode ippp0 manual
67 /sbin/isdnctrl addphone ippp0 out $REMMSN
68 /sbin/isdnctrl huptimeout ippp0 300
69 /sbin/isdnctrl dialmax ippp0 20
70 /sbin/ipppd user $USERNAME remotename $REMNAME \
71 defaultroute \
72 name $USERNAME \
73 debug \
74 -detach \
75 mru 1500 \
76 mtu 1500 \
77 lcp-restart 1 \
78 /dev/ippp0 &
79 ---
80
81 Dann weiter:
82
83 Jetzt noch 2 Dateien editieren:
84
85 --- /etc/ppp/pap-secrets ---
86 "Dein Provider-Loginname" * "Dein Password"
87 ---
88
89 --- /etc/ppp/options.ippp0 ---
90 /dev/ippp0
91 name "Dein Provider-Loginname"
92 ipcp-accept-local
93 ipcp-accept-remote
94 noipdefault
95 usepeerdns
96 deldefaultroute
97 ---
98
99 Nun noch
100
101 $ mkdir -p /var/lib/isdn4linux/
102 $ isdnctrl writeconf /var/lib/isdn4linux/isdnctrl.conf
103 $ cd /etc/init.d/
104 $ ln -nsf net.eth0 net.ippp0
105 $ /etc/init.d/isdn4linux start
106 $ /etc/init.d/net.ippp0 start
107 $ rc-update add isdn4linux default
108 $ rc-update add isdn4linux net.ippp0
109
110 Das sollte es gewesen sein. Mit
111
112 $isdnctrl dial ippp0
113
114 verbindest du dich und mit
115
116 $ imon
117
118 kannst du überprüfen, ob alles glatt ging.
119
120 MfG
121
122 martin
123
124 --
125 Get my public GPG key from pgp.mit.edu or wwwkeys.pgp.net - Key ID: 0x44085D12
126 --
127 Homepage: http://mwegner.de.ms/
128 Powered by Gentoo Linux (http://www.gentoo.org/)
129 --
130 Mails von dieser Adresse sind nur gültig, wenn sie mit dem o. g. Schlüssel
131 signiert wurden. Unsignierte Mails von dieser Adresse sind gefälscht und
132 stehen in keinerlei Verbindung zu mir.
133 Mails from this address are only valid if they are signed with the
134 abovementioned key. Unsinged mails from this address are faked and have no
135 relation to me.

Attachments

File name MIME type
signature.asc application/pgp-signature

Replies

Subject Author
Re: [gentoo-user-de] Der letzte Grund für Windows: ISDN Christoph Maria Dahlen <christoph@××××××.org>