From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp64.iad3b.emailsrvr.com (smtp64.iad3b.emailsrvr.com [146.20.161.64]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by lists.bufferbloat.net (Postfix) with ESMTPS id E2C3E3CB35 for ; Thu, 3 Jan 2019 12:32:14 -0500 (EST) Received: from smtp9.relay.iad3b.emailsrvr.com (localhost [127.0.0.1]) by smtp9.relay.iad3b.emailsrvr.com (SMTP Server) with ESMTP id A690C200DB for ; Thu, 3 Jan 2019 12:32:14 -0500 (EST) X-SMTPDoctor-Processed: csmtpprox beta Received: from smtp9.relay.iad3b.emailsrvr.com (localhost [127.0.0.1]) by smtp9.relay.iad3b.emailsrvr.com (SMTP Server) with ESMTP id A2FA220230 for ; Thu, 3 Jan 2019 12:32:14 -0500 (EST) X-Auth-ID: dev@logicalwebhost.com Received: by smtp9.relay.iad3b.emailsrvr.com (Authenticated sender: dev-AT-logicalwebhost.com) with ESMTPSA id 4C347200DB for ; Thu, 3 Jan 2019 12:32:14 -0500 (EST) X-Sender-Id: dev@logicalwebhost.com Received: from [10.8.0.10] (97-90-101-79.static.mdfd.or.charter.com [97.90.101.79]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384) by 0.0.0.0:25 (trex/5.7.12); Thu, 03 Jan 2019 12:32:14 -0500 From: Dev Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Mime-Version: 1.0 (Mac OS X Mail 12.2 \(3445.102.3\)) Message-Id: <9B37BCD5-9ADE-4E7D-8B5C-82830051831B@logicalwebhost.com> Date: Thu, 3 Jan 2019 09:32:12 -0800 To: bloat@lists.bufferbloat.net X-Mailer: Apple Mail (2.3445.102.3) Subject: [Bloat] fq_codel on bridge multiple subnets? X-BeenThere: bloat@lists.bufferbloat.net X-Mailman-Version: 2.1.20 Precedence: list List-Id: General list for discussing Bufferbloat List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Jan 2019 17:32:14 -0000 I=E2=80=99m trying to create a bridge on eth1 and eth2, with a = management interface on eth0, then enable fq_codel on the bridge. My = bridge interface looks like: #>: cat /etc/network/interfaces =E2=80=A6 iface eth1 inet manual iface eth2 inet manual # Bridge setup iface br0 inet static bridge_ports eth1 eth2 #bridge_stp on address 192.168.3.75 broadcast 192.168.0.255 netmask 255.255.255.0 gateway 192.168.3.1 #>: tc qdisc add dev br0 root fq_codel #>: ip a 6: br0: mtu 1500 qdisc fq_codel = state UP group default qlen 1000 link/ether 00:e0:67:0f:4d:d0 brd ff:ff:ff:ff:ff:ff inet 192.168.3.75/24 brd 192.168.3.255 scope global br0 valid_lft forever preferred_lft forever inet6 fe80::2e0:67ff:fe0f:4dd0/64 scope link valid_lft forever preferred_lft forever I want fq_codel to manage the buffer for multiple subnets using these = two interfaces as a bridge, will that work, or only for the = 192.168.3.75/24 that=E2=80=99s configured on br0? Also, is there a command to watch what the buffer is doing real time = once I run traffic across it? - Dev=