From owner-freebsd-config Tue Jul 10 13:36: 5 2001 Delivered-To: freebsd-config@freebsd.org Received: from prairieinet.net (dsmmail.prairieinet.net [63.239.190.142]) by hub.freebsd.org (Postfix) with SMTP id 597E037B403 for ; Tue, 10 Jul 2001 13:36:01 -0700 (PDT) (envelope-from rgoodson@p-inet.net) Received: (qmail 28694 invoked from network); 10 Jul 2001 20:35:59 -0000 Received: from unknown (HELO duroc.p-inet.com) ([63.239.190.7]) (envelope-sender ) by dsmmail.prairieinet.net (qmail-ldap-1.03) with SMTP for ; 10 Jul 2001 20:35:59 -0000 Received: by duroc.p-inet.com with Internet Mail Service (5.5.2653.19) id ; Tue, 10 Jul 2001 15:30:22 -0500 Message-ID: <3239C74599195C4D911085B3C2AF66EE20AB9C@duroc.p-inet.com> From: Rich Goodson To: "'freebsd-config@FreeBSD.ORG'" Subject: IPv6 prompt in 4.2 installer Date: Tue, 10 Jul 2001 15:30:21 -0500 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) Content-Type: text/plain Sender: owner-freebsd-config@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I am having problems getting the IPv6 prompt "Would you like to try IPv6 configuration of the interface? [YES] [NO]" to not come up when booting from my custom boot disks. I have about 50 servers that are going to have basically the same 4.2-release configuration. I'd like to be able to simply swap floppies and then have the rest of the install be automatic. everything else currently works except for this. here is part of my mfsroot install.cfg file. debug=NO nonInteractive=YES noWarn=YES tryRTSOL=NO tryDHCP=YES ... [other stuff about disks and nfs and packages deleted] the tryRTSOL=NO was the closest thing I could find while looking through the source code in /usr/src/release/sysinstall. I assume this is incorrect, as it still comes up with the IPv6 prompt during the boot/install. I assumed this was the correct variable due to following lines of code in tcpip.c and sysinstall.h tcpip.c: ((!variable_cmp(VAR_TRY_RTSOL, "NO")) && (!msgNoYes("Do you want to try IPv6 configuration of the interface?")))) { ((!variable_cmp(VAR_TRY_DHCP, "NO")) && (!msgNoYes("Do you want to try DHCP configuration of the interface?")))) { sysinstall.h: #define VAR_TRY_DHCP "tryDHCP" #define VAR_TRY_RTSOL "tryRTSOL" since tryDHCP=YES works without prompting, I thought tryRTSOL=NO would also work without prompting, but apparently I was incorrect. is there any way I can get through this install without the try IPv6 prompt? thanks, -rich To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-config" in the body of the message