From owner-freebsd-hardware@FreeBSD.ORG Tue Nov 16 12:26:42 2004 Return-Path: Delivered-To: freebsd-hardware@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1614A16A4CE for ; Tue, 16 Nov 2004 12:26:42 +0000 (GMT) Received: from fiinbeck.math.ntnu.no (fiinbeck.math.ntnu.no [129.241.15.140]) by mx1.FreeBSD.org (Postfix) with SMTP id 7D44743D45 for ; Tue, 16 Nov 2004 12:26:40 +0000 (GMT) (envelope-from hanche+bounces@math.ntnu.no) Received: (qmail 38950 invoked from network); 16 Nov 2004 12:26:39 -0000 Received: from localhost (127.0.0.1) by localhost with SMTP; 16 Nov 2004 12:26:39 -0000 Date: Tue, 16 Nov 2004 13:26:38 +0100 (CET) Message-Id: <20041116.132638.118627256.hanche@math.ntnu.no> To: hw@omni-net.de From: Harald Hanche-Olsen In-Reply-To: <1581B3BEAD79AC4C9D379AC3D51C50D006E67C@lyra2.exchange.xchg> References: <1581B3BEAD79AC4C9D379AC3D51C50D006E67C@lyra2.exchange.xchg> X-URL: http://www.math.ntnu.no/~hanche/ X-Mailer: Mew version 3.3 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: freebsd-hardware@freebsd.org Subject: Re: Problem with ndisulator and Dell D600 X-BeenThere: freebsd-hardware@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: General discussion of FreeBSD hardware List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Nov 2004 12:26:42 -0000 + "Hanno Welsch" : | I have succesully installed Bills = ndisulator (Thx Bill, great | work) on freeBSD 5.3 on my Notebook Dell = Latitude D600 but | there is one problem left: | | I am able to ping all the hosts in my = LAN, but I am not able to | ping any host in the internet. That implies the hardware is OK, so this is not a hardware problem - and you have posted to the wrong list. But never mind, I'll give you some hints. Please try a list like freebsd-questions if this is not enough. Almost certainly it's the default route that is missing. If you run "netstat -r" you should see a route to default with the gateway being whatever the gateway to the Internet is in your LAN. If not, add one by running "route add default gateway" as root, where you replace "gateway" by the address of the gateway. If your machine is always on this network, automate this by setting default_router in /etc/rc.conf. Look in /etc/defaults/rc.conf for the details on this and other variables, not to mention man rc.conf. If you have a dhcp server on your LAN, a better option might be to run "dhclient ndis0" instead, and to set ifconfig_ndis0="DHCP" in /etc/rc.conf. Hope this helps. - Harald