File: nesting.dot

package info (click to toggle)
netcf 0.1.9-2%2Bdeb7u2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 60,800 kB
  • sloc: sh: 8,523; ansic: 6,699; xml: 859; makefile: 199
file content (18 lines) | stat: -rw-r--r-- 548 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
digraph nesting {
  graph [rankdir=BT];
  node [shape=box,style=filled,fillcolor="#ffbfbf", color="#ff8080"];

  physical;
  vlan;
  bridge;
  bond;

  notes [ label = "Arrows denote 'can be contained in', which\l generally implies that the underlying interface\l can't have an address, except for VLAN's\l marked in green\l", shape=note, fontsize=10 ];
  physical -> vlan [color = "#54d74c"];
  physical -> bridge;
  physical -> bond;
  vlan -> bridge;
  bridge -> vlan [color = "#54d74c"];
  bond -> vlan [color = "#54d74c"];
  bond -> bridge;
}