-
Notifications
You must be signed in to change notification settings - Fork 0
/
isis_db.dot
21 lines (21 loc) · 1018 Bytes
/
isis_db.dot
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
digraph finite_state_machine {
rankdir=TB;
edge [dir="both"]
concentrate=true
node [shape = circle];
node [shape = doublecircle, color = green, style = filled]; QFX_BR02 MX_BR01 ;
node [shape = doublecircle, color = yellow, style = filled]; MX_PE01 MX_PE02 ;
node [shape = doublecircle, color = blue, style = filled]; MX_RR01 ;
MX_BR01 -> QFX_BR02 [ label = "MX_BR01-QFX_BR02" ];
MX_BR01 -> MX_PE01 [ label = "MX_BR01-MX_PE01" ];
MX_BR01 -> MX_RR01 [ label = "MX_BR01-MX_RR01" ];
MX_BR01 -> MX_PE02 [ label = "MX_BR01-MX_PE02" ];
QFX_BR02 -> MX_BR01 [ label = "QFX_BR02-MX_BR01" ];
QFX_BR02 -> MX_PE01 [ label = "QFX_BR02-MX_PE01" ];
QFX_BR02 -> MX_PE02 [ label = "QFX_BR02-MX_PE02" ];
MX_PE01 -> MX_BR01 [ label = "MX_PE01-MX_BR01" ];
MX_PE01 -> QFX_BR02 [ label = "MX_PE01-QFX_BR02" ];
MX_RR01 -> MX_BR01 [ label = "MX_RR01-MX_BR01" ];
MX_PE02 -> MX_BR01 [ label = "MX_PE02-MX_BR01" ];
MX_PE02 -> QFX_BR02 [ label = "MX_PE02-QFX_BR02" ];
}