You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
1.0 KiB
Plaintext

digraph G {
rankdir=LR
edge [dir="both"]
node [style=filled]
subgraph cluster_1 {
label = "Notre AS"
style = filled
fillcolor = azure
service_www -> routeur
service_mail -> routeur
ap_wifi -> routeur
abonné_1 [fillcolor=aquamarine]
abonné_2 [fillcolor=aquamarine]
abonné_1 -> ap_wifi [label="wifi", color=blue]
abonné_2 -> ap_wifi [label="wifi", color=blue]
}
subgraph cluster_2 {
label = "Fournisseur collecte xDSL"
routeur_fournisseur [label="routeur"]
abonné_3 [fillcolor=aquamarine]
abonné_4 [fillcolor=aquamarine]
routeur_fournisseur -> abonné_3
routeur_fournisseur -> abonné_4
}
AS_Tronot
AS_Depic
AS_Hassain
routeur -> AS_Tronot
AS_Tronot -> AS_Hassain
AS_Tronot -> AS_Depic
routeur -> routeur_fournisseur
routeur -> abonné_3 [color=red, label="tunnel", style=dashed]
routeur -> abonné_4 [color=red, label="tunnel", style=dashed]
}