From owner-freebsd-hackers Sun Dec 3 12:21:07 1995 Return-Path: owner-hackers Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA21261 for hackers-outgoing; Sun, 3 Dec 1995 12:21:07 -0800 Received: from dg-rtp.dg.com (dg-rtp.rtp.dg.com [128.222.1.2]) by freefall.freebsd.org (8.6.12/8.6.6) with SMTP id MAA21234 for ; Sun, 3 Dec 1995 12:20:52 -0800 Received: by dg-rtp.dg.com (5.4R3.10/dg-rtp-v02) id AA26686; Sun, 3 Dec 1995 15:20:15 -0500 Received: from ponds by dg-rtp.dg.com.rtp.dg.com; Sun, 3 Dec 1995 15:20 EST Received: (rivers@localhost) by ponds.UUCP (8.6.11/8.6.5) id PAA18842; Sun, 3 Dec 1995 15:04:42 -0500 Date: Sun, 3 Dec 1995 15:04:42 -0500 From: Thomas David Rivers Message-Id: <199512032004.PAA18842@ponds.UUCP> To: freebsd-bugs@freefall.FreeBSD.org, freebsd-hackers@freefall.FreeBSD.org, jkh@freefall.FreeBSD.org, rivers@dg-rtp.dg.com Subject: Probable problem with SL/IP installations (ifconfig sl0 not run.) Content-Type: text Content-Length: 1327 Sender: owner-hackers@FreeBSD.ORG Precedence: bulk After telneting into freefall, I think I've determined the bug in sysinstall that prevents SL/IP stuff from working. The 'devp' in tcpOpenDialog() has been passed an interface name of "cuaa0" (in my case.) It then winds up setting the VAR_IFCONFIG value based on that device name (it would be something like: ifconfig_cuaa0) Later, in network.c, the device name (passed in in 'dev') has become 'sl0', network.c at line 95 uses that to check for the environment variable 'ifconfig_sl0'; which has not been set. [Notable, I noticed in examining the debugging information on VTY2, there has been no 'ifconfig sl0' command executed...] So, network.c issues the message that sl0 isn't set, and fails the install. Jordan - can we get this repaired and make another boot floppy available? I thought about a hack to set this with something like: ifconfig_sl0=TRUE; export ifconfig_sl0; ifconfig sl0 ...; slattach ... in the slattach command, but that starts up a sub-process, and won't set the environment variable properly (it does get the ifconfig working, and I can merrily run mount_nfs on the "holographic shell") I hope fixing this will allow more people to try out FreeBSD 2.1, as I'm sure not all ISPs use PPP (e.g. I use SL/IP to connect to mine, although I had a choice.) - Thanks - - Dave Rivers -