From owner-freebsd-net@FreeBSD.ORG Tue Jan 29 19:23:45 2013 Return-Path: Delivered-To: freebsd-net@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 12F04615 for ; Tue, 29 Jan 2013 19:23:45 +0000 (UTC) (envelope-from Mark.Martinec+freebsd@ijs.si) Received: from mail.ijs.si (amavis-proxy-ori.ijs.si [193.2.4.66]) by mx1.freebsd.org (Postfix) with ESMTP id C1BB9184 for ; Tue, 29 Jan 2013 19:23:44 +0000 (UTC) Received: from amavis-proxy-ori.ijs.si (localhost [IPv6:::1]) by mail.ijs.si (Postfix) with ESMTP id 3YwcsM3RQlzGN2s for ; Tue, 29 Jan 2013 20:17:11 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ijs.si; h= message-id:content-transfer-encoding:content-type:content-type :mime-version:user-agent:date:date:subject:subject:organization :from:from:received:received:received:vbr-info; s=jakla2; t= 1359487026; x=1362079027; bh=PnCKl/IeLVlS5Bai45d+fVNIcpAGcEAp5xS u/RNfHSQ=; b=UgGyPFT6xGhVVD11C/Ye5D0DUDAIH6zwFWTe2OUR/jP9HC1fAgr F3DyCxCneGaS5xQfW7LxxRIsDm3w5oYZYesCTQNtFRB0V4WJT/xs1Sh0yRuVAxZ/ njssCNlWATBRpK7Nv1aWu1rtdMrtnb7d0WuTcmbDo23ttK1WPXsPK+60= VBR-Info: md=ijs.si; mc=all; mv=dwl.spamhaus.org; X-Virus-Scanned: amavisd-new at ijs.si Received: from mail.ijs.si ([IPv6:::1]) by amavis-proxy-ori.ijs.si (mail.ijs.si [IPv6:::1]) (amavisd-new, port 10012) with ESMTP id 6fiVSFIYcZQl for ; Tue, 29 Jan 2013 20:17:06 +0100 (CET) Received: from mildred.ijs.si (mailbox.ijs.si [IPv6:2001:1470:ff80::143:1]) by mail.ijs.si (Postfix) with ESMTP for ; Tue, 29 Jan 2013 20:17:06 +0100 (CET) Received: from neli.ijs.si (neli.ijs.si [IPv6:2001:1470:ff80:88:21c:c0ff:feb1:8c91]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mildred.ijs.si (Postfix) with ESMTPSA id 8A741130 for ; Tue, 29 Jan 2013 20:17:06 +0100 (CET) From: Mark Martinec Organization: J. Stefan Institute To: freebsd-net@freebsd.org Subject: ALTQ on EPAIR interface? Date: Tue, 29 Jan 2013 20:17:04 +0100 User-Agent: KMail/1.13.7 (FreeBSD/9.1-STABLE; KDE/4.8.4; amd64; ; ) MIME-Version: 1.0 Content-Type: Text/Plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <201301292017.05016.Mark.Martinec+freebsd@ijs.si> X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.14 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, 29 Jan 2013 19:23:45 -0000 The ALTQ(4) man page (FreeBSD 9.1-STABLE) claims that altq is supported on the epair(4) interface, yet when such interface is specified in the 'altq on' directive in pf.conf, the pf complains: # service pf start Enabling pfpfctl: epair0a: driver does not support altq So, does it, or does it not support the altq? Background: the intention is to provide some QoS on the inner side of a tunnel carrying both IPv4 and IPv6 traffic to a remote site. Apparently the GIF interface also does not support altq, so the idea was to put epair in the mix. Applying altq to an outer ethernet interface does not allow classifying on the inner contents of the tunnel afict, so it doesn't look line an option. Mark