From owner-freebsd-xen@FreeBSD.ORG Wed Mar 25 07:30:26 2015 Return-Path: Delivered-To: freebsd-xen@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 88C07C97 for ; Wed, 25 Mar 2015 07:30:26 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 558F4C6 for ; Wed, 25 Mar 2015 07:30:26 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t2P7UQuf096148 for ; Wed, 25 Mar 2015 07:30:26 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-xen@FreeBSD.org Subject: [Bug 195978] Add vlan support to xen netback Date: Wed, 25 Mar 2015 07:30:26 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.1-STABLE X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: araujo@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-xen@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-xen@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion of the freebsd port to xen - implementation and usage List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Mar 2015 07:30:26 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195978 Marcelo Araujo changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |araujo@FreeBSD.org --- Comment #1 from Marcelo Araujo --- (In reply to Grischa Zengel from comment #0) Hello Grischa, I made few tests using FreeBSD HEAD(r280410) as dom0 and two domU with FreeBSD 10.1-RELEASE. The xen version is 4.6-unstable. I successfully setup a vlan(4) interface without any problem and without the patch you mentioned, here is the output: Dom0: root@:/z/src/sys/dev/xen/netfront # xl list Name ID Mem VCPUs State Time(s) Domain-0 0 2047 8 r----- 373.0 FreeBSDPVHVM2 3 512 2 -b---- 20.2 FreeBSDPVHVM 4 512 2 -b---- 29.0 FreeBSDPVHVM: root@pvhvm:~ # ifconfig xn0.10 xn0.10: flags=8843 metric 0 mtu 1496 ether 00:16:3e:50:e2:8d inet 192.168.1.1 netmask 0xffffff00 broadcast 192.168.1.255 nd6 options=29 media: Ethernet manual status: active vlan: 10 parent interface: xn0 FreeBSDPVHVM2: root@pvhvm2:~ # ifconfig xn0.10 xn0.10: flags=8843 metric 0 mtu 1496 ether 00:16:3e:58:40:14 inet 192.168.1.2 netmask 0xffffff00 broadcast 192.168.1.255 nd6 options=29 media: Ethernet manual status: active vlan: 10 parent interface: xn0 root@pvhvm:~ # ping 192.168.1.2 PING 192.168.1.2 (192.168.1.2): 56 data bytes 64 bytes from 192.168.1.2: icmp_seq=0 ttl=64 time=0.178 ms 64 bytes from 192.168.1.2: icmp_seq=1 ttl=64 time=0.171 ms 64 bytes from 192.168.1.2: icmp_seq=2 ttl=64 time=0.147 ms root@pvhvm2:~ # ping 192.168.1.1 PING 192.168.1.1 (192.168.1.1): 56 data bytes 64 bytes from 192.168.1.1: icmp_seq=0 ttl=64 time=0.134 ms 64 bytes from 192.168.1.1: icmp_seq=1 ttl=64 time=0.118 ms 64 bytes from 192.168.1.1: icmp_seq=2 ttl=64 time=0.184 ms I'm wondering, if you still have this problem, and if you can give a try with FreeBSD HEAD. Best Regards, -- You are receiving this mail because: You are the assignee for the bug.