Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 21 May 1998 12:16:36 +0200 (CEST)
From:      Matthias Schuendehuette <root@mscu.snafu.de>
To:        Stefan Herrmann <sh@seicom.net>
Cc:        FreeBSD-ISDN Mailingliste <freebsd-isdn@FreeBSD.ORG>
Subject:   Re: problems kompiling the kernel with i4b
Message-ID:  <XFMail.980521123136.root@mscu.snafu.de>
In-Reply-To: <000f01bd8421$833815c0$030aa8c0@obelix.webaffairs.net>

next in thread | previous in thread | raw e-mail | index | archive | help
Hi Stefan,

On 20-May-98 Stefan Herrmann wrote:
 
> I don't know what to do else, but the following
> 
>       root@asterix[0]~ # ping www.seicom.net
>       ping: cannot resolve www.seicom.net: Host name lookup failure
> 
> fails :-(
> 
> Did I forget something ?

Perhaps - did you a 4route add default -interface isppp04 ?

I made two tiny scripts to switch the connection to my ISP on and off:

******************* provi-on**********************************
#!/bin/sh

/sbin/ifconfig isppp0 up
/sbin/route add default -interface isppp0
/sbin/ping -c 1 <nameserver_of_ISP>
echo Returnwert von 'ping' = $?
******************* provi-on**********************************

******************* provi-off**********************************
#!/bin/sh

/sbin/ifconfig isppp0 down
/sbin/route delete default
******************* provi-off**********************************

at least it works for me ..... :-)

These scripts assume that isppp0 is configured right running /etc/rc.isdn at
system startup. See /usr/src/i4b/etc/rc.isdn-PPP for hints.

HTH - Matthias

********************************************************************
Matthias Sch|ndeh|tte   E-Mail:   Matthias Schuendehuette  <root@mscu.snafu.de>
Solmsstrasse 44         Phone:    +49-30-69409824
D-10961 Berlin          Data/Fax: +49-30-69409825
GERMANY

This message was sent by XF-Mail on FreeBSD 2.2.6-STABLE
**********************************************************************

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-isdn" in the body of the message



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?XFMail.980521123136.root>