From owner-freebsd-net@freebsd.org Sun Jul 3 12:08:21 2016 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C752CAC59FE for ; Sun, 3 Jul 2016 12:08:21 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B71A22664 for ; Sun, 3 Jul 2016 12:08:21 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u63C8JH1096935 for ; Sun, 3 Jul 2016 12:08:21 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-net@FreeBSD.org Subject: [Bug 210726] tcp connect() can return invalid EADDRINUSE Date: Sun, 03 Jul 2016 12:08:19 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.3-STABLE X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: jilles@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-net@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 12:08:21 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D210726 Jilles Tjoelker changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jilles@FreeBSD.org --- Comment #2 from Jilles Tjoelker --- Although this change does not seem wrong, it seems necessary only when using the same IP address in different jails, or in a jail and the outer system. = Is that the case? Also, if the change applies to the in_pcblookup_local() call, it also appli= es to the in6_pcblookup_local() call above it. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-net@freebsd.org Sun Jul 3 16:13:33 2016 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 504D0B904E7 for ; Sun, 3 Jul 2016 16:13:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 406E825D6 for ; Sun, 3 Jul 2016 16:13:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u63GDX25008606 for ; Sun, 3 Jul 2016 16:13:33 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-net@FreeBSD.org Subject: [Bug 210726] tcp connect() can return invalid EADDRINUSE Date: Sun, 03 Jul 2016 16:13:33 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.3-STABLE X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: aler@playground.ru X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-net@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jul 2016 16:13:33 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D210726 --- Comment #3 from aler@playground.ru --- (In reply to Jilles Tjoelker from comment #2) Yes, got that error with multiple jails on the same IP. And most likely yes, it applies to in6 branch too (uploaded patch above contains in6). --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-net@freebsd.org Mon Jul 4 05:26:53 2016 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5F1B0B91A5C for ; Mon, 4 Jul 2016 05:26:53 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4F2A725B3 for ; Mon, 4 Jul 2016 05:26:53 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u645Qqmb018982 for ; Mon, 4 Jul 2016 05:26:53 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-net@FreeBSD.org Subject: [Bug 210461] Realtek RTL8110SC 3 port Adapter doesn't work Date: Mon, 04 Jul 2016 05:26:52 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.3-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: yongari@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-net@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 05:26:53 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D210461 Pyun YongHyeon changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |yongari@FreeBSD.org --- Comment #2 from Pyun YongHyeon --- (In reply to Massimo Giaimo from comment #0) AFAIK re(4) should support that controller. If it is not the case it might be a regression as the forum said. Probably the first step to narrow down the issue is to boot with FreeBSD 10.3-RELEASE and see the output of `pciconf -lcbv`. If there are entries for your controller in the output, the issue would be in re(4). If there are no entries, the issue would be in pci(4). Could you show us dmesg and `pciconf -lcbv` output on your box with FreeBSD 10.3-RELEASE? --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-net@freebsd.org Mon Jul 4 06:35:23 2016 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0410DB907B4 for ; Mon, 4 Jul 2016 06:35:23 +0000 (UTC) (envelope-from www-data@hdh6drsa.cloudapp.net) Received: from hdh6drsa.cloudapp.net (hdh6drsa.cloudapp.net [23.97.203.222]) by mx1.freebsd.org (Postfix) with ESMTP id B1A2C2E92 for ; Mon, 4 Jul 2016 06:35:22 +0000 (UTC) (envelope-from www-data@hdh6drsa.cloudapp.net) Received: by hdh6drsa.cloudapp.net (Postfix, from userid 33) id 013572054E; Mon, 4 Jul 2016 06:35:15 +0000 (UTC) To: freebsd-net@freebsd.org Subject: Super Oferta TV LED 55 3D 1899,00 X-PHP-Originating-Script: 0:kinoplex2015.php From: 421660 frederick X-Mailer: Microsoft Office Outlook, Build 17.551210 Message-Id: <20160704063516.013572054E@hdh6drsa.cloudapp.net> Date: Mon, 4 Jul 2016 06:35:15 +0000 (UTC) MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Content-Filtered-By: Mailman/MimeDel 2.1.22 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 06:35:23 -0000 From owner-freebsd-net@freebsd.org Mon Jul 4 16:27:35 2016 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 99459B900E3 for ; Mon, 4 Jul 2016 16:27:35 +0000 (UTC) (envelope-from patfbsd@davenulle.org) Received: from sender163-mail.zoho.com (sender163-mail.zoho.com [74.201.84.163]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 75D1D2444 for ; Mon, 4 Jul 2016 16:27:34 +0000 (UTC) (envelope-from patfbsd@davenulle.org) Received: from mr185083 (mr185083.univ-rennes1.fr [129.20.185.83]) by mx.zohomail.com with SMTPS id 1467649647381179.4967564389009; Mon, 4 Jul 2016 09:27:27 -0700 (PDT) Date: Mon, 4 Jul 2016 18:27:23 +0200 From: Patrick Lamaiziere To: freebsd-net@freebsd.org Subject: 10/STABLE openbgpd and bgp TCP MD5 signature Message-ID: <20160704182723.049f0349@mr185083> X-Mailer: Claws Mail 3.13.2 (GTK+ 2.24.29; amd64-portbld-freebsd10.3) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 8bit X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 16:27:35 -0000 Hello, Is there anyone using openbgpd with BGP password with success? I've setup the password using setkey : add localip ippeer tcp 0x1000 -A tcp-md5 "secret!"; But as far I can see with tcpdump, the outgoing packets are not signed. The kernel is built with options IPSEC #IP security (requires device crypto) options TCP_SIGNATURE #include support for RFC 2385 device crypto device cryptodev There is a PR but I don't know if it is still true ? https://lists.freebsd.org/pipermail/freebsd-ports-bugs/2013-December/267545.html Thanks, regards From owner-freebsd-net@freebsd.org Mon Jul 4 16:36:45 2016 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A9198B90828 for ; Mon, 4 Jul 2016 16:36:45 +0000 (UTC) (envelope-from patfbsd@davenulle.org) Received: from sender163-mail.zoho.com (sender163-mail.zoho.com [74.201.84.163]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 849B52CBC for ; Mon, 4 Jul 2016 16:36:45 +0000 (UTC) (envelope-from patfbsd@davenulle.org) Received: from mr185083 (mr185083.univ-rennes1.fr [129.20.185.83]) by mx.zohomail.com with SMTPS id 146765020336745.83472128429855; Mon, 4 Jul 2016 09:36:43 -0700 (PDT) Date: Mon, 4 Jul 2016 18:36:35 +0200 From: Patrick Lamaiziere To: freebsd-net@freebsd.org Subject: 10/STABLE BGP daemon with TCP MD5 signature ? Message-ID: <20160704183635.31c69de1@mr185083> X-Mailer: Claws Mail 3.13.2 (GTK+ 2.24.29; amd64-portbld-freebsd10.3) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 8bit X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 16:36:45 -0000 Hello, As openbgpd(*) looks broken for the BGP password, is there any BGP daemon that works with tcp md5 signature (using setkey and ipsec of course) ? Thanks, regards (*) https://lists.freebsd.org/pipermail/freebsd-ports-bugs/2013-December/267545.html From owner-freebsd-net@freebsd.org Mon Jul 4 17:00:18 2016 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 544CFB91305 for ; Mon, 4 Jul 2016 17:00:18 +0000 (UTC) (envelope-from wwaites@tardis.ed.ac.uk) Received: from noether.irl.styx.org (noether.irl.styx.org [IPv6:2a00:d880:6:1a4::98dc]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "noether.irl.styx.org", Issuer "noether.irl.styx.org" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 243562026 for ; Mon, 4 Jul 2016 17:00:18 +0000 (UTC) (envelope-from wwaites@tardis.ed.ac.uk) Received: by noether.irl.styx.org (Postfix, from userid 66) id 2C72119E14; Mon, 4 Jul 2016 17:00:13 +0000 (UTC) Received: from naartjie.uucp (localhost [127.0.0.1]) by naartjie (Postfix) with ESMTP id 585EA2734F; Mon, 4 Jul 2016 16:56:20 +0000 (UTC) References: <20160704183635.31c69de1@mr185083> User-agent: mu4e 0.9.16; emacs 24.5.1 From: William Waites To: Patrick Lamaiziere Cc: freebsd-net@freebsd.org Subject: Re: 10/STABLE BGP daemon with TCP MD5 signature ? In-reply-to: <20160704183635.31c69de1@mr185083> Date: Mon, 04 Jul 2016 16:56:19 +0000 Message-ID: <86k2h1z6j0.fsf@naartjie.uucp> MIME-Version: 1.0 Content-Type: text/plain X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 17:00:18 -0000 Patrick Lamaiziere writes: > As openbgpd(*) looks broken for the BGP password, is there any BGP > daemon that works with tcp md5 signature (using setkey and ipsec of we are not doing this in production right now, but i am pretty sure that we successfully in the lab with bird. From owner-freebsd-net@freebsd.org Mon Jul 4 17:29:31 2016 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B6781B91CD4 for ; Mon, 4 Jul 2016 17:29:31 +0000 (UTC) (envelope-from mike@sentex.net) Received: from smarthost2.sentex.ca (smarthost2.sentex.ca [IPv6:2607:f3e0:80:80::2]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client CN "smarthost.sentex.ca", Issuer "smarthost.sentex.ca" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 74A712092 for ; Mon, 4 Jul 2016 17:29:31 +0000 (UTC) (envelope-from mike@sentex.net) Received: from lava.sentex.ca (lava.sentex.ca [IPv6:2607:f3e0:0:5::11]) by smarthost2.sentex.ca (8.15.2/8.15.2) with ESMTPS id u64HTTi6071382 (version=TLSv1 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Mon, 4 Jul 2016 13:29:29 -0400 (EDT) (envelope-from mike@sentex.net) Received: from [IPv6:2607:f3e0:0:4:5c30:ed1b:e203:c55c] ([IPv6:2607:f3e0:0:4:5c30:ed1b:e203:c55c]) by lava.sentex.ca (8.14.9/8.14.9) with ESMTP id u64HTSrc038223; Mon, 4 Jul 2016 13:29:28 -0400 (EDT) (envelope-from mike@sentex.net) Subject: Re: 10/STABLE BGP daemon with TCP MD5 signature ? To: Patrick Lamaiziere , freebsd-net@freebsd.org References: <20160704183635.31c69de1@mr185083> From: Mike Tancsa Organization: Sentex Communications Message-ID: Date: Mon, 4 Jul 2016 13:29:15 -0400 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.1.1 MIME-Version: 1.0 In-Reply-To: <20160704183635.31c69de1@mr185083> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.78 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 17:29:31 -0000 On 7/4/2016 12:36 PM, Patrick Lamaiziere wrote: > As openbgpd(*) looks broken for the BGP password, is there any BGP > daemon that works with tcp md5 signature (using setkey and ipsec of > course) ? Quagga should work. ---Mike -- ------------------- Mike Tancsa, tel +1 519 651 3400 Sentex Communications, mike@sentex.net Providing Internet services since 1994 www.sentex.net Cambridge, Ontario Canada http://www.tancsa.com/ From owner-freebsd-net@freebsd.org Mon Jul 4 23:05:11 2016 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 96D81B91B97 for ; Mon, 4 Jul 2016 23:05:11 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: from shell1.rawbw.com (shell1.rawbw.com [198.144.192.42]) by mx1.freebsd.org (Postfix) with ESMTP id 88F9A2FED for ; Mon, 4 Jul 2016 23:05:11 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: from yuri.doctorlan.com (c-24-5-143-190.hsd1.ca.comcast.net [24.5.143.190]) (authenticated bits=0) by shell1.rawbw.com (8.15.1/8.15.1) with ESMTPSA id u64N55xc017221 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128 verify=NO) for ; Mon, 4 Jul 2016 16:05:05 -0700 (PDT) (envelope-from yuri@rawbw.com) X-Authentication-Warning: shell1.rawbw.com: Host c-24-5-143-190.hsd1.ca.comcast.net [24.5.143.190] claimed to be yuri.doctorlan.com To: freebsd-net@freebsd.org From: Yuri Subject: CJDNS - a very useful network router program Message-ID: Date: Mon, 4 Jul 2016 16:05:03 -0700 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:45.0) Gecko/20100101 Thunderbird/45.1.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2016 23:05:11 -0000 Hi, I came across CJDNS (https://github.com/cjdelisle/cjdns), the IPv6 software router that uses the public-key encryption to secure the transmitted packets. It is interesting because IMO it implements the new approach to networking, a significant improvement over how networks work today. There is no need for routers, there is no centralization in the network, there is no need for providers controlling the up-link channel at every point like it happens today in the residential Internet, for example. MITM attacks and surveillance are also much less likely because intruders can't decrypt the traffic without the receiver's private key. You can just add nodes, connect them in some way with almost random topology, and the network will just work. Mesh networks can be built this way, connecting households or business units. Additionally, one can easily use CJDNS as a VPN. Server key should just be shared with the client, UDP port should be opened, and routing table on the client should be adjusted. I think CJDNS is actually the easiest and most lightweight way to set up VPN that exists today. CJDNS can tunnel IPv4 over IPv6. CJDNS also has a lot of similarities to the Tor network, because it allows to create an encrypted network with access to both internal net and clearnet hosts. In fact, such test network exists and is operational: https://www.fc00.org/ I created ports for CJDNS: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=210730 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=210767 Sorry if this is off-topic because it isn't directly related to the networking in FreeBSD. But I thought many will also find CJDNS interesting, and wanted to share. Yuri From owner-freebsd-net@freebsd.org Tue Jul 5 06:33:37 2016 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 04552B917C9 for ; Tue, 5 Jul 2016 06:33:37 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E83C21B79 for ; Tue, 5 Jul 2016 06:33:36 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u656XaEL087274 for ; Tue, 5 Jul 2016 06:33:36 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-net@FreeBSD.org Subject: [Bug 191975] [ng_iface] [regression] in 10.0: cannot contact local services Date: Tue, 05 Jul 2016 06:33:37 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.0-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: dgilbert@eicat.ca X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-net@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 06:33:37 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D191975 --- Comment #12 from dgilbert@eicat.ca --- So... just for clarification and history, PR 154557 (still open, but sounds like it should be closed) says much the same thing _except_ that setting tcpmssfix in mpd5's config fixed it. Note also FreeBSD-8.2 My router's history: Started 7.x. Worked (although memory leak in netgrap= h or mpd5 for most of 7.x). FreeBSD 8.x: still worked. Upgraded to 9.x around = 8.x EOL. Started having problems. Upgraded to 10.0 to see if that fixed it... then 10.1, 10.2 and now 10.3. Also: tcpmssfix not required as neither host blocks ICMP (even tho tcpmssfi= x is turned on (makes TCP setup faster anyways). Just adding all this for completeness... problem still persists and somewhat responsible people at BSDCan couldn't crack it. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-net@freebsd.org Tue Jul 5 13:27:51 2016 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 07B42B725EF for ; Tue, 5 Jul 2016 13:27:51 +0000 (UTC) (envelope-from daemon-user@freebsd.org) Received: from reviews.nyi.freebsd.org (reviews.nyi.freebsd.org [IPv6:2610:1c1:1:607c::16:b]) by mx1.freebsd.org (Postfix) with ESMTP id D92E718C9 for ; Tue, 5 Jul 2016 13:27:50 +0000 (UTC) (envelope-from daemon-user@freebsd.org) Received: by reviews.nyi.freebsd.org (Postfix, from userid 1346) id 75732143D; Tue, 5 Jul 2016 13:27:50 +0000 (UTC) Date: Tue, 5 Jul 2016 13:27:50 +0000 To: freebsd-net@freebsd.org From: "rrs (Randall Stewart)" Reply-to: D6689+325+6c89ed8b7a9bc66d@reviews.freebsd.org Subject: [Differential] D6689: tcp/lro: Implement hash table for LRO entries. Message-ID: <7c4f42a9fe93b326d9466f4362f324c2@localhost.localdomain> X-Priority: 3 X-Phabricator-Sent-This-Message: Yes X-Mail-Transport-Agent: MetaMTA X-Auto-Response-Suppress: All X-Phabricator-Mail-Tags: , , Thread-Topic: D6689: tcp/lro: Implement hash table for LRO entries. X-Herald-Rules: <64> X-Phabricator-To: X-Phabricator-To: X-Phabricator-To: X-Phabricator-To: X-Phabricator-To: X-Phabricator-To: X-Phabricator-To: X-Phabricator-To: X-Phabricator-To: X-Phabricator-Cc: Precedence: bulk In-Reply-To: References: Thread-Index: ZGRkYTdkZDNmZDVlODIxOWE3MGU3NDg3NmVjIFd7tdY= MIME-Version: 1.0 Content-Transfer-Encoding: base64 Content-Type: text/plain; charset="utf-8" X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.22 List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 13:27:51 -0000 cnJzIGFjY2VwdGVkIHRoaXMgcmV2aXNpb24uCnJycyBhZGRlZCBhIGNvbW1lbnQuCgoKICBUaGVz ZSBsb29rIGZpbmUgYW5kIGZhbWlsaWFyIDstKQogIAogIEkgdGhpbmsgYSBoYXNoIHRhYmxlIGFz IGFuIG9wdGlvbiB0byBzb3J0aW5nIGlzIHByb2JhYmx5IGEgZ29vZCB0aGluZyA6RAoKUkVWSVNJ T04gREVUQUlMCiAgaHR0cHM6Ly9yZXZpZXdzLmZyZWVic2Qub3JnL0Q2Njg5CgpFTUFJTCBQUkVG RVJFTkNFUwogIGh0dHBzOi8vcmV2aWV3cy5mcmVlYnNkLm9yZy9zZXR0aW5ncy9wYW5lbC9lbWFp bHByZWZlcmVuY2VzLwoKVG86IHNlcGhlcm9zYV9nbWFpbC5jb20sIGdsZWJpdXMsIGdubiwgYnos IHJ3YXRzb24sIGdhbGxhdGluLCBoc2VsYXNreSwgI3RyYW5zcG9ydCwgcnJzCkNjOiBmcmVlYnNk LW5ldC1saXN0Cg== From owner-freebsd-net@freebsd.org Tue Jul 5 14:36:08 2016 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 22504B7395A for ; Tue, 5 Jul 2016 14:36:08 +0000 (UTC) (envelope-from melissa-freebsd@littlebluecar.co.uk) Received: from filter.blacknosugar.com (filter.blacknosugar.com [212.13.204.214]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DDBB81DFB for ; Tue, 5 Jul 2016 14:36:05 +0000 (UTC) (envelope-from melissa-freebsd@littlebluecar.co.uk) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=littlebluecar.co.uk; s=dkim; h=Subject:To:References:Message-Id: Content-Transfer-Encoding:Date:In-Reply-To:From:Mime-Version:Content-Type: Sender:Reply-To:Cc:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help: List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=JY2FTkjPU4vIMP+5B0/eo5R+JX67AgqKtwVc2CvLTN0=; b=Yv+DcA/gnfgoDoGth7XpZvWgUz 7pSdyPTQeh46xuqjjfJOno4cC/BQQaR5Dceviom6IfZDjunjJeXuWRJBdzeyLhMEVwKW5Sn/HlFAJ AQX4Yjm2hb9QHgQP904buZMw8; Received: from [212.250.79.109] (helo=[192.168.6.32]) by filter.blacknosugar.com with esmtpsa (TLSv1:ECDHE-RSA-AES256-SHA:256) (Exim 4.87 (FreeBSD)) (envelope-from ) id 1bKQuG-000Fv4-O8 for freebsd-net@freebsd.org; Tue, 05 Jul 2016 15:00:57 +0100 Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 9.3 \(3124\)) From: Melissa Jenkins In-Reply-To: Date: Tue, 5 Jul 2016 15:00:50 +0100 Content-Transfer-Encoding: quoted-printable Message-Id: References: To: freebsd-net@freebsd.org X-Mailer: Apple Mail (2.3124) X-SA-Exim-Connect-IP: 212.250.79.109 X-SA-Exim-Mail-From: melissa-freebsd@littlebluecar.co.uk X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on filter.blacknosugar.com X-Spam-Level: X-Spam-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham autolearn_force=no version=3.4.1 Subject: Re: 10/STABLE BGP daemon with TCP MD5 signature X-SA-Exim-Version: 4.2 X-SA-Exim-Scanned: Yes (on filter.blacknosugar.com) X-Testing: Hello! X-Testing: Hello! X-Testing: Hello! X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 14:36:08 -0000 > On 5 Jul 2016, at 13:00, freebsd-net-request@freebsd.org wrote: >=20 > Is there anyone using openbgpd with BGP password with success? Yes, we have this working on 10.2, with openbgpd Using the set key and kernel parameters you have indicated. You do not = need to specify the tcp md5sig in the bgpd.conf file. I haven't confirmed if the BGP establishment is one way as the peer in = question does not allow us to attach outbound. Mel From owner-freebsd-net@freebsd.org Tue Jul 5 17:10:39 2016 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 985A9B72B0E for ; Tue, 5 Jul 2016 17:10:39 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 87DCA1870 for ; Tue, 5 Jul 2016 17:10:39 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u65HAcUr060535 for ; Tue, 5 Jul 2016 17:10:39 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-net@FreeBSD.org Subject: [Bug 201694] 10.2-BETA2 crashing when killing VIMAGE/VNET jails Date: Tue, 05 Jul 2016 17:10:38 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.2-STABLE X-Bugzilla-Keywords: crash, needs-qa, vimage X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: bz@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-net@FreeBSD.org X-Bugzilla-Flags: mfc-stable10? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 17:10:39 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D201694 --- Comment #19 from Bjoern A. Zeeb --- Can you please try FreeBSD 11.0-ALPHA6 or later? --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-net@freebsd.org Tue Jul 5 17:10:51 2016 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6FE06B72B37 for ; Tue, 5 Jul 2016 17:10:51 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5F4C51927 for ; Tue, 5 Jul 2016 17:10:51 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u65HAogH061955 for ; Tue, 5 Jul 2016 17:10:51 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-net@FreeBSD.org Subject: [Bug 201694] 10.2-BETA2 crashing when killing VIMAGE/VNET jails Date: Tue, 05 Jul 2016 17:10:51 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.2-STABLE X-Bugzilla-Keywords: crash, needs-qa, vimage X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: bz@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: bz@FreeBSD.org X-Bugzilla-Flags: mfc-stable10? X-Bugzilla-Changed-Fields: assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jul 2016 17:10:51 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D201694 Bjoern A. Zeeb changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-net@FreeBSD.org |bz@FreeBSD.org --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-net@freebsd.org Wed Jul 6 01:43:50 2016 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4A9E2B205CA for ; Wed, 6 Jul 2016 01:43:50 +0000 (UTC) (envelope-from daemon-user@freebsd.org) Received: from reviews.nyi.freebsd.org (reviews.nyi.freebsd.org [IPv6:2610:1c1:1:607c::16:b]) by mx1.freebsd.org (Postfix) with ESMTP id 28098176F for ; Wed, 6 Jul 2016 01:43:50 +0000 (UTC) (envelope-from daemon-user@freebsd.org) Received: by reviews.nyi.freebsd.org (Postfix, from userid 1346) id BD32818CA; Wed, 6 Jul 2016 01:43:49 +0000 (UTC) Date: Wed, 6 Jul 2016 01:43:49 +0000 To: freebsd-net@freebsd.org From: "sepherosa_gmail.com (Sepherosa Ziehau)" Reply-to: D6689+325+6c89ed8b7a9bc66d@reviews.freebsd.org Subject: [Differential] D6689: tcp/lro: Implement hash table for LRO entries. Message-ID: <40411f33dd84bd596e0a38c74ac754a4@localhost.localdomain> X-Priority: 3 X-Phabricator-Sent-This-Message: Yes X-Mail-Transport-Agent: MetaMTA X-Auto-Response-Suppress: All X-Phabricator-Mail-Tags: Thread-Topic: D6689: tcp/lro: Implement hash table for LRO entries. X-Herald-Rules: <64> X-Phabricator-To: X-Phabricator-To: X-Phabricator-To: X-Phabricator-To: X-Phabricator-To: X-Phabricator-To: X-Phabricator-To: X-Phabricator-To: X-Phabricator-To: X-Phabricator-Cc: Precedence: bulk In-Reply-To: References: Thread-Index: ZGRkYTdkZDNmZDVlODIxOWE3MGU3NDg3NmVjIFd8YlU= MIME-Version: 1.0 Content-Transfer-Encoding: base64 Content-Type: text/plain; charset="utf-8" X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.22 List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2016 01:43:50 -0000 c2VwaGVyb3NhX2dtYWlsLmNvbSBhZGRlZCBhIGNvbW1lbnQuCgoKICBJbiBodHRwczovL3Jldmll d3MuZnJlZWJzZC5vcmcvRDY2ODkjMTQ4MjUyLCBAcnJzIHdyb3RlOgogIAogID4gVGhlc2UgbG9v ayBmaW5lIGFuZCBmYW1pbGlhciA7LSkKICA+CiAgPiBJIHRoaW5rIGEgaGFzaCB0YWJsZSBhcyBh biBvcHRpb24gdG8gc29ydGluZyBpcyBwcm9iYWJseSBhIGdvb2QgdGhpbmcgOkQKICAKICAKICBZ ZWFoLCBhbmQgSSBnb3QgcHJldHR5IGV4aXRpbmcgcGVyZm9ybWFuY2UgaW1wcm92ZW1lbnQgYW5k IG5vdGljZWFibGUgbGF0ZW5jeSByZWR1Y3Rpb24gd2l0aCBib3RoIG1ldGhvZHMgaW4gQXp1cmUg Zm9yIG5naW54IDFLQn40MEtCIHdlYiBvYmplY3RzIGFuZCA0LzE0IHJlcXMvY29ubiA6KSkuICBJ IHdpbGwgcG9zdCB0aGUgcmVzdWx0IG9uY2UgMTI4LzI1NiBtYnVmIHF1ZXVlIGRlcHRoIGZvciBz b3J0aW5nIG1ldGhvZCBpcyBkb25lICg1MTIvMTAyNC8yMDQ4LzQwOTYgaGF2ZSBiZWVuIGNvbXBs ZXRlZCBzbyBmYXIpLgoKUkVWSVNJT04gREVUQUlMCiAgaHR0cHM6Ly9yZXZpZXdzLmZyZWVic2Qu b3JnL0Q2Njg5CgpFTUFJTCBQUkVGRVJFTkNFUwogIGh0dHBzOi8vcmV2aWV3cy5mcmVlYnNkLm9y Zy9zZXR0aW5ncy9wYW5lbC9lbWFpbHByZWZlcmVuY2VzLwoKVG86IHNlcGhlcm9zYV9nbWFpbC5j b20sIGdsZWJpdXMsIGdubiwgYnosIHJ3YXRzb24sIGdhbGxhdGluLCBoc2VsYXNreSwgI3RyYW5z cG9ydCwgcnJzCkNjOiBmcmVlYnNkLW5ldC1saXN0Cg== From owner-freebsd-net@freebsd.org Wed Jul 6 10:13:10 2016 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AE31CB74A0A for ; Wed, 6 Jul 2016 10:13:10 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9DEC215BA for ; Wed, 6 Jul 2016 10:13:10 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u66ADA6H071627 for ; Wed, 6 Jul 2016 10:13:10 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-net@FreeBSD.org Subject: [Bug 210747] Routing table screwed up when adding routes for IPv6 Date: Wed, 06 Jul 2016 10:13:10 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: ae@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-net@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2016 10:13:10 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D210747 Andrey V. Elsukov changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |ae@FreeBSD.org, | |melifaro@FreeBSD.org --- Comment #1 from Andrey V. Elsukov --- It looks like the address specified after `-interface tun0' argument is considered as netmask and since it is not contiguous, this leads to such results. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-net@freebsd.org Wed Jul 6 10:27:38 2016 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 92936B74CEC for ; Wed, 6 Jul 2016 10:27:38 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7B9BC1AF6 for ; Wed, 6 Jul 2016 10:27:38 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u66ARce6000350 for ; Wed, 6 Jul 2016 10:27:38 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-net@FreeBSD.org Subject: [Bug 210747] Routing table screwed up when adding routes for IPv6 Date: Wed, 06 Jul 2016 10:27:38 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: tuexen@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-net@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2016 10:27:38 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D210747 --- Comment #2 from Michael Tuexen --- OK. Then I would expect the get an error instead of strange settings... --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-net@freebsd.org Wed Jul 6 13:47:55 2016 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 92F09B7588A for ; Wed, 6 Jul 2016 13:47:55 +0000 (UTC) (envelope-from patfbsd@davenulle.org) Received: from sender163-mail.zoho.com (sender163-mail.zoho.com [74.201.84.163]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8569B13AB for ; Wed, 6 Jul 2016 13:47:54 +0000 (UTC) (envelope-from patfbsd@davenulle.org) Received: from mr185083 (mr185083.univ-rennes1.fr [129.20.185.83]) by mx.zohomail.com with SMTPS id 1467812831920731.1540503196479; Wed, 6 Jul 2016 06:47:11 -0700 (PDT) Date: Wed, 6 Jul 2016 15:47:06 +0200 From: Patrick Lamaiziere To: Melissa Jenkins Cc: freebsd-net@freebsd.org Subject: Re: 10/STABLE BGP daemon with TCP MD5 signature Message-ID: <20160706154706.2d73a4b8@mr185083> In-Reply-To: References: X-Mailer: Claws Mail 3.13.2 (GTK+ 2.24.29; amd64-portbld-freebsd10.3) MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Jul 2016 13:47:55 -0000 Le Tue, 5 Jul 2016 15:00:50 +0100, Melissa Jenkins a écrit : Hello, > > On 5 Jul 2016, at 13:00, freebsd-net-request@freebsd.org wrote: > > > > Is there anyone using openbgpd with BGP password with success? > > Yes, we have this working on 10.2, with openbgpd > > Using the set key and kernel parameters you have indicated. You do > not need to specify the tcp md5sig in the bgpd.conf file. > > I haven't confirmed if the BGP establishment is one way as the peer > in question does not allow us to attach outbound. Yes it works when openbgpd does not initiate the connection. But here, I have to connect to BGP peers. bird (ipv4) and bird6 (ipv6) work fine with tcp signature. Thank you all, regards. From owner-freebsd-net@freebsd.org Thu Jul 7 05:08:02 2016 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E16E8B75A9E for ; Thu, 7 Jul 2016 05:08:02 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D10B0185F for ; Thu, 7 Jul 2016 05:08:02 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u67582mW076250 for ; Thu, 7 Jul 2016 05:08:02 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-net@FreeBSD.org Subject: [Bug 210488] ue0 axge AX88179 Ierrs errors under havy network load Date: Thu, 07 Jul 2016 05:08:03 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.3-RELEASE X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: yongari@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-net@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 05:08:03 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D210488 --- Comment #3 from Pyun YongHyeon --- (In reply to Pyun YongHyeon from comment #2) I was able to reproduce the issue but I'm still not sure why it happens. Currently known workaround for the issue is enabling Ethernet flow control like this. #ifconfig ue0 media auto media-opt flow The command above will re-establish a link with link partner and enables Ethernet flow control. Check current media with ifconfig(8) after executing the command above. You should see "rxpause" and "txpause" in media row of ifconfig output when everything goes right. Note, link partner should also support flow control otherwise the command above has no effect. Probably driver needs some change on RX FIFO configuration when flow-control is not active. Unfortunately there is no publicly available data sheet so I have to guess on that configuration. If I manage to find a clue I'll let you know. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-net@freebsd.org Thu Jul 7 07:15:35 2016 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1F1E3B21374 for ; Thu, 7 Jul 2016 07:15:35 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0EEBC1144 for ; Thu, 7 Jul 2016 07:15:35 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u677FYOT026574 for ; Thu, 7 Jul 2016 07:15:34 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-net@FreeBSD.org Subject: [Bug 210488] ue0 axge AX88179 Ierrs errors under havy network load Date: Thu, 07 Jul 2016 07:15:35 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.3-RELEASE X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: tatarinov_mike@yahoo.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-net@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 07:15:35 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D210488 --- Comment #4 from mtatarin76 --- (In reply to Pyun YongHyeon from comment #3) Please take a look at command output error message: [2.3.1-RELEASE][root@xxx]/root: ifconfig ue0 media auto media-opt flow ifconfig: media-opt: bad value --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-net@freebsd.org Thu Jul 7 07:17:55 2016 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8FC64B21462 for ; Thu, 7 Jul 2016 07:17:55 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7F7B6124B for ; Thu, 7 Jul 2016 07:17:55 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u677Htaq029379 for ; Thu, 7 Jul 2016 07:17:55 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-net@FreeBSD.org Subject: [Bug 210488] ue0 axge AX88179 Ierrs errors under havy network load Date: Thu, 07 Jul 2016 07:17:55 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.3-RELEASE X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: tatarinov_mike@yahoo.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-net@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 07:17:55 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D210488 --- Comment #5 from mtatarin76 --- (In reply to Pyun YongHyeon from comment #3) and ifconfig output as well: ue0: flags=3D8843 metric 0 mtu 1500 options=3D8000b ether xx:xx:xx:xx:xx:xx inet6 xxxx::xxx:xxxx:xxxx:xxxx%ue0 prefixlen 64 scopeid 0x7 inet xxx.xxx.xxx.xxx netmask 0xffffff00 broadcast xxx.xxx.xxx.xxx nd6 options=3D21 media: Ethernet autoselect (100baseTX ) status: active --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-net@freebsd.org Thu Jul 7 07:28:48 2016 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AE9B8B217C0 for ; Thu, 7 Jul 2016 07:28:48 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 91166170D for ; Thu, 7 Jul 2016 07:28:48 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u677Sm9B050850 for ; Thu, 7 Jul 2016 07:28:48 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-net@FreeBSD.org Subject: [Bug 210488] ue0 axge AX88179 Ierrs errors under havy network load Date: Thu, 07 Jul 2016 07:28:48 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.3-RELEASE X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: yongari@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-net@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 07:28:48 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D210488 --- Comment #6 from Pyun YongHyeon --- (In reply to mtatarin76 from comment #4) Oops, sorry, there was a typo. The command should be: #ifconfig ue0 media auto mediaopt flow --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-net@freebsd.org Thu Jul 7 07:40:52 2016 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BE218B21B10 for ; Thu, 7 Jul 2016 07:40:52 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id ADE7E1F88 for ; Thu, 7 Jul 2016 07:40:52 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u677eq83075589 for ; Thu, 7 Jul 2016 07:40:52 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-net@FreeBSD.org Subject: [Bug 210488] ue0 axge AX88179 Ierrs errors under havy network load Date: Thu, 07 Jul 2016 07:40:52 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.3-RELEASE X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: tatarinov_mike@yahoo.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-net@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 07:40:52 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D210488 --- Comment #7 from mtatarin76 --- (In reply to Pyun YongHyeon from comment #6) Thank you very much for the help!!! Your workaround has solved my problem! I doublechecked my issue under heavy load and now I do not see any Ierrs errors. ifconfig output after ifconfig ue0 media auto mediaopt flow ue0: flags=3D8843 metric 0 mtu 1500 options=3D8000b ether xx:xx:xx:xx:xx:xx inet6 xxxx::xxx:xxxx:xxxx:xxxx%ue0 prefixlen 64 scopeid 0x7 inet xxx.xxx.xxx.xxx netmask 0xffffff00 broadcast xxx.xxx.xxx.xxx nd6 options=3D21 media: Ethernet autoselect (100baseTX ) status: active If as you said that you reproduced this problem, how can we make a patch for this problem and include it in future FreeBSD release as permanent solution? Could you help with this? Thank you very much once again! --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-net@freebsd.org Thu Jul 7 08:19:40 2016 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DBBDEB7657E for ; Thu, 7 Jul 2016 08:19:40 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BD3AE1F69 for ; Thu, 7 Jul 2016 08:19:40 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u678JeLS086270 for ; Thu, 7 Jul 2016 08:19:40 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-net@FreeBSD.org Subject: [Bug 210488] ue0 axge AX88179 Ierrs errors under havy network load Date: Thu, 07 Jul 2016 08:19:41 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.3-RELEASE X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: yongari@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-net@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 08:19:41 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D210488 --- Comment #8 from Pyun YongHyeon --- (In reply to mtatarin76 from comment #7) Probably you can put flow control options to '/etc/start_if.ue0' file as a workaround(Not tested though). Enabling flow-control by default in driver would be a POLA violation so I wanted to mitigate the issue when flow-control is not active. However, it seems there is no good way to mitigate the issue without increasing H/W RX FIFO size. The hardware have a fixed sized buffer so we may have to rely on other way like flow-control to mitigate that. The issue shall frequently happen when the controller operates at high-speed(USB 2.0) and established link is 1000baseT(i.e. the network bottleneck is USB 2.0 bus). I contacted the vendor to get more information on the issue so let's see how it goes. If the vendor confirms my theory, documenting it in axge(4) would be best one. I guess you may see better result when you plug the controller to USB 3.0 port. Due to lack of H/W, I wasn't able to test that. Thanks for testing! --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-net@freebsd.org Thu Jul 7 08:31:42 2016 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AE095B768A6 for ; Thu, 7 Jul 2016 08:31:42 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9DA0C1877 for ; Thu, 7 Jul 2016 08:31:42 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u678VgFe012479 for ; Thu, 7 Jul 2016 08:31:42 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-net@FreeBSD.org Subject: [Bug 210488] ue0 axge AX88179 Ierrs errors under havy network load Date: Thu, 07 Jul 2016 08:31:42 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.3-RELEASE X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: tatarinov_mike@yahoo.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-net@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jul 2016 08:31:42 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D210488 --- Comment #9 from mtatarin76 --- Thank you once again for your efforts! I put this workaround already at rc boot shell script and it worked. I'm happy with it now! I uses USB3 port meanwhile. It will good if you will get some confirmation and explanation from vendor = as well, I will interested in further updates if you will get anything in the future. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-net@freebsd.org Fri Jul 8 01:48:21 2016 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E1476B7664E for ; Fri, 8 Jul 2016 01:48:21 +0000 (UTC) (envelope-from daemon-user@freebsd.org) Received: from reviews.nyi.freebsd.org (reviews.nyi.freebsd.org [IPv6:2610:1c1:1:607c::16:b]) by mx1.freebsd.org (Postfix) with ESMTP id BE4DD171F for ; Fri, 8 Jul 2016 01:48:21 +0000 (UTC) (envelope-from daemon-user@freebsd.org) Received: by reviews.nyi.freebsd.org (Postfix, from userid 1346) id 452D6186E; Fri, 8 Jul 2016 01:48:21 +0000 (UTC) Date: Fri, 8 Jul 2016 01:48:21 +0000 To: freebsd-net@freebsd.org From: "sepherosa_gmail.com (Sepherosa Ziehau)" Reply-to: D6689+325+6c89ed8b7a9bc66d@reviews.freebsd.org Subject: [Differential] D6689: tcp/lro: Implement hash table for LRO entries. Message-ID: <81a3f0c9e90040e6e1d02e7501166870@localhost.localdomain> X-Priority: 3 X-Phabricator-Sent-This-Message: Yes X-Mail-Transport-Agent: MetaMTA X-Auto-Response-Suppress: All X-Phabricator-Mail-Tags: Thread-Topic: D6689: tcp/lro: Implement hash table for LRO entries. X-Herald-Rules: <64> X-Phabricator-To: X-Phabricator-To: X-Phabricator-To: X-Phabricator-To: X-Phabricator-To: X-Phabricator-To: X-Phabricator-To: X-Phabricator-To: X-Phabricator-To: X-Phabricator-Cc: Precedence: bulk In-Reply-To: References: Thread-Index: ZGRkYTdkZDNmZDVlODIxOWE3MGU3NDg3NmVjIFd/BmU= MIME-Version: 1.0 Content-Transfer-Encoding: base64 Content-Type: text/plain; charset="utf-8" X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.22 List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jul 2016 01:48:22 -0000 c2VwaGVyb3NhX2dtYWlsLmNvbSBhZGRlZCBhIGNvbW1lbnQuCgoKICBJbiBodHRwczovL3Jldmll d3MuZnJlZWJzZC5vcmcvRDY2ODkjMTQ4NDczLCBAc2VwaGVyb3NhX2dtYWlsLmNvbSB3cm90ZToK ICAKICA+IEluIGh0dHBzOi8vcmV2aWV3cy5mcmVlYnNkLm9yZy9ENjY4OSMxNDgyNTIsIEBycnMg d3JvdGU6CiAgPgogID4gPiBUaGVzZSBsb29rIGZpbmUgYW5kIGZhbWlsaWFyIDstKQogID4gPgog ID4gPiBJIHRoaW5rIGEgaGFzaCB0YWJsZSBhcyBhbiBvcHRpb24gdG8gc29ydGluZyBpcyBwcm9i YWJseSBhIGdvb2QgdGhpbmcgOkQKICA+CiAgPgogID4gWWVhaCwgYW5kIEkgZ290IHByZXR0eSBl eGl0aW5nIHBlcmZvcm1hbmNlIGltcHJvdmVtZW50IGFuZCBub3RpY2VhYmxlIGxhdGVuY3kgcmVk dWN0aW9uIHdpdGggYm90aCBtZXRob2RzIGluIEF6dXJlIGZvciBuZ2lueCAxS0J+NDBLQiB3ZWIg b2JqZWN0cyBhbmQgNC8xNCByZXFzL2Nvbm4gOikpLiAgSSB3aWxsIHBvc3QgdGhlIHJlc3VsdCBv bmNlIDEyOC8yNTYgbWJ1ZiBxdWV1ZSBkZXB0aCBmb3Igc29ydGluZyBtZXRob2QgaXMgZG9uZSAo NTEyLzEwMjQvMjA0OC80MDk2IGhhdmUgYmVlbiBjb21wbGV0ZWQgc28gZmFyKS4KICAKICAKICBJ ZiB5b3UgYXJlIGludGVyZXN0ZWQsIEkgaGF2ZSB0aGUgbWVhc3VyZW1lbnQgcmVzdWx0IHBvc3Rl ZCBoZXJlOgogIHJlc3VsdHMgPGh0dHBzOi8vcGVvcGxlLmZyZWVic2Qub3JnL35zZXBoZS9scm9f cGljLz4KICAKICBGb3Igbmdpbnggd29ya2xvYWQsIGJvdGggbGF0ZW5jeSBhbmQgcGVyZm9ybWFu Y2UgYXJlIG1lYXN1cmVkLiAgQXMgeW91IGNhbiBzZWUgYm90aCBwZXJmb3JtYW5jZSBhbmQgbGF0 ZW5jeSBnb3QgaW1wcm92ZWQsIGFsbW9zdCBmb3IgYWxsIG5naW54IHdvcmtsb2FkcyB3ZSBoYXZl IHRlc3RlZCBzbyBmYXIuCiAgCiAgQm90aCBtZXRob2RzIHByb3ZpZGUgc2lnbmlmaWNhbnQgaW1w cm92ZW1lbnQgZm9yIHNvbWUga2luZHMgb2Ygd29ya2xvYWQ6CiAgMUtCIG9iaiAxNHJlcXMvY29u biA8aHR0cHM6Ly9wZW9wbGUuZnJlZWJzZC5vcmcvfnNlcGhlL2xyb19waWMvMUtfMTQucG5nPgog IDhLQiBvYmogMTRyZXFzL2Nvbm4gPGh0dHBzOi8vcGVvcGxlLmZyZWVic2Qub3JnL35zZXBoZS9s cm9fcGljLzhLXzE0LnBuZz4KClJFVklTSU9OIERFVEFJTAogIGh0dHBzOi8vcmV2aWV3cy5mcmVl YnNkLm9yZy9ENjY4OQoKRU1BSUwgUFJFRkVSRU5DRVMKICBodHRwczovL3Jldmlld3MuZnJlZWJz ZC5vcmcvc2V0dGluZ3MvcGFuZWwvZW1haWxwcmVmZXJlbmNlcy8KClRvOiBzZXBoZXJvc2FfZ21h aWwuY29tLCBnbGViaXVzLCBnbm4sIGJ6LCByd2F0c29uLCBnYWxsYXRpbiwgaHNlbGFza3ksICN0 cmFuc3BvcnQsIHJycwpDYzogZnJlZWJzZC1uZXQtbGlzdAo= From owner-freebsd-net@freebsd.org Fri Jul 8 15:09:37 2016 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AB014B85A4F for ; Fri, 8 Jul 2016 15:09:37 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9A0421BBE for ; Fri, 8 Jul 2016 15:09:37 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u68F9bVI042872 for ; Fri, 8 Jul 2016 15:09:37 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-net@FreeBSD.org Subject: [Bug 203630] [Hyper-V] [nat] [tcp] 10.2 NAT bug in TCP stack or hyperv netsvc driver Date: Fri, 08 Jul 2016 15:09:37 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.2-RELEASE X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: kp@freebsd.org X-Bugzilla-Status: Closed X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: weh@microsoft.com X-Bugzilla-Flags: maintainer-feedback- mfc-stable9? mfc-stable10+ X-Bugzilla-Changed-Fields: resolution bug_status cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jul 2016 15:09:37 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D203630 Kristof Provost changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED Status|In Progress |Closed CC| |kp@freebsd.org --=20 You are receiving this mail because: You are on the CC list for the bug.=