From owner-freebsd-net@freebsd.org Sun Feb 25 20:33:08 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 17EDDF26740 for ; Sun, 25 Feb 2018 20:33:08 +0000 (UTC) (envelope-from jschauma@netmeister.org) Received: from panix.netmeister.org (panix.netmeister.org [IPv6:2001:470:30:84:e276:63ff:fe72:3900]) by mx1.freebsd.org (Postfix) with ESMTP id 3AF946F482 for ; Sun, 25 Feb 2018 20:33:07 +0000 (UTC) (envelope-from jschauma@netmeister.org) Received: by panix.netmeister.org (Postfix, from userid 1000) id C6B4E6513F; Sun, 25 Feb 2018 15:33:06 -0500 (EST) Date: Sun, 25 Feb 2018 15:33:06 -0500 From: Jan Schaumann To: freebsd-net@freebsd.org Subject: tcpmux port opened for dual-stack results Message-ID: <20180225203306.GL8306@netmeister.org> Mail-Followup-To: jschauma@netmeister.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.24 (2015-08-30) X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.25 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, 25 Feb 2018 20:33:08 -0000 Hi, I just encountered something that befuddles me: On an AWS EC2 instance (ami-d0b520b8, FreeBSD 10.1-RELEASE), I noticed that 'telnet www.google.com 80' first opens a UDP socket to google's addresses on port 1, then closes it without sending any data before opening the TCP socket. Sample (trimmed) ktrace output: 1098 telnet RET socket 3 1098 telnet CALL connect(0x3,0xbfbfe8c8,0x1c) 1098 telnet STRU struct sockaddr { AF_INET6, [2607:f8b0:4004:807::2004]:1 } 1098 telnet RET connect -1 errno 65 No route to host 1098 telnet CALL close(0x3) 1098 telnet RET close 0 1098 telnet CALL socket(PF_INET,SOCK_CLOEXEC|SOCK_DGRAM,IPPROTO_UDP) 1098 telnet RET socket 3 1098 telnet CALL connect(0x3,0xbfbfe8c8,0x10) 1098 telnet STRU struct sockaddr { AF_INET, 172.217.12.228:1 } 1098 telnet RET connect 0 1098 telnet CALL getsockname(0x3,0x28c311dc,0xbfbfe8c4) 1098 telnet STRU struct sockaddr { AF_INET, 10.234.105.225:22661 } 1098 telnet RET getsockname 0 1098 telnet CALL close(0x3) [...] 1098 telnet GIO fd 1 wrote 25 bytes "Trying 172.217.12.228... " 1098 telnet RET write 25/0x19 1098 telnet CALL socket(PF_INET,SOCK_STREAM,IPPROTO_TCP) 1098 telnet RET socket 3 [...] 1098 telnet CALL connect(0x3,0x28c0f0f0,0x10) 1098 telnet STRU struct sockaddr { AF_INET, 172.217.12.228:80 } 1098 telnet RET connect 0 I don't see this happening when the destination host in question has either only an IPv6 record or only an IPv4 record. In those cases, telnet will try to open the TCP socket to port 80. In the case of dual-stack addresses, however, I see the above behaviour. (I also see the same behavior in e.g. nc(1), so this is not a telnet(1) specific thing.) Anybody have any idea why this is done? -Jan From owner-freebsd-net@freebsd.org Sun Feb 25 21:01:31 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C9DCEF28936 for ; Sun, 25 Feb 2018 21:01:31 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1A56670914 for ; Sun, 25 Feb 2018 21:01:31 +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 mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 589F4234DD for ; Sun, 25 Feb 2018 21:01:30 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w1PL1UW6025124 for ; Sun, 25 Feb 2018 21:01:30 GMT (envelope-from bugzilla-noreply@FreeBSD.org) Received: (from bugzilla@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w1PL1URJ025114 for freebsd-net@FreeBSD.org; Sun, 25 Feb 2018 21:01:30 GMT (envelope-from bugzilla-noreply@FreeBSD.org) Message-Id: <201802252101.w1PL1URJ025114@kenobi.freebsd.org> X-Authentication-Warning: kenobi.freebsd.org: bugzilla set sender to bugzilla-noreply@FreeBSD.org using -f From: bugzilla-noreply@FreeBSD.org To: freebsd-net@FreeBSD.org Subject: Problem reports for freebsd-net@FreeBSD.org that need special attention Date: Sun, 25 Feb 2018 21:01:30 +0000 MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.25 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.25 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, 25 Feb 2018 21:01:32 -0000 To view an individual PR, use: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=(Bug Id). The following is a listing of current problems submitted by FreeBSD users, which need special attention. These represent problem reports covering all versions including experimental development code and obsolete releases. Status | Bug Id | Description ------------+-----------+--------------------------------------------------- In Progress | 165622 | [ndis][panic][patch] Unregistered use of FPU in k In Progress | 206581 | bxe_ioctl_nvram handler is faulty In Progress | 221146 | [ixgbe] Problem with second laggport New | 204438 | setsockopt() handling of kern.ipc.maxsockbuf limi New | 205592 | TCP processing in IPSec causes kernel panic New | 206053 | kqueue support code of netmap causes panic New | 213410 | [carp] service netif restart causes hang only whe New | 217748 | sys/dev/ixgbe/if_ix.c: PVS-Studio: Assignment to Open | 193452 | Dell PowerEdge 210 II -- Kernel panic bce (broadc Open | 194485 | Userland cannot add IPv6 prefix routes Open | 194515 | Fatal Trap 12 Kernel with vimage Open | 199136 | [if_tap] Added down_on_close sysctl variable to t Open | 202510 | [CARP] advertisements sourced from CARP IP cause Open | 206544 | sendmsg(2) (sendto(2) too?) can fail with EINVAL; Open | 211962 | bxe driver queue soft hangs and flooding tx_soft_ Open | 213814 | AWS/EC2: no egress traffic stats on ixv(4) Open | 218579 | Wake on Lan doesn't work for bge NIC driver Open | 222273 | igb(4): Kernel panic (fatal trap 12) due to netwo 18 problems total for which you should take action. From owner-freebsd-net@freebsd.org Sun Feb 25 21:13:41 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6E0E2F29D9C for ; Sun, 25 Feb 2018 21:13:41 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from kib.kiev.ua (kib.kiev.ua [IPv6:2001:470:d5e7:1::1]) (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 DF571716EB for ; Sun, 25 Feb 2018 21:13:40 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from tom.home (kib@localhost [127.0.0.1]) by kib.kiev.ua (8.15.2/8.15.2) with ESMTPS id w1PLDTaF029288 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Sun, 25 Feb 2018 23:13:33 +0200 (EET) (envelope-from kostikbel@gmail.com) DKIM-Filter: OpenDKIM Filter v2.10.3 kib.kiev.ua w1PLDTaF029288 Received: (from kostik@localhost) by tom.home (8.15.2/8.15.2/Submit) id w1PLDTHq029287; Sun, 25 Feb 2018 23:13:29 +0200 (EET) (envelope-from kostikbel@gmail.com) X-Authentication-Warning: tom.home: kostik set sender to kostikbel@gmail.com using -f Date: Sun, 25 Feb 2018 23:13:29 +0200 From: Konstantin Belousov To: jschauma@netmeister.org Cc: freebsd-net@freebsd.org Subject: Re: tcpmux port opened for dual-stack results Message-ID: <20180225211329.GP94212@kib.kiev.ua> References: <20180225203306.GL8306@netmeister.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20180225203306.GL8306@netmeister.org> User-Agent: Mutt/1.9.3 (2018-01-21) X-Spam-Status: No, score=-2.0 required=5.0 tests=ALL_TRUSTED,BAYES_00, DKIM_ADSP_CUSTOM_MED,FREEMAIL_FROM,NML_ADSP_CUSTOM_MED autolearn=no autolearn_force=no version=3.4.1 X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on tom.home X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.25 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, 25 Feb 2018 21:13:41 -0000 On Sun, Feb 25, 2018 at 03:33:06PM -0500, Jan Schaumann wrote: > Hi, > > I just encountered something that befuddles me: > > On an AWS EC2 instance (ami-d0b520b8, FreeBSD 10.1-RELEASE), I noticed > that 'telnet www.google.com 80' first opens a UDP socket to google's > addresses on port 1, then closes it without sending any data before > opening the TCP socket. > > Sample (trimmed) ktrace output: > > 1098 telnet RET socket 3 > 1098 telnet CALL connect(0x3,0xbfbfe8c8,0x1c) > 1098 telnet STRU struct sockaddr { AF_INET6, [2607:f8b0:4004:807::2004]:1 } > 1098 telnet RET connect -1 errno 65 No route to host > 1098 telnet CALL close(0x3) > 1098 telnet RET close 0 > 1098 telnet CALL socket(PF_INET,SOCK_CLOEXEC|SOCK_DGRAM,IPPROTO_UDP) > 1098 telnet RET socket 3 > 1098 telnet CALL connect(0x3,0xbfbfe8c8,0x10) > 1098 telnet STRU struct sockaddr { AF_INET, 172.217.12.228:1 } > 1098 telnet RET connect 0 > 1098 telnet CALL getsockname(0x3,0x28c311dc,0xbfbfe8c4) > 1098 telnet STRU struct sockaddr { AF_INET, 10.234.105.225:22661 } > 1098 telnet RET getsockname 0 > 1098 telnet CALL close(0x3) > [...] > 1098 telnet GIO fd 1 wrote 25 bytes > "Trying 172.217.12.228... > " > 1098 telnet RET write 25/0x19 > 1098 telnet CALL socket(PF_INET,SOCK_STREAM,IPPROTO_TCP) > 1098 telnet RET socket 3 > [...] > 1098 telnet CALL connect(0x3,0x28c0f0f0,0x10) > 1098 telnet STRU struct sockaddr { AF_INET, 172.217.12.228:80 } > 1098 telnet RET connect 0 > > > I don't see this happening when the destination host in question has > either only an IPv6 record or only an IPv4 record. In those cases, > telnet will try to open the TCP socket to port 80. In the case of > dual-stack addresses, however, I see the above behaviour. > > (I also see the same behavior in e.g. nc(1), so this is not a telnet(1) > specific thing.) > > Anybody have any idea why this is done? This is getaddrinfo(3) using fake connect(2) to get appropriate source address for the requested destination. They are used to order the result set when there is more that one element, which somewhat explains why do you need inet and inet6 addresses to see this. Note that created socket is not only to port 1 but also UDP. From owner-freebsd-net@freebsd.org Sun Feb 25 22:42:50 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 51EC9F2F8BE for ; Sun, 25 Feb 2018 22:42:50 +0000 (UTC) (envelope-from jschauma@netmeister.org) Received: from panix.netmeister.org (panix.netmeister.org [IPv6:2001:470:30:84:e276:63ff:fe72:3900]) by mx1.freebsd.org (Postfix) with ESMTP id 0757274BCA for ; Sun, 25 Feb 2018 22:42:50 +0000 (UTC) (envelope-from jschauma@netmeister.org) Received: by panix.netmeister.org (Postfix, from userid 1000) id 1AF476513F; Sun, 25 Feb 2018 17:42:44 -0500 (EST) Date: Sun, 25 Feb 2018 17:42:44 -0500 From: Jan Schaumann To: Konstantin Belousov Cc: freebsd-net@freebsd.org Subject: Re: tcpmux port opened for dual-stack results Message-ID: <20180225224244.GM8306@netmeister.org> References: <20180225203306.GL8306@netmeister.org> <20180225211329.GP94212@kib.kiev.ua> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20180225211329.GP94212@kib.kiev.ua> User-Agent: Mutt/1.5.24 (2015-08-30) X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.25 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, 25 Feb 2018 22:42:50 -0000 Konstantin Belousov wrote: > This is getaddrinfo(3) using fake connect(2) to get appropriate source > address for the requested destination. They are used to order the result > set when there is more that one element Interesting - thanks! https://svnweb.freebsd.org/base/head/lib/libc/net/getaddrinfo.c?revision=327029&view=markup#l877 https://svnweb.freebsd.org/base/head/lib/libc/net/getaddrinfo.c?revision=327029&view=markup#l980 -Jan From owner-freebsd-net@freebsd.org Mon Feb 26 09:48:19 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EE19EF39267 for ; Mon, 26 Feb 2018 09:48:18 +0000 (UTC) (envelope-from dejamuse@bonalumi.it) Received: from bonalumi.it (unknown [IPv6:2a02:af8:6:2700::1:1050]) (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 97EFF6CB7E for ; Mon, 26 Feb 2018 09:48:18 +0000 (UTC) (envelope-from dejamuse@bonalumi.it) Received: from mail.bonalumi.it (unknown [118.185.127.61]) by server11050.poundhost.com (Postfix) with ESMTPSA id 42E1C572EAD0 for ; Mon, 26 Feb 2018 10:45:55 +0100 (CET) From: "dejamuse" To: "freebsd net" Subject: Date: Mon, 26 Feb 2018 12:48:08 +0300 Message-Id: <2317178krge1$hbz0u7xd$c4m0hqaf$@bonalumi.it> MIME-Version: 1.0 X-Mailer: Microsoft Outlook 15.0 Thread-Index: K2gxaGNyXiRmdjJ5PXhkKmZeXj1fbg== Content-Language: en-us Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.25 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.25 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, 26 Feb 2018 09:48:19 -0000 hi Freebsd https://goo.gl/kWA3ua dejamuse From owner-freebsd-net@freebsd.org Mon Feb 26 12:41:32 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6DB92F1ECD5 for ; Mon, 26 Feb 2018 12:41:32 +0000 (UTC) (envelope-from bu7cher@yandex.ru) Received: from forward105o.mail.yandex.net (forward105o.mail.yandex.net [IPv6:2a02:6b8:0:1a2d::608]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "forwards.mail.yandex.net", Issuer "Yandex CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D7B0973435 for ; Mon, 26 Feb 2018 12:41:31 +0000 (UTC) (envelope-from bu7cher@yandex.ru) Received: from mxback8g.mail.yandex.net (mxback8g.mail.yandex.net [IPv6:2a02:6b8:0:1472:2741:0:8b7:169]) by forward105o.mail.yandex.net (Yandex) with ESMTP id BF7994445132; Mon, 26 Feb 2018 15:41:21 +0300 (MSK) Received: from smtp1o.mail.yandex.net (smtp1o.mail.yandex.net [2a02:6b8:0:1a2d::25]) by mxback8g.mail.yandex.net (nwsmtp/Yandex) with ESMTP id Dj4Tb0Hhhi-fKm8Ppr7; Mon, 26 Feb 2018 15:41:21 +0300 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1519648881; bh=Zcor+LBBUGXzy1NMTVL9P4UROVCwGsb8pDIUdRykZxs=; h=Subject:To:Cc:References:From:Message-ID:Date:In-Reply-To; b=niwbFzLvDMbEcRHC5HGLE3Wkq+whWP70QaZ0erzQFe/zrfdsxOcs1tm89cfCP9Wt5 pM+VkqVyvT457UdAzMGU9qByTGo7ieBV9YQDJfGx4rPkfv5Z030YqDd0EOCfxDHxuR tZOIb6y20l26cge0/MmvgI7pmwhRoj7y/QY/1VIs= Received: by smtp1o.mail.yandex.net (nwsmtp/Yandex) with ESMTPSA id sGsMgNEkri-fJTS3bj4; Mon, 26 Feb 2018 15:41:20 +0300 (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client certificate not present) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1519648880; bh=Zcor+LBBUGXzy1NMTVL9P4UROVCwGsb8pDIUdRykZxs=; h=Subject:To:Cc:References:From:Message-ID:Date:In-Reply-To; b=XFfPIb39ueTvF6sm3zil/fhnN5Mi/4O3e6FyYKUSCjQNaiEiLjJw+16kCgS/ElhQY AQPGTbvAJb1avuJOQM/vM7gCJczqakmaOJgBAlJli+v1fznxZTDcuJTdp8ly3m+zzt 8hvA7zirakoopSUVo0wRdkFxNZtXeRZDWxMfnHFs= Authentication-Results: smtp1o.mail.yandex.net; dkim=pass header.i=@yandex.ru Subject: Re: Racoon and setkey problems To: Misak Khachatryan Cc: freebsd-net@freebsd.org, Eugene Grosbein References: <16e6d695-6961-bc17-6ff0-e2affcd5df3b@yandex.ru> <5A8BB836.2010501@grosbein.net> <5e13deb9-0d83-5f43-195c-f6797ed36a7b@yandex.ru> <5A8E7642.2020509@grosbein.net> <182ad344-6d2d-418f-02c6-1ba11dd3c2cd@yandex.ru> <9db09caa-010f-facb-778b-4a1a82cbb0b7@yandex.ru> <300530ba-f2b2-f31c-881e-4841c9c8ec12@yandex.ru> From: "Andrey V. Elsukov" Openpgp: id=E6591E1B41DA1516F0C9BC0001C5EA0410C8A17A Message-ID: <36df24bc-8370-1786-9a11-7c77e968813f@yandex.ru> Date: Mon, 26 Feb 2018 15:39:53 +0300 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:52.0) Gecko/20100101 Thunderbird/52.6.0 MIME-Version: 1.0 In-Reply-To: Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="ReTmGbUuqU0dgIEVfGGJN9i0J6Q2on3vx" X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.25 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, 26 Feb 2018 12:41:32 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --ReTmGbUuqU0dgIEVfGGJN9i0J6Q2on3vx Content-Type: multipart/mixed; boundary="Fj3gibvcEbn6j2Reci5NjXZIt3V4rEsWd"; protected-headers="v1" From: "Andrey V. Elsukov" To: Misak Khachatryan Cc: freebsd-net@freebsd.org, Eugene Grosbein Message-ID: <36df24bc-8370-1786-9a11-7c77e968813f@yandex.ru> Subject: Re: Racoon and setkey problems References: <5A8A97EC.4040103@grosbein.net> <16e6d695-6961-bc17-6ff0-e2affcd5df3b@yandex.ru> <5A8BB836.2010501@grosbein.net> <5e13deb9-0d83-5f43-195c-f6797ed36a7b@yandex.ru> <5A8E7642.2020509@grosbein.net> <182ad344-6d2d-418f-02c6-1ba11dd3c2cd@yandex.ru> <9db09caa-010f-facb-778b-4a1a82cbb0b7@yandex.ru> <300530ba-f2b2-f31c-881e-4841c9c8ec12@yandex.ru> In-Reply-To: --Fj3gibvcEbn6j2Reci5NjXZIt3V4rEsWd Content-Type: multipart/mixed; boundary="------------940284574C4B6C67465F4C5A" Content-Language: en-US This is a multi-part message in MIME format. --------------940284574C4B6C67465F4C5A Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable On 22.02.2018 22:12, Misak Khachatryan wrote: >>> kernel`key_sendup0+0xee >>> kernel`key_sendup_mbuf+0x1e6 >>> kernel`key_parse+0x87f >>> >> >> Then probably this output will be changed. I think the problem is that there are several PF_KEY sockets present, but some socket has overfilled its buffers. key_sendup_mbuf() function tries to send data to all sockets and fails on this mentioned socket. If you can, please, try the attached patch. It changes the behavior to always try to send data to all sockets and ignore some possible errors on intermediate sockets. I think with this patch you will be able to clear SAs with `setkey -F` command. You need to rebuild and reinstall the kernel. The patch is for stable/10.= --=20 WBR, Andrey V. Elsukov --------------940284574C4B6C67465F4C5A Content-Type: text/x-patch; name="keysock.diff" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="keysock.diff" Index: stable/10/sys/netipsec/keysock.c =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- stable/10/sys/netipsec/keysock.c (revision 329557) +++ stable/10/sys/netipsec/keysock.c (working copy) @@ -333,16 +333,14 @@ key_sendup_mbuf(struct socket *so, struct mbuf *m, continue; =20 if ((n =3D m_copy(m, 0, (int)M_COPYALL)) =3D=3D NULL) { - m_freem(m); PFKEYSTAT_INC(in_nomem); - mtx_unlock(&rawcb_mtx); - return ENOBUFS; + /* Try with next socket */ + continue; } =20 if ((error =3D key_sendup0(rp, n, 0)) !=3D 0) { - m_freem(m); - mtx_unlock(&rawcb_mtx); - return error; + /* Try with next socket */ + continue; } =20 n =3D NULL; --------------940284574C4B6C67465F4C5A-- --Fj3gibvcEbn6j2Reci5NjXZIt3V4rEsWd-- --ReTmGbUuqU0dgIEVfGGJN9i0J6Q2on3vx Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQEzBAEBCAAdFiEE5lkeG0HaFRbwybwAAcXqBBDIoXoFAlqUABkACgkQAcXqBBDI oXqUMwf8DGlP2x48etpZjaMRmicXItD9Ac7Zs0MYbeF7/yvKdGE3yJO4qGmpHSku xeThGwlUN2128SQck8ukeP5KaF+PSDEii0QZOV9mDP7o0Fiub9ELoOp7ttvzXELt 7/1ZW4xg6YUepgbYmKAKRA2wPDohrzJRAdr8hKmItusYbQEPcaAMkQM+s27ZFqF2 Em4c5VCMW8+vi1NwVGrrmvX9IAjZc2u1c7IHdMP7CGrQDu22ElzuRvAqMJBR3Se+ wa59xV9laRYwvzl/qW4SvOnQd3LWEEPNbIGp5/LV3JCq8HsahaQqBjMAAxE+zOVj n7punNQ7pw2MfagMlQQc5C+P37CvXQ== =c3E4 -----END PGP SIGNATURE----- --ReTmGbUuqU0dgIEVfGGJN9i0J6Q2on3vx-- From owner-freebsd-net@freebsd.org Mon Feb 26 12:53:57 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6313FF21E96 for ; Mon, 26 Feb 2018 12:53:57 +0000 (UTC) (envelope-from kmisak@gmail.com) Received: from mail-qk0-x22e.google.com (mail-qk0-x22e.google.com [IPv6:2607:f8b0:400d:c09::22e]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 02A9873D94 for ; Mon, 26 Feb 2018 12:53:56 +0000 (UTC) (envelope-from kmisak@gmail.com) Received: by mail-qk0-x22e.google.com with SMTP id l206so18876538qke.1 for ; Mon, 26 Feb 2018 04:53:56 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=5TIYBZGbe3FK8HXgtx2ycla9BTRPMgTq9zRRuDz8ojQ=; b=grIhe7tr6VlNhDSPioAj2Ohs3P+Ja8MeqRNEKfR5kVoN7lrY7U7RCs1PaKIw2YPoay Fgr5dN6OwzfR/4kswrqT7ELiRIvWBp9xGlKjp/BnP7VGDHU/5A24DImhsOeEsfctOqnt 7NiQxoK3d6mzxzN6gHCXGltZrXu70dRtHmE8q6m/O6aSsBflDpKsWjVON4JC5tpU1yyH V0zgdbiR6c05iSeiTTTVV2WuwWHtkjrQ/Cicl5iCKT3ILReePlZBq0j9hVGtgI1VImz1 tuJFSJ2B1xXz9qIuY+BMOkvadgENYkNLbIFFv9PN1cWvtGamHpk2PQ4JHVk2mV8jgjMP IqnA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=5TIYBZGbe3FK8HXgtx2ycla9BTRPMgTq9zRRuDz8ojQ=; b=EOnug9xcyUJDfOEweHCfZdfs30iECIGkxjTY7+VRUgqXOWUoW+EIPVqW96x1+4m61m u+dGFN663lkzhrTyijHaegVHr+1Tp0zKntY1Vyyz9wCEUACO+2gQWqxNcM43BCm4nrcE WwD4PHVFzKihe4Gly9URBF64/McUCS3mTdr8YJEZik3HaxBAGylaa0qHjlHCdGL/lKZX u9Bsxu26xbgUQQPMN3JcJqfwabPLMiQfDpZwSgTi+BnuMX+nWRdXd3G8Rxjg2OlRYrZE AG77Pxj3mSYgrCv5MTc/jqzxTvyCqkyRrlhjOmyB19Hp6mUljkfUYZzqY1VDDdsdy2TM EX/Q== X-Gm-Message-State: APf1xPCcg2ZxsfpahIWkAsrUlNAW1wBFBh8Qthw5LzXo/Vyi2x/Yn8K0 A/8pNkFYtTy+6eKmXZD5KL2IY5wrXxxeIrW4uvI= X-Google-Smtp-Source: AG47ELtpHue++jo9CtXr7Bvx+HyZoXxvuBm42OshtStbmm6fIPsNHIiOwPSbGC8OQORKewni0gOrQBxvja2a/Mrs5LY= X-Received: by 10.55.18.135 with SMTP id 7mr17214007qks.7.1519649636501; Mon, 26 Feb 2018 04:53:56 -0800 (PST) MIME-Version: 1.0 Received: by 10.200.81.201 with HTTP; Mon, 26 Feb 2018 04:53:56 -0800 (PST) In-Reply-To: <36df24bc-8370-1786-9a11-7c77e968813f@yandex.ru> References: <16e6d695-6961-bc17-6ff0-e2affcd5df3b@yandex.ru> <5A8BB836.2010501@grosbein.net> <5e13deb9-0d83-5f43-195c-f6797ed36a7b@yandex.ru> <5A8E7642.2020509@grosbein.net> <182ad344-6d2d-418f-02c6-1ba11dd3c2cd@yandex.ru> <9db09caa-010f-facb-778b-4a1a82cbb0b7@yandex.ru> <300530ba-f2b2-f31c-881e-4841c9c8ec12@yandex.ru> <36df24bc-8370-1786-9a11-7c77e968813f@yandex.ru> From: Misak Khachatryan Date: Mon, 26 Feb 2018 16:53:56 +0400 Message-ID: Subject: Re: Racoon and setkey problems To: "Andrey V. Elsukov" Cc: freebsd-net@freebsd.org, Eugene Grosbein Content-Type: text/plain; charset="UTF-8" X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.25 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, 26 Feb 2018 12:53:57 -0000 Hi Andrey, thanks for the patch! Is it safe to use it on 10.3? Best regards, Misak Khachatryan On Mon, Feb 26, 2018 at 4:39 PM, Andrey V. Elsukov wrote: > On 22.02.2018 22:12, Misak Khachatryan wrote: >>>> kernel`key_sendup0+0xee >>>> kernel`key_sendup_mbuf+0x1e6 >>>> kernel`key_parse+0x87f >>>> >>> >>> Then probably this output will be changed. > > I think the problem is that there are several PF_KEY sockets present, > but some socket has overfilled its buffers. key_sendup_mbuf() function > tries to send data to all sockets and fails on this mentioned socket. > > If you can, please, try the attached patch. It changes the behavior to > always try to send data to all sockets and ignore some possible errors > on intermediate sockets. I think with this patch you will be able to > clear SAs with `setkey -F` command. > > You need to rebuild and reinstall the kernel. The patch is for stable/10. > > -- > WBR, Andrey V. Elsukov From owner-freebsd-net@freebsd.org Mon Feb 26 13:00:50 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3086EF227AA for ; Mon, 26 Feb 2018 13:00:50 +0000 (UTC) (envelope-from bu7cher@yandex.ru) Received: from forward103j.mail.yandex.net (forward103j.mail.yandex.net [IPv6:2a02:6b8:0:801:2::106]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "forwards.mail.yandex.net", Issuer "Yandex CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8F0E8741C1 for ; Mon, 26 Feb 2018 13:00:49 +0000 (UTC) (envelope-from bu7cher@yandex.ru) Received: from mxback14g.mail.yandex.net (mxback14g.mail.yandex.net [IPv6:2a02:6b8:0:1472:2741:0:8b7:93]) by forward103j.mail.yandex.net (Yandex) with ESMTP id D579734C256F; Mon, 26 Feb 2018 16:00:42 +0300 (MSK) Received: from smtp2p.mail.yandex.net (smtp2p.mail.yandex.net [2a02:6b8:0:1472:2741:0:8b6:7]) by mxback14g.mail.yandex.net (nwsmtp/Yandex) with ESMTP id nPFObTFMvF-0gjSfnt8; Mon, 26 Feb 2018 16:00:42 +0300 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1519650042; bh=m+h3FvoMKTnDlOQWmqvJa4uMCUk65sm87MItds9QKNU=; h=Subject:To:Cc:References:From:Message-ID:Date:In-Reply-To; b=wX5QdhgoQyDhtKqMF6pJ0f52wMx4U2+tpyyK9rL07B5jImCBSpyV8tk2sbm5Lc3AR oh4CLAgBLolpuiZPUDCL074ksgztsLCF+eEtfABVFemQrYofIGSO1C4NDVUBkN6Pea wwXJ91vOIgcG/nC6jaPrUt5Jnr/cAvRcMFPqpY4Y= Received: by smtp2p.mail.yandex.net (nwsmtp/Yandex) with ESMTPSA id pZDTotzwZn-0aiWUsDL; Mon, 26 Feb 2018 16:00:36 +0300 (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client certificate not present) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1519650036; bh=m+h3FvoMKTnDlOQWmqvJa4uMCUk65sm87MItds9QKNU=; h=Subject:To:Cc:References:From:Message-ID:Date:In-Reply-To; b=JaJlgJbJ6xlrygI5rlYiFjyO4KI8o51wrUMN/S6zkIa9FUHH4gICmlSRWtu1WJQWh jdstwfZa871jgk1ARpgY1myf5GF8pC2RyFcverDmFFoqGjjwxVHd2hqQ2O2mDgyM9Q ct3Zj0LGklebJC7a6j3JXKgxcAG6uVqzli27oAoM= Authentication-Results: smtp2p.mail.yandex.net; dkim=pass header.i=@yandex.ru Subject: Re: Racoon and setkey problems To: Misak Khachatryan Cc: freebsd-net@freebsd.org, Eugene Grosbein References: <5A8BB836.2010501@grosbein.net> <5e13deb9-0d83-5f43-195c-f6797ed36a7b@yandex.ru> <5A8E7642.2020509@grosbein.net> <182ad344-6d2d-418f-02c6-1ba11dd3c2cd@yandex.ru> <9db09caa-010f-facb-778b-4a1a82cbb0b7@yandex.ru> <300530ba-f2b2-f31c-881e-4841c9c8ec12@yandex.ru> <36df24bc-8370-1786-9a11-7c77e968813f@yandex.ru> From: "Andrey V. Elsukov" Openpgp: id=E6591E1B41DA1516F0C9BC0001C5EA0410C8A17A Message-ID: <8624428b-d08f-83a3-8de3-66885de6e2f2@yandex.ru> Date: Mon, 26 Feb 2018 15:59:09 +0300 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:52.0) Gecko/20100101 Thunderbird/52.6.0 MIME-Version: 1.0 In-Reply-To: Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="T589leaQ1u7WnzgNEaQ80W6lukMrERoAe" X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.25 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, 26 Feb 2018 13:00:50 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --T589leaQ1u7WnzgNEaQ80W6lukMrERoAe Content-Type: multipart/mixed; boundary="978GntVHVYWWZjr7OzCNIxZesEs6anKTD"; protected-headers="v1" From: "Andrey V. Elsukov" To: Misak Khachatryan Cc: freebsd-net@freebsd.org, Eugene Grosbein Message-ID: <8624428b-d08f-83a3-8de3-66885de6e2f2@yandex.ru> Subject: Re: Racoon and setkey problems References: <16e6d695-6961-bc17-6ff0-e2affcd5df3b@yandex.ru> <5A8BB836.2010501@grosbein.net> <5e13deb9-0d83-5f43-195c-f6797ed36a7b@yandex.ru> <5A8E7642.2020509@grosbein.net> <182ad344-6d2d-418f-02c6-1ba11dd3c2cd@yandex.ru> <9db09caa-010f-facb-778b-4a1a82cbb0b7@yandex.ru> <300530ba-f2b2-f31c-881e-4841c9c8ec12@yandex.ru> <36df24bc-8370-1786-9a11-7c77e968813f@yandex.ru> In-Reply-To: --978GntVHVYWWZjr7OzCNIxZesEs6anKTD Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: quoted-printable On 26.02.2018 15:53, Misak Khachatryan wrote: > Hi Andrey, >=20 > thanks for the patch! Is it safe to use it on 10.3? It should be applicable to 10.3, but I don't know how it is safe :) When there are no errors, it should work like before. When some error occurs like you have, it will be ignore and this can lead to some unknown results. Maybe racoon will do something strange. --=20 WBR, Andrey V. Elsukov --978GntVHVYWWZjr7OzCNIxZesEs6anKTD-- --T589leaQ1u7WnzgNEaQ80W6lukMrERoAe Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQEzBAEBCAAdFiEE5lkeG0HaFRbwybwAAcXqBBDIoXoFAlqUBJ0ACgkQAcXqBBDI oXrLQQf/RUs/R4mVsRaENNPZuX4nYHUilEYifSREl/G5pUlPMCCAR4/RSzLMS2Pm 6Mg5pm3jGyeAhdXU8MZLZrcM0dmDm8POXY1qTXhOKeJEAPcI/r1/xGt22HVagRwo JmiLdo7XUE/NClkStKmMynDScTyLxE1SL+17WP36Em/YBS7pX7PKRXnrrbmmXqRa brs6mj0GJiQo3iSni3EcapBmjmK14a3mah8cbuXc8fkLgYLr3dHmhrmKeXC7XjgL U/ovEfMSWMv9BRSpD1tjwXVdAPnpLptX58Z021bY5KKgPTFJm5+N0U4Xx0WdcQ6R Wknefwm+oTkuy+ww5dl91Iy0WVt0Ag== =gAVO -----END PGP SIGNATURE----- --T589leaQ1u7WnzgNEaQ80W6lukMrERoAe-- From owner-freebsd-net@freebsd.org Mon Feb 26 18:15:27 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1145BF37E14 for ; Mon, 26 Feb 2018 18:15:27 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A156F8146A for ; Mon, 26 Feb 2018 18:15:26 +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 mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id E0BC22E6C2 for ; Mon, 26 Feb 2018 18:15:25 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w1QIFPYh065902 for ; Mon, 26 Feb 2018 18:15:25 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w1QIFPQk065899 for freebsd-net@FreeBSD.org; Mon, 26 Feb 2018 18:15:25 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: freebsd-net@FreeBSD.org Subject: [Bug 223835] BGP session not established with md5 password via FRRouting Date: Mon, 26 Feb 2018 18:15:23 +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: 11.1-STABLE X-Bugzilla-Keywords: IntelNetworking X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: ae@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: ae@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.25 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, 26 Feb 2018 18:15:27 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D223835 --- Comment #28 from Andrey V. Elsukov --- (In reply to Felipe N. Oliva from comment #26) > (In reply to Olivier Cochard from comment #21) > Oliver, your problem is only without TSO/LRO? > I have the same problem, but TSO/LRO enabled in 11.1-p6 and > 11.1-stable(r329156). > My environment is with openbgp. Felipe, is it still problem for you? --=20 You are receiving this mail because: You are on the CC list for the bug.= From owner-freebsd-net@freebsd.org Tue Feb 27 09:56:11 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E2E9EF35F41 for ; Tue, 27 Feb 2018 09:56:10 +0000 (UTC) (envelope-from freebsd@omnilan.de) Received: from mx0.gentlemail.de (mx0.gentlemail.de [IPv6:2a00:e10:2800::a130]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6BAEE6CAC1 for ; Tue, 27 Feb 2018 09:56:10 +0000 (UTC) (envelope-from freebsd@omnilan.de) Received: from mh0.gentlemail.de (mh0.gentlemail.de [IPv6:2a00:e10:2800::a135]) by mx0.gentlemail.de (8.14.5/8.14.5) with ESMTP id w1R9u9ef005302 for ; Tue, 27 Feb 2018 10:56:09 +0100 (CET) (envelope-from freebsd@omnilan.de) Received: from titan.inop.mo1.omnilan.net (s1.omnilan.de [217.91.127.234]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mh0.gentlemail.de (Postfix) with ESMTPSA id 2AFBCD60; Tue, 27 Feb 2018 10:56:09 +0100 (CET) Message-ID: <5A952B38.8060007@omnilan.de> Date: Tue, 27 Feb 2018 10:56:08 +0100 From: Harry Schmalzbauer Organization: OmniLAN User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; de-DE; rv:1.9.2.8) Gecko/20100906 Lightning/1.0b2 Thunderbird/3.1.2 MIME-Version: 1.0 To: freebsd-net@freebsd.org Subject: if_ipsec(4) and IKEv1 [security/ipsec-tools, racoon.conf] Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.2.7 (mx0.gentlemail.de [IPv6:2a00:e10:2800::a130]); Tue, 27 Feb 2018 10:56:09 +0100 (CET) X-Milter: Spamilter (Reciever: mx0.gentlemail.de; Sender-ip: ; Sender-helo: mh0.gentlemail.de; ) X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.25 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, 27 Feb 2018 09:56:11 -0000 Hello, I'm out of ideas how to quick-start with if_ipsec(4) and IKEv1. I'm familar with security/ipsec-tools, but I couldn't find out how racoon(8) would interact with cloned if_ipsec(4) interfaces yet. Also, how to tell racoon(8) to generate such tunnel interfaces, hence policies? I guess the latter isn't implemented in racoon(8) (yet). But is racoon(8) supposed to work with static policies generated by if_ipsec(4)? Thanks, -harry From owner-freebsd-net@freebsd.org Tue Feb 27 09:59:52 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6CD57F363BB for ; Tue, 27 Feb 2018 09:59:52 +0000 (UTC) (envelope-from freebsd@omnilan.de) Received: from mx0.gentlemail.de (mx0.gentlemail.de [IPv6:2a00:e10:2800::a130]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E46DE6CD38 for ; Tue, 27 Feb 2018 09:59:51 +0000 (UTC) (envelope-from freebsd@omnilan.de) Received: from mh0.gentlemail.de (ezra.dcm1.omnilan.net [78.138.80.135]) by mx0.gentlemail.de (8.14.5/8.14.5) with ESMTP id w1R9xo7Z005344 for ; Tue, 27 Feb 2018 10:59:50 +0100 (CET) (envelope-from freebsd@omnilan.de) Received: from titan.inop.mo1.omnilan.net (s1.omnilan.de [217.91.127.234]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mh0.gentlemail.de (Postfix) with ESMTPSA id BE275D64; Tue, 27 Feb 2018 10:59:50 +0100 (CET) Message-ID: <5A952C16.4080005@omnilan.de> Date: Tue, 27 Feb 2018 10:59:50 +0100 From: Harry Schmalzbauer Organization: OmniLAN User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; de-DE; rv:1.9.2.8) Gecko/20100906 Lightning/1.0b2 Thunderbird/3.1.2 MIME-Version: 1.0 To: freebsd-net@freebsd.org Subject: Re: if_ipsec(4) and IKEv1 [security/ipsec-tools, racoon.conf] References: <5A952B38.8060007@omnilan.de> In-Reply-To: <5A952B38.8060007@omnilan.de> Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 8bit X-Greylist: ACL 130 matched, not delayed by milter-greylist-4.2.7 (mx0.gentlemail.de [78.138.80.130]); Tue, 27 Feb 2018 10:59:50 +0100 (CET) X-Milter: Spamilter (Reciever: mx0.gentlemail.de; Sender-ip: 78.138.80.135; Sender-helo: mh0.gentlemail.de; ) X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.25 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, 27 Feb 2018 09:59:52 -0000 Bezüglich Harry Schmalzbauer's Nachricht vom 27.02.2018 10:56 (localtime): > Hello, > > I'm out of ideas how to quick-start with if_ipsec(4) and IKEv1. > > I'm familar with security/ipsec-tools, but I couldn't find out how > racoon(8) would interact with cloned if_ipsec(4) interfaces yet. > > Also, how to tell racoon(8) to generate such tunnel interfaces, hence > policies? > I guess the latter isn't implemented in racoon(8) (yet). > > But is racoon(8) supposed to work with static policies generated by > if_ipsec(4)? I doubt, since with 'ifconfig ipsec', I have to specify reqid. How to tell racoon(8) which reqid to insert keys to ? Thanks, -harry From owner-freebsd-net@freebsd.org Tue Feb 27 10:52:01 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C0AEAF39A45 for ; Tue, 27 Feb 2018 10:52:01 +0000 (UTC) (envelope-from bu7cher@yandex.ru) Received: from forward102p.mail.yandex.net (forward102p.mail.yandex.net [IPv6:2a02:6b8:0:1472:2741:0:8b7:102]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "forwards.mail.yandex.net", Issuer "Yandex CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2A6906ECA1 for ; Tue, 27 Feb 2018 10:52:00 +0000 (UTC) (envelope-from bu7cher@yandex.ru) Received: from mxback4j.mail.yandex.net (mxback4j.mail.yandex.net [IPv6:2a02:6b8:0:1619::10d]) by forward102p.mail.yandex.net (Yandex) with ESMTP id 88FC2430423E; Tue, 27 Feb 2018 13:51:57 +0300 (MSK) Received: from smtp1o.mail.yandex.net (smtp1o.mail.yandex.net [2a02:6b8:0:1a2d::25]) by mxback4j.mail.yandex.net (nwsmtp/Yandex) with ESMTP id mbEdsfLjHd-pvYOQUxl; Tue, 27 Feb 2018 13:51:57 +0300 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1519728717; bh=/2VIoGyH6MKt4vOzZMGivpAGNnsi6OCFhtAYkGQks00=; h=Subject:To:References:From:Message-ID:Date:In-Reply-To; b=U0yVEBfjFWT0s4apqMz2hg3yB0AlAlpYMWkaWr6Mq+Wnpe8OIrQaRKjxIsU42oftE 1Am8c7mnOmrqpj/7FObP/smay10ntdBDyEEMvHcGiW0JucnAfSvNAzfdr6gGKRZ0Pn 8aD6Va+nuMNfDgGkGCubHATC4VK4FYzrNaQkyl+8= Received: by smtp1o.mail.yandex.net (nwsmtp/Yandex) with ESMTPSA id OOUdvVTPhE-puRKp33F; Tue, 27 Feb 2018 13:51:56 +0300 (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client certificate not present) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1519728716; bh=/2VIoGyH6MKt4vOzZMGivpAGNnsi6OCFhtAYkGQks00=; h=Subject:To:References:From:Message-ID:Date:In-Reply-To; b=jbfL4T3qn3qrrqgAWjFNBvU2FmZSmf9x5mfl0JB/r9vZUugZordcRs+toTS8f7EPi 9qTJMzC4h9id4My4MbdBa8apywfxPbaV1HPRE2fpuL0jDA2XePW361j5y5eA4FdiD2 YjrChrQMyLAOlPQkDLYdUiN0E8/NiXUgRYZG+0jA= Authentication-Results: smtp1o.mail.yandex.net; dkim=pass header.i=@yandex.ru Subject: Re: if_ipsec(4) and IKEv1 [security/ipsec-tools, racoon.conf] To: Harry Schmalzbauer , freebsd-net@freebsd.org References: <5A952B38.8060007@omnilan.de> From: "Andrey V. Elsukov" Openpgp: id=E6591E1B41DA1516F0C9BC0001C5EA0410C8A17A Message-ID: <04174d98-c35d-b88b-d0db-ac579b153c57@yandex.ru> Date: Tue, 27 Feb 2018 13:50:25 +0300 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:52.0) Gecko/20100101 Thunderbird/52.6.0 MIME-Version: 1.0 In-Reply-To: <5A952B38.8060007@omnilan.de> Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="Lw3hymjuzrREi6ovSVIzKNpo3iH1EJzhf" X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.25 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, 27 Feb 2018 10:52:02 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --Lw3hymjuzrREi6ovSVIzKNpo3iH1EJzhf Content-Type: multipart/mixed; boundary="88k8H1ddOXqwwgtq65dlR9WMczdAN8niA"; protected-headers="v1" From: "Andrey V. Elsukov" To: Harry Schmalzbauer , freebsd-net@freebsd.org Message-ID: <04174d98-c35d-b88b-d0db-ac579b153c57@yandex.ru> Subject: Re: if_ipsec(4) and IKEv1 [security/ipsec-tools, racoon.conf] References: <5A952B38.8060007@omnilan.de> In-Reply-To: <5A952B38.8060007@omnilan.de> --88k8H1ddOXqwwgtq65dlR9WMczdAN8niA Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: quoted-printable On 27.02.2018 12:56, Harry Schmalzbauer wrote: > Hello, >=20 > I'm out of ideas how to quick-start with if_ipsec(4) and IKEv1. >=20 > I'm familar with security/ipsec-tools, but I couldn't find out how > racoon(8) would interact with cloned if_ipsec(4) interfaces yet. You need to manually configure if_ipsec interface, i.e. assign tunnel addresses and bring it up. After that you need to configure racoon to reply for ACQUIRE messages when some traffic will go trough configured tunnel. So, you configure if_ipsec tunnel and it creates security policies, these policies will produce ACQUIRE requests to racoon and racoon should reply and this will produce needed security associations. > Also, how to tell racoon(8) to generate such tunnel interfaces, hence > policies? > I guess the latter isn't implemented in racoon(8) (yet). I think there are not any IKE daemons that can do this. > But is racoon(8) supposed to work with static policies generated by > if_ipsec(4)? Yes, at least for one tunnel it worked for me. Probably it is possible for several tunnels too. --=20 WBR, Andrey V. Elsukov --88k8H1ddOXqwwgtq65dlR9WMczdAN8niA-- --Lw3hymjuzrREi6ovSVIzKNpo3iH1EJzhf Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQEzBAEBCAAdFiEE5lkeG0HaFRbwybwAAcXqBBDIoXoFAlqVN/EACgkQAcXqBBDI oXqd+gf9HuOEQOQQ8bMfXkDARLccHDJ4IvJT5c62TTLo6IiUZlRYMm9R062WjS3Y VeK66BHZ9j817W4PSQgouN0hkJDCa9reBNqXRsXPgTIY1kr49XRDUORQcTv8pp2A C7x7BQquww6fBmDLmHNbIU3DwLnzV6PilKh4SjNLUlf0RePKV0wgxTt80dtTHoRo 5kV60Xuc2uyO24K7e7unDuen4t6HELq0rzgQVH0sZKZvyCnrGtb3lJl4om5dojS0 sC727YxnI+eu9ZTnrlRRblrHoXUzzOn60jHOzmb7fp1tY3hZfyp65MCodGESAMER 0m5Wj6TGkcdpFQ7U6vidzidRQYJq5A== =VMbD -----END PGP SIGNATURE----- --Lw3hymjuzrREi6ovSVIzKNpo3iH1EJzhf-- From owner-freebsd-net@freebsd.org Tue Feb 27 11:20:44 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3A34DF3B9A3 for ; Tue, 27 Feb 2018 11:20:44 +0000 (UTC) (envelope-from freebsd@omnilan.de) Received: from mx0.gentlemail.de (mx0.gentlemail.de [IPv6:2a00:e10:2800::a130]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C22CB6FE27 for ; Tue, 27 Feb 2018 11:20:43 +0000 (UTC) (envelope-from freebsd@omnilan.de) Received: from mh0.gentlemail.de (mh0.gentlemail.de [78.138.80.135]) by mx0.gentlemail.de (8.14.5/8.14.5) with ESMTP id w1RBKgO2006080; Tue, 27 Feb 2018 12:20:42 +0100 (CET) (envelope-from freebsd@omnilan.de) Received: from titan.inop.mo1.omnilan.net (s1.omnilan.de [217.91.127.234]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mh0.gentlemail.de (Postfix) with ESMTPSA id 569E9D77; Tue, 27 Feb 2018 12:20:42 +0100 (CET) Message-ID: <5A953F09.2040503@omnilan.de> Date: Tue, 27 Feb 2018 12:20:41 +0100 From: Harry Schmalzbauer Organization: OmniLAN User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; de-DE; rv:1.9.2.8) Gecko/20100906 Lightning/1.0b2 Thunderbird/3.1.2 MIME-Version: 1.0 To: "Andrey V. Elsukov" CC: freebsd-net@freebsd.org Subject: Re: if_ipsec(4) and IKEv1 [security/ipsec-tools, racoon.conf] References: <5A952B38.8060007@omnilan.de> <04174d98-c35d-b88b-d0db-ac579b153c57@yandex.ru> In-Reply-To: <04174d98-c35d-b88b-d0db-ac579b153c57@yandex.ru> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Greylist: ACL 130 matched, not delayed by milter-greylist-4.2.7 (mx0.gentlemail.de [78.138.80.130]); Tue, 27 Feb 2018 12:20:42 +0100 (CET) X-Milter: Spamilter (Reciever: mx0.gentlemail.de; Sender-ip: 78.138.80.135; Sender-helo: mh0.gentlemail.de; ) X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.25 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, 27 Feb 2018 11:20:44 -0000 Bezüglich Andrey V. Elsukov's Nachricht vom 27.02.2018 11:50 (localtime): > On 27.02.2018 12:56, Harry Schmalzbauer wrote: >> Hello, >> >> I'm out of ideas how to quick-start with if_ipsec(4) and IKEv1. >> >> I'm familar with security/ipsec-tools, but I couldn't find out how >> racoon(8) would interact with cloned if_ipsec(4) interfaces yet. > > You need to manually configure if_ipsec interface, i.e. assign tunnel > addresses and bring it up. After that you need to configure racoon to > reply for ACQUIRE messages when some traffic will go trough configured > tunnel. So, you configure if_ipsec tunnel and it creates security > policies, these policies will produce ACQUIRE requests to racoon and > racoon should reply and this will produce needed security associations. > >> Also, how to tell racoon(8) to generate such tunnel interfaces, hence >> policies? >> I guess the latter isn't implemented in racoon(8) (yet). > > I think there are not any IKE daemons that can do this. > >> But is racoon(8) supposed to work with static policies generated by >> if_ipsec(4)? > > Yes, at least for one tunnel it worked for me. Probably it is possible > for several tunnels too. Thank you very much for your explanation! Unfortunately, I couldn't get the P2P idea behind if_ipsec(4) and I tought I'd just need a few minutes to switch from policy based tunnels to route based – local brain contraints seem to require me much more time... My intention was to incorporate ALTQ for ESP payload. So my idea was, that I have if_ipsec(4) and utilize pf's queue feature. But I have to stop here since I need time to think about if_ipsec(4). Maybe others have similar questions, so I just post them at this point, and because I will have forgotten next week otherwise: Is the P2P definition (ifconfig ipsecX ipnum/mask ipnum) meant as transfer network? If so, why would I want a local IP with a mask other than 0xffffffff? And why should the destination belong to the same subnet in that case? I'm completely missing something here... Also, I don't understand why if_ipsec(4) generates ipsec policies defined as 0.0.0.0/0[any] 0.0.0.0/0[any]. For sure, that's handled differently than the policies I'm aware about, because there's scope=ifnet and ifname, but I need some time to elaborate the reasons for the way if_ipsec(4) is how it is. Are there any 3rd-vendor papers, describing a similar implementation convention? Thanks, -Harry From owner-freebsd-net@freebsd.org Tue Feb 27 11:48:01 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F2EFCF3D886 for ; Tue, 27 Feb 2018 11:48:00 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 90AFD7124D for ; Tue, 27 Feb 2018 11:48:00 +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 mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id C3C177E9A for ; Tue, 27 Feb 2018 11:47:59 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w1RBlxrg048144 for ; Tue, 27 Feb 2018 11:47:59 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w1RBlxGU048143 for freebsd-net@FreeBSD.org; Tue, 27 Feb 2018 11:47:59 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: freebsd-net@FreeBSD.org Subject: [Bug 223835] BGP session not established with md5 password via FRRouting Date: Tue, 27 Feb 2018 11:47:58 +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: 11.1-STABLE X-Bugzilla-Keywords: IntelNetworking X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: felipe@felipeoliva.eti.br X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: ae@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.25 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, 27 Feb 2018 11:48:01 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D223835 --- Comment #29 from Felipe N. Oliva --- (In reply to Andrey V. Elsukov from comment #28) Yes, here is 11.1-STABLE r329758. interface: vlan1977: flags=3D8843 metric 0 mtu= 1500 options=3D600703 kernel: options IPSEC options TCP_SIGNATURE device crypto --=20 You are receiving this mail because: You are on the CC list for the bug.= From owner-freebsd-net@freebsd.org Tue Feb 27 11:57:03 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A7935F3E26D for ; Tue, 27 Feb 2018 11:57:03 +0000 (UTC) (envelope-from bu7cher@yandex.ru) Received: from forward105o.mail.yandex.net (forward105o.mail.yandex.net [37.140.190.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "forwards.mail.yandex.net", Issuer "Yandex CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2660A717CA for ; Tue, 27 Feb 2018 11:57:02 +0000 (UTC) (envelope-from bu7cher@yandex.ru) Received: from mxback17j.mail.yandex.net (mxback17j.mail.yandex.net [IPv6:2a02:6b8:0:1619::93]) by forward105o.mail.yandex.net (Yandex) with ESMTP id 9CA3A444367C; Tue, 27 Feb 2018 14:56:59 +0300 (MSK) Received: from smtp3o.mail.yandex.net (smtp3o.mail.yandex.net [2a02:6b8:0:1a2d::27]) by mxback17j.mail.yandex.net (nwsmtp/Yandex) with ESMTP id Xy32SkY0Ni-uxjWNtUP; Tue, 27 Feb 2018 14:56:59 +0300 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1519732619; bh=aSzW+TFkUKoeM1Grxg8sXPBCnaOxf8wo86Y96SO+eDs=; h=Subject:To:Cc:References:From:Message-ID:Date:In-Reply-To; b=ggUU9HG27Ee8Xcv8BNBsdL17zVT94UBp4ehLczoDyrOZFx+exWMa2S6tqX0b5Suyt aW7vxNqPGMZjxBpQQ91jlPBJQd6H9zjBqAxCS+foMdUBaDqEgv6rem7O3oqiKB8r4w 2VgTBTUducQtI80uM4Fmga780XL/MBEGISKmlNE8= Received: by smtp3o.mail.yandex.net (nwsmtp/Yandex) with ESMTPSA id GrP7Gi8AIY-uwk4lRxZ; Tue, 27 Feb 2018 14:56:58 +0300 (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client certificate not present) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1519732618; bh=aSzW+TFkUKoeM1Grxg8sXPBCnaOxf8wo86Y96SO+eDs=; h=Subject:To:Cc:References:From:Message-ID:Date:In-Reply-To; b=iHc1ht8sJjw8ciKQi2EawMSQig950ZisgqbRHxANy53+3ZmbDeJBWK4TooZt0+BK9 9h0C80u0bRPJmmSGhwHUzhJBYApitAWyLfqsFPyfTyHfg17rFSsyQ074lzEN9h0MFw LNIRkhyHxgVmvHWvf+LFpmB2BcWkYwGKfgXmTS8c= Authentication-Results: smtp3o.mail.yandex.net; dkim=pass header.i=@yandex.ru Subject: Re: if_ipsec(4) and IKEv1 [security/ipsec-tools, racoon.conf] To: Harry Schmalzbauer Cc: freebsd-net@freebsd.org References: <5A952B38.8060007@omnilan.de> <04174d98-c35d-b88b-d0db-ac579b153c57@yandex.ru> <5A953F09.2040503@omnilan.de> From: "Andrey V. Elsukov" Openpgp: id=E6591E1B41DA1516F0C9BC0001C5EA0410C8A17A Message-ID: Date: Tue, 27 Feb 2018 14:55:27 +0300 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:52.0) Gecko/20100101 Thunderbird/52.6.0 MIME-Version: 1.0 In-Reply-To: <5A953F09.2040503@omnilan.de> Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="PHbGafISQMgTUwfkRHpYO1MAid5vIarW5" X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.25 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, 27 Feb 2018 11:57:04 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --PHbGafISQMgTUwfkRHpYO1MAid5vIarW5 Content-Type: multipart/mixed; boundary="a7ZtcUiXO9wX3eoFwK4gNye3ONuL0T2Ig"; protected-headers="v1" From: "Andrey V. Elsukov" To: Harry Schmalzbauer Cc: freebsd-net@freebsd.org Message-ID: Subject: Re: if_ipsec(4) and IKEv1 [security/ipsec-tools, racoon.conf] References: <5A952B38.8060007@omnilan.de> <04174d98-c35d-b88b-d0db-ac579b153c57@yandex.ru> <5A953F09.2040503@omnilan.de> In-Reply-To: <5A953F09.2040503@omnilan.de> --a7ZtcUiXO9wX3eoFwK4gNye3ONuL0T2Ig Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: quoted-printable On 27.02.2018 14:20, Harry Schmalzbauer wrote: > Thank you very much for your explanation! >=20 > Unfortunately, I couldn't get the P2P idea behind if_ipsec(4) and I > tought I'd just need a few minutes to switch from policy based tunnels > to route based =E2=80=93 local brain contraints seem to require me much= more time... >=20 > My intention was to incorporate ALTQ for ESP payload. > So my idea was, that I have if_ipsec(4) and utilize pf's queue feature.= > But I have to stop here since I need time to think about if_ipsec(4). AFAIK, ALTQ requires some support from network driver, I think if_ipsec(4) has not such support. > Maybe others have similar questions, so I just post them at this point,= > and because I will have forgotten next week otherwise: >=20 > Is the P2P definition (ifconfig ipsecX ipnum/mask ipnum) meant as > transfer network? > If so, why would I want a local IP with a mask other than 0xffffffff? > And why should the destination belong to the same subnet in that case? > I'm completely missing something here... You need to specify tunnel endpoints, i.e. one IP address is your local, that will be used as source address of ESP packets, second is remote IP address, that will be used as destination address of ESP packet. # ifconfig ipsec0 inet tunnel 192.168.0.3 192.168.0.5 These addresses are used by kernel to acquire needed SAs. Since if_ipsec(4) was implemented as P2P interface (to be able use "tunnel" keyword), you need to specify second IP address in "ifconfig ipsecX ipnum/mask ipnum" command. You can use any mask you want and destination address should not be from the same subnet. Specified destination will be available trough route via this interface. You also can add some additional routes using this destination address. > Also, I don't understand why if_ipsec(4) generates ipsec policies > defined as 0.0.0.0/0[any] 0.0.0.0/0[any]. > For sure, that's handled differently than the policies I'm aware about,= > because there's scope=3Difnet and ifname, but I need some time to > elaborate the reasons for the way if_ipsec(4) is how it is. These policies are special and used to match all packets that will go trough if_ipsec interface. > Are there any 3rd-vendor papers, describing a similar implementation > convention? I don't know. AFAIK, Linux has something like this, but I'm not familiar with linux and don't know how it works. Also, I saw that NetBSD also added similar interface : https://mail-index.netbsd.org/tech-net/2017/12/18/msg006557.html It is funny, but they didn't mention that the idea was borrowed from FreeBSD... --=20 WBR, Andrey V. Elsukov --a7ZtcUiXO9wX3eoFwK4gNye3ONuL0T2Ig-- --PHbGafISQMgTUwfkRHpYO1MAid5vIarW5 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQEzBAEBCAAdFiEE5lkeG0HaFRbwybwAAcXqBBDIoXoFAlqVRy8ACgkQAcXqBBDI oXoJeQf/fMhB9JrgtRDPUtOSuTtta7JfREqgWO6DQfXEuupgHRk5tYR0fMeA4dgj NrWETULwhItAouhT2aDccZu0uWyKDHhVpdIepxNo2uXIFvR2mUfdhfoPDXm1GURe qpRnBSiYZAhr5YY6V3FGrdwFauwHLe793qUM06qHBa5UAqCkowFQj2Klxa3R3OPr p2OpHfPVpT4O9ALFDtSJEuhWRZ+CCiF7/s6skwayRepwyTv/pt5njT9iI0RFy/9f 6khsuoNjCqE6Istdwp5KD1E0RDFyQULaOwvOBB2kKCErvm068hdaonPeCgrra8nk FJMZD6zujOp6eA1obzwmG1QJFni+pg== =/d66 -----END PGP SIGNATURE----- --PHbGafISQMgTUwfkRHpYO1MAid5vIarW5-- From owner-freebsd-net@freebsd.org Tue Feb 27 12:32:22 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 22CF7F1EE5B for ; Tue, 27 Feb 2018 12:32:22 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B776A73B45 for ; Tue, 27 Feb 2018 12:32: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 mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id E265710477 for ; Tue, 27 Feb 2018 12:32:20 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w1RCWK6H098656 for ; Tue, 27 Feb 2018 12:32:20 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w1RCWKRN098651 for freebsd-net@FreeBSD.org; Tue, 27 Feb 2018 12:32:20 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: freebsd-net@FreeBSD.org Subject: [Bug 223835] BGP session not established with md5 password via FRRouting Date: Tue, 27 Feb 2018 12:32:18 +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: 11.1-STABLE X-Bugzilla-Keywords: IntelNetworking X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: ae@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: ae@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.25 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, 27 Feb 2018 12:32:22 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D223835 --- Comment #30 from Andrey V. Elsukov --- (In reply to Felipe N. Oliva from comment #29) > (In reply to Andrey V. Elsukov from comment #28) > Yes, here is 11.1-STABLE r329758. >=20 > interface: > vlan1977: flags=3D8843 metric 0 m= tu > 1500 > options=3D600703 >=20 > kernel: > options IPSEC > options TCP_SIGNATURE > device crypto Did you try to disable rx/txcsum? What interface is used as parent for vlan= s? Does IPv6 work for you but IPv4 doesn't?=20 What `netstat -sp tcp | grep sig` shows?=20 Does setkey -D shows SAs for both directions? --=20 You are receiving this mail because: You are on the CC list for the bug.= From owner-freebsd-net@freebsd.org Tue Feb 27 12:46:25 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1BCEAF2225D for ; Tue, 27 Feb 2018 12:46:25 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A361974538 for ; Tue, 27 Feb 2018 12:46:24 +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 mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 6F125106F0 for ; Tue, 27 Feb 2018 12:46:23 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w1RCkNq2006225 for ; Tue, 27 Feb 2018 12:46:23 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w1RCkN5F006221 for freebsd-net@FreeBSD.org; Tue, 27 Feb 2018 12:46:23 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: freebsd-net@FreeBSD.org Subject: [Bug 223835] BGP session not established with md5 password via FRRouting Date: Tue, 27 Feb 2018 12:46:22 +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: 11.1-STABLE X-Bugzilla-Keywords: IntelNetworking X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: felipe@felipeoliva.eti.br X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: ae@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.25 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, 27 Feb 2018 12:46:25 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D223835 --- Comment #31 from Felipe N. Oliva --- (In reply to Andrey V. Elsukov from comment #30) I will try with TSO/LRO. Interface: ix (intel 10g) Doesn't work with ipv4 and ipv6. netstat -sp tcp | grep sig 0 packets with matching signature received 0 packets with bad signature received 0 times failed to make signature due to no SA 0 times unexpected signature received 0 times no signature provided by segment /etc/ipsec.conf: add -4 187.16.216.55 tcp 0x1000 -A tcp-md5 ""; # GOOGLE add -4 187.16.216.55 tcp 0x1000 -A tcp-md5 ""; # GOOGLE add -4 187.16.218.58 tcp 0x1000 -A tcp-md5 ""; # GOOGLE add -4 187.16.218.58 tcp 0x1000 -A tcp-md5 ""; # GOOGLE add -6 2001:12f8::55 tcp 0x1000 -A tcp-md5 ""; # GOOGLE add -6 2001:12f8::55 tcp 0x1000 -A tcp-md5 ""; # GOOGLE add -6 2001:12f8::218:58 tcp 0x1000 -A tcp-md5 ""; # GOO= GLE add -6 2001:12f8::218:58 tcp 0x1000 -A tcp-md5 ""; # GOO= GLE setkey -D 2001:12f8::218:58 tcp mode=3Dany spi=3D130789163(0x07cbaf2b) reqid=3D0(0x00000000) A: tcp-md5 6a757472 616e3764 45625577 72366339 seq=3D0x00000000 replay=3D0 flags=3D0x00000040 state=3Dmature created: Feb 27 08:36:12 2018 current: Feb 27 08:41:32 2018 diff: 320(s) hard: 0(s) soft: 0(s) last: hard: 0(s) soft: 0(s) current: 0(bytes) hard: 0(bytes) soft: 0(bytes) allocated: 0 hard: 0 soft: 0 sadb_seq=3D7 pid=3D74097 refcnt=3D1 2001:12f8::218:58 tcp mode=3Dany spi=3D205209160(0x0c3b3e48) reqid=3D0(0x00000000) A: tcp-md5 6a757472 616e3764 45625577 72366339 seq=3D0x00000000 replay=3D0 flags=3D0x00000040 state=3Dmature created: Feb 27 08:36:12 2018 current: Feb 27 08:41:32 2018 diff: 320(s) hard: 0(s) soft: 0(s) last: hard: 0(s) soft: 0(s) current: 0(bytes) hard: 0(bytes) soft: 0(bytes) allocated: 0 hard: 0 soft: 0 sadb_seq=3D6 pid=3D74097 refcnt=3D1 2001:12f8::55 tcp mode=3Dany spi=3D17778168(0x010f45f8) reqid=3D0(0x00000000) A: tcp-md5 6a757472 616e3764 45625577 72366339 seq=3D0x00000000 replay=3D0 flags=3D0x00000040 state=3Dmature created: Feb 27 08:36:12 2018 current: Feb 27 08:41:32 2018 diff: 320(s) hard: 0(s) soft: 0(s) last: hard: 0(s) soft: 0(s) current: 0(bytes) hard: 0(bytes) soft: 0(bytes) allocated: 0 hard: 0 soft: 0 sadb_seq=3D5 pid=3D74097 refcnt=3D1 2001:12f8::55 tcp mode=3Dany spi=3D11511344(0x00afa630) reqid=3D0(0x00000000) A: tcp-md5 6a757472 616e3764 45625577 72366339 seq=3D0x00000000 replay=3D0 flags=3D0x00000040 state=3Dmature created: Feb 27 08:36:12 2018 current: Feb 27 08:41:32 2018 diff: 320(s) hard: 0(s) soft: 0(s) last: hard: 0(s) soft: 0(s) current: 0(bytes) hard: 0(bytes) soft: 0(bytes) allocated: 0 hard: 0 soft: 0 sadb_seq=3D4 pid=3D74097 refcnt=3D1 187.16.218.58 tcp mode=3Dany spi=3D49404247(0x02f1d957) reqid=3D0(0x00000000) A: tcp-md5 6a757472 616e3764 45625577 72366339 seq=3D0x00000000 replay=3D0 flags=3D0x00000040 state=3Dmature created: Feb 27 08:36:12 2018 current: Feb 27 08:41:32 2018 diff: 320(s) hard: 0(s) soft: 0(s) last: hard: 0(s) soft: 0(s) current: 0(bytes) hard: 0(bytes) soft: 0(bytes) allocated: 0 hard: 0 soft: 0 sadb_seq=3D3 pid=3D74097 refcnt=3D1 187.16.218.58 tcp mode=3Dany spi=3D209590058(0x0c7e172a) reqid=3D0(0x00000000) A: tcp-md5 6a757472 616e3764 45625577 72366339 seq=3D0x00000000 replay=3D0 flags=3D0x00000040 state=3Dmature created: Feb 27 08:36:12 2018 current: Feb 27 08:41:32 2018 diff: 320(s) hard: 0(s) soft: 0(s) last: hard: 0(s) soft: 0(s) current: 0(bytes) hard: 0(bytes) soft: 0(bytes) allocated: 0 hard: 0 soft: 0 sadb_seq=3D2 pid=3D74097 refcnt=3D1 187.16.216.55 tcp mode=3Dany spi=3D124856546(0x077128e2) reqid=3D0(0x00000000) A: tcp-md5 6a757472 616e3764 45625577 72366339 seq=3D0x00000000 replay=3D0 flags=3D0x00000040 state=3Dmature created: Feb 27 08:36:12 2018 current: Feb 27 08:41:32 2018 diff: 320(s) hard: 0(s) soft: 0(s) last: hard: 0(s) soft: 0(s) current: 0(bytes) hard: 0(bytes) soft: 0(bytes) allocated: 0 hard: 0 soft: 0 sadb_seq=3D1 pid=3D74097 refcnt=3D1 187.16.216.55 tcp mode=3Dany spi=3D4096(0x00001000) reqid=3D0(0x00000000) A: tcp-md5 6a757472 616e3764 45625577 72366339 seq=3D0x00000000 replay=3D0 flags=3D0x00000040 state=3Dmature created: Feb 27 08:36:12 2018 current: Feb 27 08:41:32 2018 diff: 320(s) hard: 0(s) soft: 0(s) last: hard: 0(s) soft: 0(s) current: 0(bytes) hard: 0(bytes) soft: 0(bytes) allocated: 0 hard: 0 soft: 0 sadb_seq=3D0 pid=3D74097 refcnt=3D1 FreeBSD 10.3 was working with only one direction. Did anything change? --=20 You are receiving this mail because: You are on the CC list for the bug.= From owner-freebsd-net@freebsd.org Tue Feb 27 13:09:35 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8D704F240F7 for ; Tue, 27 Feb 2018 13:09:35 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2E7767535B for ; Tue, 27 Feb 2018 13:09: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 mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 617BD109BB for ; Tue, 27 Feb 2018 13:09:34 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w1RD9YqA069482 for ; Tue, 27 Feb 2018 13:09:34 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w1RD9YaN069481 for freebsd-net@FreeBSD.org; Tue, 27 Feb 2018 13:09:34 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: freebsd-net@FreeBSD.org Subject: [Bug 223835] BGP session not established with md5 password via FRRouting Date: Tue, 27 Feb 2018 13:09:30 +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: 11.1-STABLE X-Bugzilla-Keywords: IntelNetworking X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: ae@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: ae@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.25 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, 27 Feb 2018 13:09:35 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D223835 --- Comment #32 from Andrey V. Elsukov --- (In reply to Felipe N. Oliva from comment #31) > (In reply to Andrey V. Elsukov from comment #30) > I will try with TSO/LRO. > Interface: ix (intel 10g) > Doesn't work with ipv4 and ipv6. >=20 > netstat -sp tcp | grep sig > 0 packets with matching signature received > 0 packets with bad signature received > 0 times failed to make signature due to no SA > 0 times unexpected signature received > 0 times no signature provided by segment It seems there were not any attempt to use TCP-MD5, probably you need to properly configure your BGP daemon.=20 > FreeBSD 10.3 was working with only one direction. Did anything change? Yes. --=20 You are receiving this mail because: You are on the CC list for the bug.= From owner-freebsd-net@freebsd.org Tue Feb 27 13:37:39 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 85385F26AA8 for ; Tue, 27 Feb 2018 13:37:39 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 24320777B7 for ; Tue, 27 Feb 2018 13:37: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 mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 68CA610DEA for ; Tue, 27 Feb 2018 13:37:38 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w1RDbctV037087 for ; Tue, 27 Feb 2018 13:37:38 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w1RDbcCA037086 for freebsd-net@FreeBSD.org; Tue, 27 Feb 2018 13:37:38 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: freebsd-net@FreeBSD.org Subject: [Bug 223835] BGP session not established with md5 password via FRRouting Date: Tue, 27 Feb 2018 13:37:38 +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: 11.1-STABLE X-Bugzilla-Keywords: IntelNetworking X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: felipe@felipeoliva.eti.br X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: ae@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.25 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, 27 Feb 2018 13:37:39 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D223835 --- Comment #33 from Felipe N. Oliva --- (In reply to Andrey V. Elsukov from comment #32) pfSense with problem too. https://redmine.pfsense.org/issues/7969 --=20 You are receiving this mail because: You are on the CC list for the bug.= From owner-freebsd-net@freebsd.org Tue Feb 27 15:23:20 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 647FEF2ECE8 for ; Tue, 27 Feb 2018 15:23:20 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 019787D44C for ; Tue, 27 Feb 2018 15:23:20 +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 mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 4D8FE11D68 for ; Tue, 27 Feb 2018 15:23:19 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w1RFNJlb078041 for ; Tue, 27 Feb 2018 15:23:19 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w1RFNJkf078040 for freebsd-net@FreeBSD.org; Tue, 27 Feb 2018 15:23:19 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: freebsd-net@FreeBSD.org Subject: [Bug 226144] lagg(4): Upping a lagg interrface should automatically up its children Date: Tue, 27 Feb 2018 15:23: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: CURRENT X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: linimon@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: assigned_to keywords 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.25 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, 27 Feb 2018 15:23:20 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D226144 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |freebsd-net@FreeBSD.org Keywords| |patch --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-net@freebsd.org Tue Feb 27 15:40:59 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 736DAF30BE2 for ; Tue, 27 Feb 2018 15:40:59 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0FF0A7EE80 for ; Tue, 27 Feb 2018 15:40:59 +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 mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 5CBDE11F0D for ; Tue, 27 Feb 2018 15:40:58 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w1RFew5C012179 for ; Tue, 27 Feb 2018 15:40:58 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w1RFewUl012178 for freebsd-net@FreeBSD.org; Tue, 27 Feb 2018 15:40:58 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: freebsd-net@FreeBSD.org Subject: [Bug 193953] vlan(4) on LACP lagg(4) do not update if_baudrate value and thus SNMP daemons do not provide high capacity counters Date: Tue, 27 Feb 2018 15:40:58 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.0-RELEASE X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-net@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords 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.25 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, 27 Feb 2018 15:40:59 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D193953 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |patch --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-net@freebsd.org Tue Feb 27 15:50:01 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E13ACF318B4 for ; Tue, 27 Feb 2018 15:50:01 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7FB967F646 for ; Tue, 27 Feb 2018 15:50:01 +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 mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id A70F11208A for ; Tue, 27 Feb 2018 15:50:00 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w1RFo0N8034515 for ; Tue, 27 Feb 2018 15:50:00 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w1RFo06o034513 for freebsd-net@FreeBSD.org; Tue, 27 Feb 2018 15:50:00 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: freebsd-net@FreeBSD.org Subject: [Bug 226217] if_qlxgb (QLogic cLOM8214) not working for me when configured via netif Date: Tue, 27 Feb 2018 15:50:00 +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.1-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: linimon@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: 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.25 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, 27 Feb 2018 15:50:02 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D226217 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |freebsd-net@FreeBSD.org --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-net@freebsd.org Tue Feb 27 17:04:29 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 629CCF37765 for ; Tue, 27 Feb 2018 17:04:29 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id EF67D83621 for ; Tue, 27 Feb 2018 17:04:28 +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 mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 391E912BA3 for ; Tue, 27 Feb 2018 17:04:28 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w1RH4ShZ032835 for ; Tue, 27 Feb 2018 17:04:28 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w1RH4SRd032832 for freebsd-net@FreeBSD.org; Tue, 27 Feb 2018 17:04:28 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: freebsd-net@FreeBSD.org Subject: [Bug 226144] lagg(4): Upping a lagg interrface should automatically up its children Date: Tue, 27 Feb 2018 17:04:28 +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: CURRENT X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: eugen@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.25 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, 27 Feb 2018 17:04:29 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D226144 Eugene Grosbein changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |eugen@freebsd.org --- Comment #2 from Eugene Grosbein --- lagg_if_updown() function can "restart" its main loop. How it is guaranteed that it won't do it endlessly? --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-net@freebsd.org Wed Feb 28 17:21:18 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DF3FBF36A9C for ; Wed, 28 Feb 2018 17:21:18 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7A47F83BE2 for ; Wed, 28 Feb 2018 17:21:18 +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 mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id A52811F6BB for ; Wed, 28 Feb 2018 17:21:17 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w1SHLHUV012769 for ; Wed, 28 Feb 2018 17:21:17 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w1SHLHwi012766 for freebsd-net@FreeBSD.org; Wed, 28 Feb 2018 17:21:17 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: freebsd-net@FreeBSD.org Subject: [Bug 223835] BGP session not established with md5 password via FRRouting Date: Wed, 28 Feb 2018 17:21:16 +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: 11.1-STABLE X-Bugzilla-Keywords: IntelNetworking X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: ae@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: ae@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.25 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, 28 Feb 2018 17:21:19 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D223835 --- Comment #34 from Andrey V. Elsukov --- > (In reply to Felipe N. Oliva from comment #31) > > netstat -sp tcp | grep sig > > 0 packets with matching signature received > > 0 packets with bad signature received > > 0 times failed to make signature due to no SA > > 0 times unexpected signature received > > 0 times no signature provided by segment >=20 > It seems there were not any attempt to use TCP-MD5, probably you need to > properly configure your BGP daemon.=20 >=20 When application wants to use TCP-MD5 signatures, it uses TCP_MD5SIG socket option to enable this feature. When socket has enabled this feature and no = SAs are presents, or option is enabled and TCP segments have not such option th= ere will be some counters incremented. In your case application did not enable = this socket option, this is why I think about wrong configuration. --=20 You are receiving this mail because: You are on the CC list for the bug.= From owner-freebsd-net@freebsd.org Wed Feb 28 19:07:45 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F2003F3DC9D for ; Wed, 28 Feb 2018 19:07:44 +0000 (UTC) (envelope-from rysto32@gmail.com) Received: from mail-qk0-x230.google.com (mail-qk0-x230.google.com [IPv6:2607:f8b0:400d:c09::230]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9C6EB884F8 for ; Wed, 28 Feb 2018 19:07:44 +0000 (UTC) (envelope-from rysto32@gmail.com) Received: by mail-qk0-x230.google.com with SMTP id g2so4371334qkd.12 for ; Wed, 28 Feb 2018 11:07:44 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:from:date:message-id:subject:to; bh=mjwdg4hBcgu0mTvpKnNrrnoIagI+oZd1xR83iQx+mes=; b=ONK51hf4Sx5imjKOQWUdvJLfRBc7q7dp25PoJqmG8eMW9Ex4Tkjr5Pd/+AjPIKqoyU NdFh1IQaMd5Jd2wkncfHb8XoIwmOWyA3UU0N/eCBep3yNsyDy0qVVQD+EHPXKQuv9RcG TGrVXfevbMxE6SUKseoayYkAGoOJQkfIm8uxzsJoNjrIM7UeLYAuBgEcEQ+xgIFCJkP9 lIFUTTQRJEFSn2hjWfnMug58/W1jB6zKbcgxv9WGDZzkkzICkudSO+xRuPscstmY2nbF 4vqXmyqV9fqf3x4jv2dy6uQpslK74AhLIP6+GYeKoEQyxjK+Yqz8LFMt0rT9Sm3l3Dbs a9jA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=mjwdg4hBcgu0mTvpKnNrrnoIagI+oZd1xR83iQx+mes=; b=pNs5qNtMrDA66kHcEPaH000TN+XfRNfQCzX2zDEAQOPsZyrSnio7P2B0l6RRn+D5e0 l+4n6ranTbpLZ/6dnHKlwj8OBi3tw+KXpVZb6yOZKKu+nNvguqb13Dg+Lz3+M4NOBiDf MUZJGkpyG6FayZWhStrdmQnC362JSTlo3EquwgXZc/psiKnnfcmFurF7iZHo8DIQlK3v d91weYKJvsyPy/mxEkdmbFnxmS93fiz8xQBmSs9vzcoWbbRoL69r9TUXkDOoVYUG1Ser xOyUGsEwSuXp8bQEknmQqAUS7AHi0Va0bhL5SZ7d44BKM6mVU8CjLn8QEcBl80xwOVSq QyOA== X-Gm-Message-State: APf1xPAWxyKBCnXMc1JOyfyyfwDedusUgW79sM7HSQBRNR0WvLiRN0cG 3TQAy0fCvmdbiI1AhydsYCJSlDwmRU1aw6G3Y1VVCg== X-Google-Smtp-Source: AG47ELsONjn6rCuP/5jgOnL2USGDHcxKRCN7sCgrk7GQ+7YcN290OxETne5SS+Zaecu0UunTmatsCI980H7HCwch4HA= X-Received: by 10.233.214.1 with SMTP id r1mr20140072qkk.121.1519844863808; Wed, 28 Feb 2018 11:07:43 -0800 (PST) MIME-Version: 1.0 Received: by 10.237.52.4 with HTTP; Wed, 28 Feb 2018 11:07:43 -0800 (PST) From: Ryan Stone Date: Wed, 28 Feb 2018 14:07:43 -0500 Message-ID: Subject: [PATCH] Fix for IPv4 subnet route migration To: freebsd-net Content-Type: text/plain; charset="UTF-8" X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.25 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, 28 Feb 2018 19:07:45 -0000 Currently, the FreeBSD stack gets itself into a bizarre state if you try to change the source IP for a subnet route (yes, this implies using two IPs on the same subnet on a system. Yes, I'm aware this is a Bad Idea(TM). Unfortunately I have a customer that insists on this configuration) You can see the review description for all of the gory details. IPv6 is not affected by the issue so I only had to fix IPv4. The review is here: https://reviews.freebsd.org/D14547 If anybody is interested in reviewing this fix, please subscribe yourself to the review. Thanks! Ryan From owner-freebsd-net@freebsd.org Wed Feb 28 19:40:11 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1C6F1F40070 for ; Wed, 28 Feb 2018 19:40:11 +0000 (UTC) (envelope-from freebsd-rwg@pdx.rh.CN85.dnsmgr.net) Received: from pdx.rh.CN85.dnsmgr.net (br1.CN84in.dnsmgr.net [69.59.192.140]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8A71B89B69; Wed, 28 Feb 2018 19:40:10 +0000 (UTC) (envelope-from freebsd-rwg@pdx.rh.CN85.dnsmgr.net) Received: from pdx.rh.CN85.dnsmgr.net (localhost [127.0.0.1]) by pdx.rh.CN85.dnsmgr.net (8.13.3/8.13.3) with ESMTP id w1SJe23V021562; Wed, 28 Feb 2018 11:40:02 -0800 (PST) (envelope-from freebsd-rwg@pdx.rh.CN85.dnsmgr.net) Received: (from freebsd-rwg@localhost) by pdx.rh.CN85.dnsmgr.net (8.13.3/8.13.3/Submit) id w1SJe2bC021561; Wed, 28 Feb 2018 11:40:02 -0800 (PST) (envelope-from freebsd-rwg) From: "Rodney W. Grimes" Message-Id: <201802281940.w1SJe2bC021561@pdx.rh.CN85.dnsmgr.net> Subject: Re: [PATCH] Fix for IPv4 subnet route migration In-Reply-To: To: Ryan Stone Date: Wed, 28 Feb 2018 11:40:02 -0800 (PST) CC: freebsd-net , phabric-admin@freebsd.org X-Mailer: ELM [version 2.4ME+ PL121h (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.25 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, 28 Feb 2018 19:40:11 -0000 > Currently, the FreeBSD stack gets itself into a bizarre state if you > try to change the source IP for a subnet route (yes, this implies > using two IPs on the same subnet on a system. Yes, I'm aware this is > a Bad Idea(TM). Unfortunately I have a customer that insists on this > configuration) > > You can see the review description for all of the gory details. IPv6 > is not affected by the issue so I only had to fix IPv4. The review is > here: > > https://reviews.freebsd.org/D14547 > > If anybody is interested in reviewing this fix, please subscribe > yourself to the review. Thanks! Herald for umbralla Network seems to be broken, this review touches sys/netinet code which should of tripped that rule. Can someone investigate? I have manually subscribed. -- Rod Grimes rgrimes@freebsd.org From owner-freebsd-net@freebsd.org Thu Mar 1 22:33:49 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CD59EF3034A for ; Thu, 1 Mar 2018 22:33:49 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6C2617DD75 for ; Thu, 1 Mar 2018 22:33:49 +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 mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 9DEC070D3 for ; Thu, 1 Mar 2018 22:33:48 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w21MXmgD050508 for ; Thu, 1 Mar 2018 22:33:48 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w21MXm3d050507 for freebsd-net@FreeBSD.org; Thu, 1 Mar 2018 22:33:48 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: freebsd-net@FreeBSD.org Subject: [Bug 226252] [bxe] Unable to set jumbo frames on Broadcom 57800 NIC Date: Thu, 01 Mar 2018 22:33:48 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 11.1-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: linimon@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: assigned_to short_desc 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.25 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, 01 Mar 2018 22:33:50 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D226252 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |freebsd-net@FreeBSD.org Summary|Unable to set jumbo frames |[bxe] Unable to set jumbo |on Broadcom 57800 NIC |frames on Broadcom 57800 | |NIC --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-net@freebsd.org Thu Mar 1 22:46:03 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6D9B2F311D2 for ; Thu, 1 Mar 2018 22:46:03 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 073B87E60A for ; Thu, 1 Mar 2018 22:46:03 +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 mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 520777247 for ; Thu, 1 Mar 2018 22:46:02 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w21Mk2Zi079224 for ; Thu, 1 Mar 2018 22:46:02 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w21Mk2oW079223 for freebsd-net@FreeBSD.org; Thu, 1 Mar 2018 22:46:02 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: freebsd-net@FreeBSD.org Subject: [Bug 226252] [bxe] Unable to set jumbo frames on Broadcom 57800 NIC Date: Thu, 01 Mar 2018 22:46:02 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 11.1-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: eugen@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.25 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, 01 Mar 2018 22:46:03 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D226252 Eugene Grosbein changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |eugen@freebsd.org --- Comment #1 from Eugene Grosbein --- Please show the command you use to raise MTU and its full output. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-net@freebsd.org Thu Mar 1 23:03:01 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 30B37F32386 for ; Thu, 1 Mar 2018 23:03:01 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BD4227F25C for ; Thu, 1 Mar 2018 23:03:00 +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 mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 154227504 for ; Thu, 1 Mar 2018 23:03:00 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w21N2x2Z036937 for ; Thu, 1 Mar 2018 23:02:59 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w21N2xGJ036936 for freebsd-net@FreeBSD.org; Thu, 1 Mar 2018 23:02:59 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: freebsd-net@FreeBSD.org Subject: [Bug 209682] [panic] [netinet] arptimer race Date: Thu, 01 Mar 2018 23:03:00 +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: CURRENT X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: daveb@spectralogic.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.25 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, 01 Mar 2018 23:03:01 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D209682 --- Comment #11 from Dave Baukus --- After 38 days of quiet, this bug has reemerged in our CI tests. I have hit this again 4 times in the past 24 hours (2x on stable 11.0 and 2= x on stable 11.1).=20 I'm going to try Hans Peter Salasky's proposed patch ... --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-net@freebsd.org Fri Mar 2 03:56:01 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ACCA0F44E39 for ; Fri, 2 Mar 2018 03:56:01 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 63E5A698BA for ; Fri, 2 Mar 2018 03:56:01 +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 mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 950FD11DB7 for ; Fri, 2 Mar 2018 03:56:00 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w223u0rn075868 for ; Fri, 2 Mar 2018 03:56:00 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w223u0cd075867 for freebsd-net@FreeBSD.org; Fri, 2 Mar 2018 03:56:00 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: freebsd-net@FreeBSD.org Subject: [Bug 226289] Kernel NIC Driver conflict Date: Fri, 02 Mar 2018 03:56:00 +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.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: linimon@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: 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.25 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, 02 Mar 2018 03:56:01 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D226289 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |freebsd-net@FreeBSD.org --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-net@freebsd.org Fri Mar 2 04:56:15 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EF71FF10FB2 for ; Fri, 2 Mar 2018 04:56:14 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 869D56BF0C for ; Fri, 2 Mar 2018 04:56:14 +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 mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id C5F0412630 for ; Fri, 2 Mar 2018 04:56:13 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w224uDF0032636 for ; Fri, 2 Mar 2018 04:56:13 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w224uDWV032635 for freebsd-net@FreeBSD.org; Fri, 2 Mar 2018 04:56:13 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: freebsd-net@FreeBSD.org Subject: [Bug 226289] [igb] [netmap] Kernel NIC Driver conflict Date: Fri, 02 Mar 2018 04:56:13 +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.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: eugen@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: short_desc 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.25 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, 02 Mar 2018 04:56:15 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D226289 Eugene Grosbein changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Kernel NIC Driver conflict |[igb] [netmap] Kernel NIC | |Driver conflict --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-net@freebsd.org Fri Mar 2 05:17:49 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 71329F24A3C for ; Fri, 2 Mar 2018 05:17:49 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0911C6CDCA for ; Fri, 2 Mar 2018 05:17:49 +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 mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 4C68F128EE for ; Fri, 2 Mar 2018 05:17:48 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w225HmZq093705 for ; Fri, 2 Mar 2018 05:17:48 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w225HmrS093704 for freebsd-net@FreeBSD.org; Fri, 2 Mar 2018 05:17:48 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: freebsd-net@FreeBSD.org Subject: [Bug 209682] [panic] [netinet] arptimer race Date: Fri, 02 Mar 2018 05:17:47 +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: CURRENT X-Bugzilla-Keywords: crash, patch X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: koobs@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-net@FreeBSD.org X-Bugzilla-Flags: mfc-stable11? X-Bugzilla-Changed-Fields: flagtypes.name see_also keywords 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.25 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, 02 Mar 2018 05:17:49 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D209682 Kubilay Kocak changed: What |Removed |Added ---------------------------------------------------------------------------- Flags| |mfc-stable11? See Also| |https://reviews.freebsd.org | |/D4605 Keywords| |crash --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-net@freebsd.org Fri Mar 2 06:20:51 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CF9E4F27E45 for ; Fri, 2 Mar 2018 06:20:50 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 68B696F1D6 for ; Fri, 2 Mar 2018 06:20:50 +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 mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id ABFE013255 for ; Fri, 2 Mar 2018 06:20:49 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w226Knnr099094 for ; Fri, 2 Mar 2018 06:20:49 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w226KnAn099093 for freebsd-net@FreeBSD.org; Fri, 2 Mar 2018 06:20:49 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: freebsd-net@FreeBSD.org Subject: [Bug 226252] [bxe] Unable to set jumbo frames on Broadcom 57800 NIC Date: Fri, 02 Mar 2018 06:20:49 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 11.1-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: gagandeep@nrggos.com.au 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.25 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, 02 Mar 2018 06:20:51 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D226252 --- Comment #2 from gagandeep@nrggos.com.au --- Please see the outpu, I tried vlan40 and lagg1 as well both same output: root@freenas5:~ # ifconfig vlan40 mtu 9000 ifconfig: ioctl SIOCSIFMTU (set mtu): Invalid argument root@freenas5:~ # ifconfig lagg1 mtu 9000 ifconfig: ioctl SIOCSIFMTU (set mtu): Invalid argument if set the mtu to 900 (not 9000) and 1500 it works with out any errors: root@freenas5:~ # ifconfig vlan40 mtu 900 root@freenas5:~ # ifconfig vlan40 mtu 1500 # ifconfig -a =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D root@freenas5:~ # ifconfig -a bxe0: flags=3D8843 metric 0 mtu 1500 =20=20=20=20=20=20=20 options=3D527bb ether b8:2a:72:d1:21:5b hwaddr b8:2a:72:d1:21:5b nd6 options=3D9 media: Ethernet autoselect (10Gbase-SR ) status: active bxe1: flags=3D8843 metric 0 mtu 1500 =20=20=20=20=20=20=20 options=3D527bb ether b8:2a:72:d1:21:5b hwaddr b8:2a:72:d1:21:5d nd6 options=3D9 media: Ethernet autoselect (10Gbase-SR ) status: active bxe2: flags=3D8843 metric 0 mtu 1500 =20=20=20=20=20=20=20 options=3D527bb ether b8:2a:72:d1:21:5f hwaddr b8:2a:72:d1:21:5f nd6 options=3D9 media: Ethernet autoselect (1000baseT ) status: active bxe3: flags=3D8843 metric 0 mtu 1500 =20=20=20=20=20=20=20 options=3D527bb ether b8:2a:72:d1:21:5f hwaddr b8:2a:72:d1:21:61 nd6 options=3D9 media: Ethernet autoselect (1000baseT ) status: active lo0: flags=3D8049 metric 0 mtu 16384 options=3D600003 inet6 ::1 prefixlen 128=20 inet6 fe80::1%lo0 prefixlen 64 scopeid 0x5=20 inet 127.0.0.1 netmask 0xff000000=20 nd6 options=3D21 groups: lo=20 lagg0: flags=3D8843 metric 0 mtu 15= 00 =20=20=20=20=20=20=20 options=3D527bb ether b8:2a:72:d1:21:5f nd6 options=3D9 media: Ethernet autoselect status: active groups: lagg=20 laggproto loadbalance lagghash l2,l3,l4 laggport: bxe2 flags=3D4 laggport: bxe3 flags=3D4 lagg1: flags=3D8843 metric 0 mtu 15= 00 =20=20=20=20=20=20=20 options=3D527bb ether b8:2a:72:d1:21:5b nd6 options=3D9 media: Ethernet autoselect status: active groups: lagg=20 laggproto loadbalance lagghash l2,l3,l4 laggport: bxe0 flags=3D4 laggport: bxe1 flags=3D4 vlan10: flags=3D8843 metric 0 mtu 1= 500 options=3D703 ether b8:2a:72:d1:21:5f inet 10.4.6.4 netmask 0xffff0000 broadcast 10.4.255.255=20 nd6 options=3D9 media: Ethernet autoselect status: active vlan: 10 vlanpcp: 0 parent interface: lagg0 groups: vlan=20 vlan40: flags=3D8843 metric 0 mtu 1= 500 options=3D703 ether b8:2a:72:d1:21:5b nd6 options=3D9 media: Ethernet autoselect status: active vlan: 40 vlanpcp: 0 parent interface: lagg1 groups: vlan=20 vlan20: flags=3D8843 metric 0 mtu 1= 500 options=3D703 ether b8:2a:72:d1:21:5b inet 203.4.168.65 netmask 0xffffff00 broadcast 203.4.168.255=20 nd6 options=3D9 media: Ethernet autoselect status: active vlan: 20 vlanpcp: 0 parent interface: lagg1 groups: vlan=20 vlan30: flags=3D8843 metric 0 mtu 1= 500 options=3D703 ether b8:2a:72:d1:21:5b inet 192.168.2.65 netmask 0xffffff00 broadcast 192.168.2.255=20 nd6 options=3D9 media: Ethernet autoselect status: active vlan: 30 vlanpcp: 0 parent interface: lagg1 groups: vlan --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-net@freebsd.org Fri Mar 2 07:17:55 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 12821F2A6B2 for ; Fri, 2 Mar 2018 07:17:55 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 77412713CF for ; Fri, 2 Mar 2018 07:17:54 +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 mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id B4184139B2 for ; Fri, 2 Mar 2018 07:17:53 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w227HrVV061921 for ; Fri, 2 Mar 2018 07:17:53 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w227HrBr061920 for freebsd-net@FreeBSD.org; Fri, 2 Mar 2018 07:17:53 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: freebsd-net@FreeBSD.org Subject: [Bug 226252] [bxe] Unable to set jumbo frames on Broadcom 57800 NIC Date: Fri, 02 Mar 2018 07:17:52 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 11.1-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: eugen@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.25 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, 02 Mar 2018 07:17:55 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D226252 --- Comment #3 from Eugene Grosbein --- (In reply to gagandeep from comment #2) You cannot enable jumbo frames for virtual interfaces without enabling them= for real one first. And you should not raise mtu of distinct lagg member, so do that when bxe0 is not included into lagg. Just use /etc/rc.conf for easiest way to make it correctly and in sequence: ifconfig_bxe0=3D"mtu 9000 up" Please test and respond. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-net@freebsd.org Fri Mar 2 07:38:01 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 98428F2BC57 for ; Fri, 2 Mar 2018 07:38:01 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 309DC71FE6 for ; Fri, 2 Mar 2018 07:38:01 +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 mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 6FC2213C61 for ; Fri, 2 Mar 2018 07:38:00 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w227c0CX008497 for ; Fri, 2 Mar 2018 07:38:00 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w227c0Vh008496 for freebsd-net@FreeBSD.org; Fri, 2 Mar 2018 07:38:00 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: freebsd-net@FreeBSD.org Subject: [Bug 225927] [panic] NULL pointer dereference in nd6_llinfo_timer() Date: Fri, 02 Mar 2018 07:38:00 +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: CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me 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: see_also 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.25 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, 02 Mar 2018 07:38:01 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D225927 Andrey V. Elsukov changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.freebsd.org/bu | |gzilla/show_bug.cgi?id=3D2= 096 | |82 --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-net@freebsd.org Fri Mar 2 07:38:02 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 93D3CF2BC5D for ; Fri, 2 Mar 2018 07:38:02 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3006B71FF1 for ; Fri, 2 Mar 2018 07:38: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 mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 02A9C13C66 for ; Fri, 2 Mar 2018 07:38:01 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w227c0Y9008551 for ; Fri, 2 Mar 2018 07:38:00 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w227c0Yh008550 for freebsd-net@FreeBSD.org; Fri, 2 Mar 2018 07:38:00 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: freebsd-net@FreeBSD.org Subject: [Bug 209682] [panic] [netinet] arptimer race Date: Fri, 02 Mar 2018 07:38:00 +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: CURRENT X-Bugzilla-Keywords: crash, patch 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: mfc-stable11? X-Bugzilla-Changed-Fields: see_also 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.25 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, 02 Mar 2018 07:38:02 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D209682 Andrey V. Elsukov changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugs.freebsd.org/bu | |gzilla/show_bug.cgi?id=3D2= 259 | |27 --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-net@freebsd.org Fri Mar 2 17:40:38 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C43D1F375FB for ; Fri, 2 Mar 2018 17:40:38 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 624536D840 for ; Fri, 2 Mar 2018 17:40: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 mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 7C66519034 for ; Fri, 2 Mar 2018 17:40:37 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w22HebP0000570 for ; Fri, 2 Mar 2018 17:40:37 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w22HebFm000569 for freebsd-net@FreeBSD.org; Fri, 2 Mar 2018 17:40:37 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: freebsd-net@FreeBSD.org Subject: [Bug 218579] Wake on Lan doesn't work for bge NIC driver Date: Fri, 02 Mar 2018 17:40: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: CURRENT X-Bugzilla-Keywords: needs-qa, patch, regression X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: cy@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: cy@FreeBSD.org X-Bugzilla-Flags: mfc-stable10? mfc-stable11? X-Bugzilla-Changed-Fields: assigned_to 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.25 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, 02 Mar 2018 17:40:38 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D218579 Cy Schubert changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-net@FreeBSD.org |cy@FreeBSD.org CC| |cy@FreeBSD.org --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-net@freebsd.org Fri Mar 2 20:59:19 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0E79DF45829 for ; Fri, 2 Mar 2018 20:59:19 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A0CF0781B7 for ; Fri, 2 Mar 2018 20:59:18 +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 mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id C83B21AC22 for ; Fri, 2 Mar 2018 20:59:17 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w22KxHol039601 for ; Fri, 2 Mar 2018 20:59:17 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w22KxHDg039600 for freebsd-net@FreeBSD.org; Fri, 2 Mar 2018 20:59:17 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: freebsd-net@FreeBSD.org Subject: [Bug 218579] Wake on Lan doesn't work for bge NIC driver Date: Fri, 02 Mar 2018 20:59:17 +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: CURRENT X-Bugzilla-Keywords: needs-qa, patch, regression X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: rgrimes@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: cy@FreeBSD.org X-Bugzilla-Flags: mfc-stable10? mfc-stable11? 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.25 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, 02 Mar 2018 20:59:19 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D218579 Rodney W. Grimes changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |freebsd-net@FreeBSD.org, | |rgrimes@FreeBSD.org --- Comment #4 from Rodney W. Grimes --- Please try not remove group assignment when "Taking" bugs. --=20 You are receiving this mail because: You are on the CC list for the bug.= From owner-freebsd-net@freebsd.org Sat Mar 3 17:21:21 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7DE0EF2B205 for ; Sat, 3 Mar 2018 17:21:21 +0000 (UTC) (envelope-from citrin+bsd@citrin.ru) Received: from hz.citrin.ru (hz.citrin.ru [IPv6:2a01:4f8:d16:10c3::2]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1FD6A6C3A1 for ; Sat, 3 Mar 2018 17:21:20 +0000 (UTC) (envelope-from citrin+bsd@citrin.ru) Received: from x220.lan (unknown [IPv6:2601:18a:c680:9888:b584:de18:1251:8090]) by hz.citrin.ru (Postfix) with ESMTPSA id B945B2E8BB7 for ; Sat, 3 Mar 2018 17:21:18 +0000 (UTC) Subject: Re: Looking for a Wireless NIC with 802.11ac or 802.11n support To: freebsd-net@freebsd.org References: <20180205040249.GA47952@admin.sibptus.transneft.ru> From: Anton Yuzhaninov Message-ID: Date: Sat, 3 Mar 2018 12:21:16 -0500 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:52.0) Gecko/20100101 Thunderbird/52.5.2 MIME-Version: 1.0 In-Reply-To: <20180205040249.GA47952@admin.sibptus.transneft.ru> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=citrin.ru; s=s0; t=1520097678; bh=2DsjtzHwnYPVzav/mL5NuWWQUspZwkkj+hLFybGmgtg=; h=Subject:To:References:From:Message-ID:Date:MIME-Version:In-Reply-To:Content-Type:Content-Transfer-Encoding; b=x5SkyUXRdZUp0/QvhidIJyireN1cWjLZCJ71PNhddACK0bDF/AN8aSndzpRkdkDWkzkb5qrUTMJTEQ/esSer3NM4LrE+PP5VhJmiKbpNh0VdzRUT76LdYcFgPl5JJq4mgRjamlVbSDd9THTovecSFE+f+IgLD5gsAy+B5LNPxhU= X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Mar 2018 17:21:21 -0000 On 02/04/18 23:02, Victor Sudakov wrote: > I'm looking for an internal Wi-Fi NIC with support for > > 1. 802.11n or better 802.11ac > 2. HOSTAP mode > 3. 5 GHz band (better both 2GHz and 5GHz). Atheros AR9382: 1. supports 802.11a and 802.11n 2. works in hostap mode 3. works in 5 GHz band or in 2.4Ghz (one freq at a time). I used TP-LINK TL-WDN3800 (which based on this chip) and it worked under FreeBSD without problems.