From b78c6c711f1c9b464fb690ae28c9c90c2e3d0cf1 Mon Sep 17 00:00:00 2001 From: Yves Dubromelle Date: Sun, 2 Jun 2019 00:38:12 +0200 Subject: [PATCH] extraction de la partie Internet --- src/internet.adoc | 71 ++++++++++++++++++++++++++++++++++++++++++++++ src/slides.adoc | 72 +---------------------------------------------- 2 files changed, 72 insertions(+), 71 deletions(-) create mode 100644 src/internet.adoc diff --git a/src/internet.adoc b/src/internet.adoc new file mode 100644 index 0000000..9a2cae3 --- /dev/null +++ b/src/internet.adoc @@ -0,0 +1,71 @@ +== Internet ? + +[%step] +* Inter-network +* 90k réseaux +* protocole commun : IP (Internet Protocol) + +=== Systèmes autonomes + +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 + +[graphviz,peering,svg] +---- +digraph G { + rankdir=LR + edge [dir="both"] + node [style=filled] + + 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 + +[graphviz,transit,svg] +---- +digraph G { + rankdir=LR + edge [dir="both"] + node [style=filled] + + notre_AS [fillcolor = cyan]; + 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 +} +---- diff --git a/src/slides.adoc b/src/slides.adoc index 37457ed..1abe0ce 100644 --- a/src/slides.adoc +++ b/src/slides.adoc @@ -5,77 +5,7 @@ Pourquoi ? Comment ? image::images/logo_ffdn.svg[] -== Internet ? - -[%step] -* Inter-network -* 90k réseaux -* protocole commun : IP (Internet Protocol) - -=== Systèmes autonomes - -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 - -[graphviz,peering,svg] ----- -digraph G { - rankdir=LR - edge [dir="both"] - node [style=filled] - - 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 - -[graphviz,transit,svg] ----- -digraph G { - rankdir=LR - edge [dir="both"] - node [style=filled] - - notre_AS [fillcolor = cyan]; - 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 -} ----- +include::internet.adoc[] == FAI ?