From owner-freebsd-questions@FreeBSD.ORG Sun May 19 00:51:42 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id D0AF26A1; Sun, 19 May 2013 00:51:42 +0000 (UTC) (envelope-from fbsd8@a1poweruser.com) Received: from mail-03.name-services.com (mail-03.name-services.com [69.64.155.195]) by mx1.freebsd.org (Postfix) with ESMTP id BB423BDE; Sun, 19 May 2013 00:51:42 +0000 (UTC) Received: from [10.0.10.1] ([173.88.196.224]) by mail-03.name-services.com with Microsoft SMTPSVC(6.0.3790.4675); Sat, 18 May 2013 17:51:43 -0700 Message-ID: <5198221D.5040601@a1poweruser.com> Date: Sat, 18 May 2013 20:51:41 -0400 From: Joe User-Agent: Thunderbird 2.0.0.17 (Windows/20080914) MIME-Version: 1.0 To: Devin Teske Subject: Re: netgraph network setup for jail(8) vnet jails. References: <5197A06A.9080401@a1poweruser.com> <13CA24D6AB415D428143D44749F57D7201F5076A@ltcfiswmsgmb26> In-Reply-To: <13CA24D6AB415D428143D44749F57D7201F5076A@ltcfiswmsgmb26> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 19 May 2013 00:51:43.0495 (UTC) FILETIME=[08014170:01CE542B] X-Sender: fbsd8@a1poweruser.com X-Authenticated-Sender: fbsd8@a1poweruser.com X-EchoSenderHash: [fbsd8]-[a1poweruser*com] Cc: "" X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 May 2013 00:51:42 -0000 Teske, Devin wrote: > Sorry for top-post, but just wanted to add a quick note: > > The output of "ngctl dot" would be very helpful to others in debugging your setup. graph netgraph { edge [ weight = 1.0 ]; node [ shape = record, fontsize = 12 ] { "1" [ label = "{rl0:|{ether|[1]:}}" ]; "5" [ label = "{bridge0:|{bridge|[5]:}}" ]; "9" [ label = "{ngeth0:|{eiface|[9]:}}" ]; "e" [ label = "{ngctl2355:|{socket|[e]:}}" ]; }; subgraph cluster_disconnected { bgcolor = pink; "e"; }; node [ shape = octagon, fontsize = 10 ] { "1.upper" [ label = "upper" ]; "1.lower" [ label = "lower" ]; }; { edge [ weight = 2.0, style = bold ]; "1" -- "1.upper"; "1" -- "1.lower"; }; node [ shape = octagon, fontsize = 10 ] { "5.link2" [ label = "link2" ]; "5.link1" [ label = "link1" ]; "5.link0" [ label = "link0" ]; }; { edge [ weight = 2.0, style = bold ]; "5" -- "5.link2"; "5" -- "5.link1"; "5" -- "5.link0"; }; "5.link1" -- "1.upper"; "5.link0" -- "1.lower"; node [ shape = octagon, fontsize = 10 ] { "9.ether" [ label = "ether" ]; }; { edge [ weight = 2.0, style = bold ]; "9" -- "9.ether"; }; "9.ether" -- "5.link2"; };