X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from mail-yw0-f54.google.com (mail-yw0-f54.google.com [209.85.213.54]) (using TLSv1 with cipher RC4-MD5 (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 91525DC3506 for ; Tue, 12 Jun 2012 04:41:15 +0000 (UTC) Received: by yhgm50 with SMTP id m50so3559360yhg.13 for ; Mon, 11 Jun 2012 21:41:14 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:in-reply-to:references :x-mailer:mime-version:content-type:content-transfer-encoding; bh=TEMHZbid4vBRiq9PnN1fBGPb3SgO/TsM/AOPs8bUIeU=; b=ePV7by4eG8CpF9O/7jnsm8hvVqnCGWojg+gE+aU90yaWcDL9YWTxSy/EFDbPn1SIcb PESKMxsKw6w1OnfGDV98R2zUIcAVtYBSLw5pLq4X2voldjYwB/NMnc4y8yLcIObHxCVA XYPbjKZjML6BtTBommOKk4xW5ZD/4iFG2C9CWsSlX65nk8dL2MRBDq/HoIAMMURXZRfR oWEclGB/HVonx/xFMpfUMq26kFdThpVpL15x7JasD6xVbEhEcsz9nqldGpqDoils1s8f FkP/2Kx+o9u94TQFWkZDGvxhqgxqOuoQI3XKgZ74mdu5fg0yXucdRDqq4e7lECl9qkU6 +J9A== Received: by 10.236.187.2 with SMTP id x2mr25023830yhm.42.1339476074510; Mon, 11 Jun 2012 21:41:14 -0700 (PDT) Received: from vostro ([2001:1bc8:101:f402:21c:23ff:fefc:bf0b]) by mx.google.com with ESMTPS id j34sm29520256ani.14.2012.06.11.21.41.12 (version=SSLv3 cipher=OTHER); Mon, 11 Jun 2012 21:41:14 -0700 (PDT) Sender: =?UTF-8?Q?Timo_Ter=C3=A4s?= Date: Tue, 12 Jun 2012 07:39:03 +0300 From: Timo Teras To: jeremy@thomersonfamily.com Cc: alpine-devel@lists.alpinelinux.org Subject: Re: [alpine-devel] Re: [PATCH] Add DHCP to services.json Message-ID: <20120612073903.21153926@vostro> In-Reply-To: References: <1338181266-5999-1-git-send-email-jeremy@thomersonfamily.com> X-Mailer: Claws Mail 3.8.0 (GTK+ 2.24.10; i686-pc-linux-gnu) X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Hi, On Mon, 11 Jun 2012 22:28:34 -0500 Jeremy Thomerson wrote: > Anybody look at this yet? > > On Mon, May 28, 2012 at 12:01 AM, Jeremy Thomerson < > jeremy@thomersonfamily.com> wrote: > > > --- > > json/services.json | 3 ++- > > 1 files changed, 2 insertions(+), 1 deletions(-) > > > > diff --git a/json/services.json b/json/services.json > > index ff1e82b..0d7d3ec 100644 > > --- a/json/services.json > > +++ b/json/services.json > > @@ -1,7 +1,8 @@ > > { > > "service": { > > - "babel": { "proto": "tcp", "port": 6697 }, > > + "babel": { "proto": "tcp", "port": 6697 }, Nit pick here, why is the line changed? Some whitespace change? > > "bgp": { "proto": "tcp", "port": 179 }, > > + "dhcp": { "proto": "udp", "port": [ "67", "68" ] }, > > "dns": [ > > { "proto": "udp", "port": 53 }, > > { "proto": "tcp", "port": 53 } > > -- Yes - we need something like this. Though, I wonder if we want to enable this by default for interfaces. Same goes with ICMPv6 since that is a requirement for IPv6 things to work. We'll try to figure out this soon. Then again - in either case, we might want to add explicit rules, so this should likely go in anway. I also wonder if we want to keep this as-is, or also add the related icmpv6 codes to service 'dhcp' too. - Timo --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---