netgraph network setup for jail(8) vnet jails.

Joe fbsd8 at a1poweruser.com
Sun May 19 00:51:42 UTC 2013


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";
};




More information about the freebsd-questions mailing list