From owner-freebsd-small Fri Jun 8 14:19:40 2001 Delivered-To: freebsd-small@freebsd.org Received: from ns2.sysadmin-inc.com (ns2.sysadmin-inc.com [209.16.228.145]) by hub.freebsd.org (Postfix) with SMTP id 5D8F137B405 for ; Fri, 8 Jun 2001 14:19:37 -0700 (PDT) (envelope-from peter@sysadmin-inc.com) Received: (qmail 62248 invoked by alias); 8 Jun 2001 21:19:36 -0000 Received: from unknown (HELO test) (10.10.1.20) by ns2.sysadmin-inc.com with SMTP; 8 Jun 2001 21:19:36 -0000 From: "Peter" To: Subject: firewall rules not loading. Date: Fri, 8 Jun 2001 17:18:47 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Importance: Normal Sender: owner-freebsd-small@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I've managed to get things a little closer to running, and even have a functioning network on the 'net' version of picobsd, however I'm having problems getting it to read my firewall script. I wrote my own and put it in the same way I have in the past with full blown versions of freebsd, but it doesn't seem to be working. I can load the script manually after picobsd is up, and it works. I've attached my rc.conf below. Any comments are welcome. TIA Peter Brezny purplecat.net #!/bin/sh # $FreeBSD: src/release/picobsd/net/floppy.tree/etc/rc.conf,v 1.6 1999/08/28 01:33:41 peter Exp $ swapfile="/swap" # Set to name of swapfile if aux swapfile desired. ### Network configuration sub-section ###################### ### Basic network options: ### hostname="newlife.fire.sysadmin-inc.com" # Set this! tcp_extensions="NO" # Allow RFC1323 & RFC1644 extensions (or NO). network_interfaces="lo0 ep0 ed0" # List of network interfaces (lo0 is loopback). ifconfig_lo0="inet 127.0.0.1" # default loopback device configuration. ifconfig_ep0="inet 10.30.1.40/24" ifconfig_ed0="inet 10.20.40.1/24" #ifconfig_lo0_alias0="inet 127.0.0.254 netmask 0xffffffff" # Sample alias entry. ### Network daemons options: ### inetd_enable="YES" # Run the network daemon dispatcher (or NO) inetd_flags="" # Optional flags to inetd snmpd_enable="NO" # Run the SNMP daemon (or NO) snmpd_flags="-C -c /etc/snmpd.conf" # Optional flags to snmpd ### Network routing options: ### defaultrouter="10.30.1.1" # Set to default gateway (or NO). static_routes="" # Set to static route list (or leave empty). gateway_enable="YES" # Set to YES if this host will be a gateway. arpproxy_all="" # replaces obsolete kernel option ARP_PROXYALL. # Firewall Options firewall_enable="YES" natd_enable="YES" natd_interface="ep0" firewall_script="/etc/rc.firewall.pico" ### Allow local configuration override at the very end here ## if [ -f /etc/rc.conf.local ]; then . /etc/rc.conf.local fi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-small" in the body of the message