From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <9front-bounces@9front.inri.net> X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-1.0 required=5.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI autolearn=ham autolearn_force=no version=3.4.4 Received: from 9front.inri.net (9front.inri.net [168.235.81.73]) by inbox.vuxu.org (Postfix) with ESMTP id 234BB24CB6 for ; Fri, 26 Jul 2024 06:00:20 +0200 (CEST) Received: from gaff.inri.net ([168.235.82.67]) by 9front; Thu Jul 25 23:57:55 -0400 2024 Message-ID: <59C872D9DD7DD16FBA1D5353DB506C7D@gaff.inri.net> Date: Thu, 25 Jul 2024 23:57:55 -0400 From: sl@stanleylieber.com To: 9front@9front.org In-Reply-To: <294DAFA846655265107E1B99A7E30ED4@gaff.inri.net> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit List-ID: <9front.9front.org> List-Help: X-Glyph: ➈ X-Bullshit: HTTP browser self-signing proxy Subject: Re: [9front] WANTED: ip based filtering of incoming connections Reply-To: 9front@9front.org Precedence: bulk >> Did you verify it was working with just a single ip address or two? I >> am thinking perhaps you ran in to some arbitrary buffer limit. > > even with only one ip address it has no effect. the while loop seems useless. if i run this on the command line and never interrupt it, it just keeps going, and continues to block connections from this one ip: ; aux/dial 'ipmux!vers=4;src=168.235.81.125&255.255.255.255' >/dev/null but the original problem i reported still holds true: if i fork it to the background by placing an & at the end of the line, it exist immediately. and you're right, even just running it on the command line and not interrupting it, with a longer list of ip addresses, it has no effect: ; aux/dial 'ipmux!vers=4;src=47.128.0.0&255.252.0.0|52.230.152.0&255.255.255.0|64.249.68.0&255.255.255.0|64.249.79.0&255.255.255.0|64.249.83.0&255.255.255.0|85.208.96.0&255.255.255.0|156.59.198.0&255.255.255.0|168.235.81.125&255.255.255.255' >/dev/null it never exits, it just doesn't seem to do anything. sl