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


_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[email protected]"

Reply via email to