From nobody Wed Aug 30 13:29:28 2023 X-Original-To: current@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4RbQBd3hZJz4s7Dv for ; Wed, 30 Aug 2023 13:29:45 +0000 (UTC) (envelope-from herbert@gojira.at) Received: from mail.bsd4all.net (mail.bsd4all.net [IPv6:2a01:4f8:13b:240c::25]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature ECDSA (P-384) client-digest SHA384) (Client CN "mail.bsd4all.net", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4RbQBc2NXlz4V7P for ; Wed, 30 Aug 2023 13:29:44 +0000 (UTC) (envelope-from herbert@gojira.at) Authentication-Results: mx1.freebsd.org; dkim=pass header.d=gojira.at header.s=mail202005 header.b=L4FHQME1; spf=pass (mx1.freebsd.org: domain of herbert@gojira.at designates 2a01:4f8:13b:240c::25 as permitted sender) smtp.mailfrom=herbert@gojira.at; dmarc=none Date: Wed, 30 Aug 2023 15:29:28 +0200 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=gojira.at; s=mail202005; t=1693402174; bh=xIvVKn2V6LsaHlM/qHm2nTPL1wQEvAquor1Y7fyhHU0=; h=Date:Message-ID:From:To:Subject:MIME-Version:Content-Type; b=L4FHQME1+sELiAUD0rR7P4xrAx6pZueB7eLLyaXCW9xATSS1AThh+rXyiGP0wN4KM x22AP3eOwsxswgpg8MrniDWUMY9EkSZriXPN3AxIINeno9rfsFMtfmozzRvvqljalU pePiJao0cwL+ccj7o7/wzA9k5g31xTNQDizMvMvQCPMcmnoXjKXb7WVVJaHqvGtShl neQvlUO4Pj6+HLWLvaLwhoTub9pNrT7pBpIy7N5QrUL3qdpNeY48XhZNAYMXpyzlGJ +hApady2SSnPU3LFhLpIZRmf1hhttjrs0evml8S5au4XzMRjIhnma/XOgMwIpjtuXd t2pvZ8VoFV8ag== Message-ID: <871qfkr747.wl-herbert@gojira.at> From: "Herbert J. Skuhra" To: current@FreeBSD.org Subject: net/mpd5 on stable/14 - COMPAT_FREEBSD12 required? User-Agent: Wanderlust/2.15.9 (Almost Unreal) Emacs/30.0 Mule/6.0 List-Id: Discussions about the use of FreeBSD-current List-Archive: https://lists.freebsd.org/archives/freebsd-current List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-current@freebsd.org MIME-Version: 1.0 (generated by SEMI-EPG 1.14.7 - "Harue") Content-Type: text/plain; charset=US-ASCII X-Spamd-Bar: - X-Spamd-Result: default: False [-1.50 / 15.00]; NEURAL_HAM_LONG(-1.00)[-1.000]; SUBJECT_ENDS_QUESTION(1.00)[]; MID_CONTAINS_FROM(1.00)[]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_SHORT(-1.00)[-1.000]; R_SPF_ALLOW(-0.20)[+ip6:2a01:4f8:13b:240c::25]; R_DKIM_ALLOW(-0.20)[gojira.at:s=mail202005]; MIME_GOOD(-0.10)[text/plain]; FROM_EQ_ENVFROM(0.00)[]; MLMMJ_DEST(0.00)[current@FreeBSD.org]; RCVD_COUNT_ZERO(0.00)[0]; ARC_NA(0.00)[]; RCPT_COUNT_ONE(0.00)[1]; MIME_TRACE(0.00)[0:+]; FROM_HAS_DN(0.00)[]; DKIM_TRACE(0.00)[gojira.at:+]; TO_MATCH_ENVRCPT_ALL(0.00)[]; DMARC_NA(0.00)[gojira.at]; TO_DN_NONE(0.00)[]; ASN(0.00)[asn:24940, ipnet:2a01:4f8::/32, country:DE] X-Rspamd-Queue-Id: 4RbQBc2NXlz4V7P Hi, after updating from stable/13 to (main and later to) stable/14 net/mpd5 only connects to my ISP (VDSL with VLAN) if I enable "options COMPAT_FREEBSD12" in my kernel. Without I get only: Aug 30 15:08:06 gw mpd[59876]: [L1] PPPoE connection timeout after 9 seconds Aug 30 15:08:06 gw mpd[59876]: [L1] Link: DOWN event Aug 30 15:08:06 gw mpd[59876]: [L1] LCP: Down event Aug 30 15:08:06 gw mpd[59876]: [L1] Link: reconnection attempt 1 in 7 seconds Aug 30 15:08:14 gw mpd[59876]: [L1] Link: reconnection attempt 1 Aug 30 15:08:14 gw mpd[59876]: [L1] PPPoE: Connecting to '' Aug 30 15:08:23 gw mpd[59876]: [L1] PPPoE connection timeout after 9 seconds Aug 30 15:08:23 gw mpd[59876]: [L1] Link: DOWN event Aug 30 15:08:23 gw mpd[59876]: [L1] LCP: Down event [..] I guess the problem is: Without "COMPAT_FREEBSD12" vlanproto = 0x0000. If I run "ifconfig vlan31 vlanproto 802.1q" mpd5 works. -- Herbert