refonte diagrammes interco en graphviz

master
Yves Dubromelle 6 years ago
parent 678b12eb39
commit 485e7d02d6

@ -14,28 +14,65 @@ Pourquoi ? Comment ?
image::https://www.web3.lu/wp-content/uploads/2012/10/internet_topology.jpg[] image::https://www.web3.lu/wp-content/uploads/2012/10/internet_topology.jpg[]
=== Interconnexions
[graphviz,intercos,svg]
----
digraph G {
#rankdir=LR
edge [dir="both"]
node [style=filled]
notre_AS [fillcolor = cyan];
AS_Tronot
AS_Depic
AS_Hassain
}
----
=== Interconnexions : peering === Interconnexions : peering
[plantuml,peering,svg] [graphviz,peering,svg]
---- ----
cloud Notre_réseau digraph G {
cloud Réseau_A rankdir=LR
cloud Réseau_B edge [dir="both"]
cloud Réseau_C node [style=filled]
Notre_réseau <-> Réseau_A
notre_AS [fillcolor = cyan];
AS_Tronot [fillcolor = chartreuse]
AS_Depic
AS_Hassain
{rank=source notre_AS}
notre_AS -> AS_Tronot
#AS_Tronot -> AS_Hassain
#AS_Tronot -> AS_Depic
}
---- ----
=== Interconnexions : transit === Interconnexions : transit
[plantuml,transit,svg] [graphviz,transit,svg]
---- ----
cloud Notre_réseau digraph G {
cloud Réseau_A rankdir=LR
cloud Réseau_B edge [dir="both"]
cloud Réseau_C node [style=filled]
Notre_réseau <-> Réseau_A
Réseau_A <-> Réseau_B notre_AS [fillcolor = cyan];
Réseau_A <-> Réseau_C AS_Tronot [fillcolor = chartreuse]
AS_Depic [fillcolor = aquamarine]
AS_Hassain [fillcolor = aquamarine]
{rank=source notre_AS}
notre_AS -> AS_Tronot
AS_Tronot -> AS_Hassain
AS_Tronot -> AS_Depic
}
---- ----
== FAI ? == FAI ?

Loading…
Cancel
Save