From owner-svn-src-head@FreeBSD.ORG Mon Oct 20 22:37:26 2014 Return-Path: Delivered-To: svn-src-head@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 ACB81696 for ; Mon, 20 Oct 2014 22:37:26 +0000 (UTC) Received: from mail-pd0-f174.google.com (mail-pd0-f174.google.com [209.85.192.174]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7F98467A for ; Mon, 20 Oct 2014 22:37:26 +0000 (UTC) Received: by mail-pd0-f174.google.com with SMTP id y13so101pdi.33 for ; Mon, 20 Oct 2014 15:37:20 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:sender:in-reply-to:references:date :message-id:subject:from:to:cc:content-type; bh=IcJDyxRs42Qf60onFy97BQ/tuycHav1WbBhSobu0JWM=; b=OG/aJTEH087ftQhcd20m200HJBhCyQFjIvUTRcwhOSVRrHcglovzJ5udCtuzbDHiSV LmUeZPYCDbjQEUD6taJ3N1jooSht51tIItIq56FdtWRpq+hRoUnt45W6OD5HRhEiixUQ ZrR1f2NFU82HkZniFbgUVjNI0oqyrzU1GQFRSX04yCu8+T4dP/xFEVJsJmzfANKYzoZ5 Af03RRnmfjYHrmAa8N4nzKv4TPSMuWxv++C56F1AdU/JEzENjwoYEuzJcS+/+ybIbP0+ /WlXR/eedSo70RYD84p++u8zPGrR1TAkhdu8IXEyvpMtO7neCnWuW++Ivjz7gHfsGgQe KqfQ== X-Gm-Message-State: ALoCoQnz7+PmDEyJYkk3t3s9UI1alisY9Qaca3LZnehMnkiMDXbU6MP6jASiTcIeXxKulle8cvQd MIME-Version: 1.0 X-Received: by 10.68.125.164 with SMTP id mr4mr13992101pbb.78.1413844631828; Mon, 20 Oct 2014 15:37:11 -0700 (PDT) Sender: andy@fud.org.nz Received: by 10.70.109.175 with HTTP; Mon, 20 Oct 2014 15:37:11 -0700 (PDT) In-Reply-To: <201410201442.s9KEggqt096167@svn.freebsd.org> References: <201410201442.s9KEggqt096167@svn.freebsd.org> Date: Tue, 21 Oct 2014 11:37:11 +1300 X-Google-Sender-Auth: Cb6N57Z7Q8cDHOZIyW7J09hAnPo Message-ID: Subject: Re: svn commit: r273331 - in head: sbin/ifconfig share/man/man4 sys/conf sys/modules sys/modules/if_vxlan sys/net sys/sys From: Andrew Thompson To: Bryan Venteicher Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.18-1 Cc: "svn-src-head@freebsd.org" , "svn-src-all@freebsd.org" , "src-committers@freebsd.org" X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Oct 2014 22:37:26 -0000 On 21 October 2014 03:42, Bryan Venteicher wrote: > Author: bryanv > Date: Mon Oct 20 14:42:42 2014 > New Revision: 273331 > URL: https://svnweb.freebsd.org/changeset/base/273331 > > Log: > Add vxlan interface > > vxlan creates a virtual LAN by encapsulating the inner Ethernet frame in > a UDP packet. This implementation is based on RFC7348. > > Currently, the IPv6 support is not fully compliant with the > specification: > we should be able to receive UPDv6 packets with a zero checksum, but we > need to support RFC6935 first. Patches for this should come soon. > > Given it is self contained new code is it a 10.1 MFC candidate? Andrew