From owner-freebsd-hackers@FreeBSD.ORG Mon Jul 29 11:31:01 2013 Return-Path: Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 3AF9047F for ; Mon, 29 Jul 2013 11:31:01 +0000 (UTC) (envelope-from simond@irrelevant.org) Received: from mail-ve0-x236.google.com (mail-ve0-x236.google.com [IPv6:2607:f8b0:400c:c01::236]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E9A45209D for ; Mon, 29 Jul 2013 11:31:00 +0000 (UTC) Received: by mail-ve0-f182.google.com with SMTP id m1so2406234ves.13 for ; Mon, 29 Jul 2013 04:31:00 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=irrelevant.org; s=irrelevant; h=mime-version:x-originating-ip:in-reply-to:references:date :message-id:subject:from:to:cc:content-type; bh=wmfK2xcxHBhVOXh53pjQUfwjeOrcep0oPY2xMS01YzM=; b=HZsw1UpPq+H2aU8iM/C2fK6C+jxnD4SG8BikRGI1W3X2d3c+rP3kLP/q+a1BN7E2pR nTAHhagpkFQAQvKhnlhqGGONRR4cBFVfi1ijDe9dLY+R1ohkmbt1Gz7p8/KEI9r+kGtN R3p8yH4UuzY68lUDi8hYZb7wSUGXghUfKAEK4= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:x-originating-ip:in-reply-to:references:date :message-id:subject:from:to:cc:content-type:x-gm-message-state; bh=wmfK2xcxHBhVOXh53pjQUfwjeOrcep0oPY2xMS01YzM=; b=HQj2nz5CoBJsZbc7S/9/ZbTtNjEmXOyNdwOIg5uHCe5tBBn7C8uky6cuxLhhHk8x4G k2AiKQ4x1qpoG8a+XS1+zRYaDd4f7KXlzRF9/33x+pSKTvf68jwAjYnFN9xAPKhbGqMy 3JtrEsuSPC7+VesYCjobjAVbnvUxvgKeVdPHKg3W/7T42bpKcaGyxd6FhmTG533yVSxC MTJQd0Li+dumSLpw1xZQ0OtFrPB1AlI9O/hq/LXmV8u/7xmVzEVsgRtmJJK006p8B9lL PoTC3jqbdeAbm/zB6Zwu9UKEubRXLAahwV/gHNgMSLWUz734EOE3xoJyfbTy/QEO83z/ bVYg== MIME-Version: 1.0 X-Received: by 10.220.159.208 with SMTP id k16mr8500321vcx.92.1375097460032; Mon, 29 Jul 2013 04:31:00 -0700 (PDT) Received: by 10.221.48.131 with HTTP; Mon, 29 Jul 2013 04:30:59 -0700 (PDT) X-Originating-IP: [94.31.26.5] In-Reply-To: References: <1D6BF13DFC536AFC94EC6D64@Mail-PC.tdx.co.uk> <51F64BCC.9000301@freebsd.org> Date: Mon, 29 Jul 2013 12:30:59 +0100 Message-ID: Subject: Re: kldload ipfw, with IPFIREWALL_DEFAULT_TO_ACCEPT From: Simon Dick To: Karl Pielorz X-Gm-Message-State: ALoCoQkKKooEJp/Ojy0OTw8N356OIsnWhUKWvNtPTRgy2MDZItpSJ0ecGom1Tv5aQ45eAteo0n9+ Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: freebsd-hackers@freebsd.org X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Jul 2013 11:31:01 -0000 On 29 July 2013 12:27, Karl Pielorz wrote: > > > --On 29 July 2013 13:02 +0200 Stefan Esser wrote: > > I guess you were looking for: >> >> net.inet.ip.fw.default_to_**accept="1" >> >> which is a tunable to be set in /boot/loader.conf ... >> > > Very probably - but that's at boot time :( - Is there nothing I can do at > kldload time to have the initial kldload give me a 'allow ip from any to > any' rule as it loads? (thus not affecting traffic on the machine, or more > importantly the CARP interfaces)? > > My normal way is to run the kldload in screen and manually run an allow all right afterwards e.g. kldload ipfw && ipfw ... :)