From owner-freebsd-questions Sat Sep 27 18:12:13 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id SAA24819 for questions-outgoing; Sat, 27 Sep 1997 18:12:13 -0700 (PDT) Received: from bitbox.follo.net (bitbox.follo.net [194.198.43.36]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id SAA24813 for ; Sat, 27 Sep 1997 18:12:07 -0700 (PDT) Received: (from eivind@localhost) by bitbox.follo.net (8.8.6/8.8.6) id DAA13730; Sun, 28 Sep 1997 03:11:38 +0200 (MET DST) Date: Sun, 28 Sep 1997 03:11:38 +0200 (MET DST) Message-Id: <199709280111.DAA13730@bitbox.follo.net> From: Eivind Eklund To: "Keith Spencer" CC: freebsd-questions@FreeBSD.ORG In-reply-to: "Keith Spencer"'s message of Thu, 25 Sep 1997 18:31:57 +1000 Subject: Re: Installed...I must be close!...but References: <199709250717.RAA26359@smmcroute.smmc.qld.edu.au> Sender: owner-freebsd-questions@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > What my new fbsd box can't do... :^( > a) The boot finds my NIC it seems and I have de0 interface listed and > ifconfig_de0 set in RC.CONF to the local NIC IP and netmask...BUT > ifconfig -a reports only... > de0: flags=8020mtu 1500 > ether xx:xx:xx:xx (whatever the address is) > .......but no inet IP & no netmask etc! > It doesn't say RUNNING nor UP. > Does this mean the NIC stuff ain't working? > P.S. I don't have the NIC connected on the LAN presently....does it > matter? It shouldn't. > b) I don't have syslogd working ...Greg, doesn't matter how often I > mkfifo /var/run/log the next time I log on it won't exist again! > Can I work around the problem or should I continue my fix fest? /etc/rc should create that for you automatically. > ############################################################## > ### Network configuration sub-section ###################### > ############################################################## > > ### Basic network options: ### > hostname="station1.smmc.qld.edu.au" # Set this! > nisdomainname="NO" # Set to NIS domain if using NIS (or NO). > firewall="NO" # Set to firewall type or NO for none. > tcp_extensions="YES" # Allow RFC1323 & RFC1544 extensions (or NO). > network_interfaces= "lo0 tun0 de0" # List of network interfaces (lo0 > is loopback). > ifconfig_lo0="inet 127.0.0.1" # default loopback device > configuration. > ifconfig_tun0= > ifconfig_de0="inet 203.56.180.200 netmask 255.255.255.0" Your configuration of tun0 looks suspicious. tun0 is auto-configured by ppp, and should not need this line. You shouldn't be running a plain ifconfig on it, I think. Eivind.