Received: from jazz.pogo.org.uk (jazz.pogo.org.uk [213.138.114.167]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id E9C71782AF4 for <~alpine/users@lists.alpinelinux.org>; Thu, 19 Nov 2020 19:38:06 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=pogo.org.uk ; s=swing; h=Content-Type:MIME-Version:Message-ID:Subject:To:From:Date:Sender :Reply-To:Cc:Content-Transfer-Encoding:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: In-Reply-To:References:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=HQErHi9CsF229nRGx2ZbqICCX06QNJjYw/8orxX463Q=; b=Hw+2yMhfbPxBTIvQ3zGA9NNnq2 VJlRj5nV0LOKKnv4JcXXHpWKrGZIlaysdtBNl4jL+LoGUkW7Wgh7om6/GD1DfHVo4RwjqIN0mszzu /0ATJveOI2a5QrJyIc/at0Ry5/rSLanSYTmh1mQe2Qpa+xO1bpvMKlhokmdWIDiGGH4E=; Received: from [2001:470:1d21:0:428d:5cff:fe1b:f3e5] (helo=stax) by jazz.pogo.org.uk with esmtps (TLS1.3) tls TLS_AES_256_GCM_SHA384 (Exim 4.94 (FreeBSD)) (envelope-from ) id 1kfpkr-0001h8-Ip for ~alpine/users@lists.alpinelinux.org; Thu, 19 Nov 2020 19:38:05 +0000 Received: from localhost (stax.localdomain [local]) by stax.localdomain (OpenSMTPD) with ESMTPA id 5d9d4ce7 for <~alpine/users@lists.alpinelinux.org>; Thu, 19 Nov 2020 19:38:05 +0000 (UTC) Date: Thu, 19 Nov 2020 19:38:05 +0000 (GMT) From: Mark Hills To: ~alpine/users@lists.alpinelinux.org Subject: Static network configuration bug? Message-ID: <2011191931030.19570@stax.localdomain> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Following the wiki for a static IP setup: https://wiki.alpinelinux.org/wiki/Configure_Networking#IPv4_Static_Address_Configuration It states the following for configuration: iface eth0 inet static address 192.168.1.150/24 gateway 192.168.1.1 but this format of netmask does not cooperate: # service networking start * Starting networking ... * lo ... [ ok ] * eth0 ...ifup: don't have all variables for eth0/inet [ !! ] I found I could specify full netmark; eg. iface eth0 inet static address 192.168.1.150 netmask 255.255.255.0 gateway 192.168.1.1 The same problem happens with IPv6 configuration, too. Is it the docs, or me that is wrong? This pattern repeats several times over in the doc. -- Mark