well... my problem is that is dont have any contact with the internet
whatsoever even though i'm actually connected with my ISP.
here's my configuration script:
#!/bin/sh
LOCALNUM="<my_number>"
REMOTENUM="58722222"
REMOTEIP="194.213.74.4"
isdnctrl addif ippp0
isdnctrl addphone ippp0 out $REMOTENUM
isdnctrl eaz ippp0 $LOCALNUM
isdnctrl l2_prot ippp0 hdlc
isdnctrl l3_prot ippp0 trans
isdnctrl encap ippp0 syncppp
isdnctrl huptimeout ippp0 300
isdnctrl dialmax ippp0 5
isdnctrl dialtimeout ippp0 600
isdnctrl dialwait ippp0 3
isdnctrl secure ippp0 on
ipppd name <my_username> :$REMOTEIP \
noipdefault \
ipcp-accept-remote \
-vjccomp -ac -pc \
-detach \
mru 1524 \
-bsdcomp \
debug \
/dev/ippp0 /dev/ippp1 /dev/ippp2 &
this is based on the example scripts that came with isdn4k-utils 2.0.
I use a isdn4k-utils that is only about 3-4 days old now...
i have isdn support compiled into my kernel (v. 2.1.90 )
i don't understand all of the things in my script yet, particulary the
ipppd stuff.
the problem isn't the dns-server... neither ping nor ftp works even if I
feed it a known ip-adress: 165.113.121.81 (ftp.cdrom.com)
any good suggestions are welcome!