From owner-freebsd-questions Thu Feb 19 02:56:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA20451 for freebsd-questions-outgoing; Thu, 19 Feb 1998 02:56:56 -0800 (PST) (envelope-from owner-freebsd-questions@FreeBSD.ORG) Received: from shell.futuresouth.com (shell.futuresouth.com [207.141.254.20]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA20404 for ; Thu, 19 Feb 1998 02:56:45 -0800 (PST) (envelope-from tim@shell.futuresouth.com) Received: (from tim@localhost) by shell.futuresouth.com (8.8.8/8.8.8) id EAA18011; Thu, 19 Feb 1998 04:34:36 -0600 (CST) Message-ID: <19980219043436.31978@futuresouth.com> Date: Thu, 19 Feb 1998 04:34:36 -0600 From: Tim Tsai To: freebsd-questions@FreeBSD.ORG Subject: /etc/rc.network problems/questions References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.88 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG in /etc/rc.network we have these lines: for ifn in ${network_interfaces}; do if [ -e /etc/start_if.${ifn} ]; then . /etc/start_if.${ifn} ${ifn} fi but to my best knowlege, the "." builtin doesn't take parameters. Why am I missing? if I create a start_if.fxp0 file, for example, that looks like this: ifconfig $1 inet 192.168.1.1 netmask 255.255.255.255 alias the $1 expands to nothing. What am I missing? Is everybody else hardcoding the interface name into start_if.ifn? Thanks! Tim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message