From owner-freebsd-net@FreeBSD.ORG Fri Dec 5 14:10:50 2008 Return-Path: Delivered-To: freebsd-net@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 57EAE1065673 for ; Fri, 5 Dec 2008 14:10:50 +0000 (UTC) (envelope-from samflanker@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.187]) by mx1.freebsd.org (Postfix) with ESMTP id DA9D58FC0C for ; Fri, 5 Dec 2008 14:10:49 +0000 (UTC) (envelope-from samflanker@gmail.com) Received: by nf-out-0910.google.com with SMTP id h3so5900nfh.33 for ; Fri, 05 Dec 2008 06:10:48 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:subject:content-type :content-transfer-encoding; bh=1str9SeiCGu0rygTHpqZRrqAMWgM9TaxCReiZSDw+Vs=; b=OEqYR+K5X6YSox6e1tgwAfblm8iKWnb4luL/8cHFBtUaTzZ7enkf0w4XDZrEZ2CaF9 /6jXnSWWKaTv3GmT2Ti7dN3kbTS3ERUA4mbQai66W3FP0SyiPqgCoKiz+cC7bjwkvu1s DVzn9iE3HqM23KOMUvpXczCs/emiNCHbODAQU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:subject :content-type:content-transfer-encoding; b=fXdqZRgAYWA7xIRuuSqM+cER99VWMSWtkiP/P0Lr55Fi16AHGfo7ALHFehK3pBe3Kw yDbBUZlcROQEOVi7fWjOxlHlGA9viyjaFsu7ktOgXNfsmH8sPRRVwlijx3APbwP1U5/V 84zSYpJuSbSbp5SRFFLhDCVjTApKpTzEPB2ck= Received: by 10.210.46.4 with SMTP id t4mr23768ebt.49.1228484557427; Fri, 05 Dec 2008 05:42:37 -0800 (PST) Received: from localhost.localdomain ([213.152.137.42]) by mx.google.com with ESMTPS id 7sm56869eyb.54.2008.12.05.05.42.35 (version=SSLv3 cipher=RC4-MD5); Fri, 05 Dec 2008 05:42:36 -0800 (PST) Message-ID: <49392FDD.8050209@gmail.com> Date: Fri, 05 Dec 2008 16:42:53 +0300 From: Vladimir Ermakov User-Agent: Thunderbird 2.0.0.18 (X11/20081119) MIME-Version: 1.0 To: freebsd-net@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: vlan support trouble in if_sis driver ? X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.5 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, 05 Dec 2008 14:10:50 -0000 Hello Using sis card (SiS 900) sis0: port 0xe800-0xe8ff mem 0xed160000-0xed160fff irq 19 at device 4.0 on pci0 # uname -a FreeBSD damask 7.0-RELEASE FreeBSD 7.0-RELEASE #0: Sun Feb 24 19:59:52 UTC 2008 root@logan.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 # netstat -bin Name Mtu Network Address Ipkts Ierrs Ibytes Opkts Oerrs Obytes Coll sis0 1500 00:0d:61:xx:xx:xx 356 4 40934 155 0 29276 0 em0 1500 00:02:55:xx:xx:xx 0 0 0 0 0 0 0 lo0 16384 0 0 0 0 0 0 0 lo0 16384 fe80:3::1/64 fe80:3::1 0 - 0 0 - 0 - lo0 16384 ::1/128 ::1 0 - 0 0 - 0 - lo0 16384 127.0.0.0/8 127.0.0.1 0 - 0 0 - 0 - vlan0 1500 00:02:55:xx:xx:xx 0 0 0 0 0 0 0 vlan1 1500 00:0d:61:xx:xx:xx 255 0 29543 155 0 28656 0 # ifconfig sis0 sis0: flags=8843 metric 0 mtu 1500 options=8 ether 00:0d:61:xx:xx:xx media: Ethernet autoselect (100baseTX ) status: active # ifconfig vlan1 vlan1: flags=8843 metric 0 mtu 1500 ether 00:0d:61:xx:xx:xx inet 192.168.1.221 netmask 0xffffff80 broadcast 192.168.1.255 media: Ethernet autoselect (100baseTX ) status: active vlan: 12 parent interface: sis0 noticed the following troubles with using interface vlan1 (vlandev sis0): - can not download a file using fget tool - increases Ierrs on the physical interface sis0 this bug in if_sis driver ? /Vladimir Ermakov