extraction de la partie Internet
parent
cb19ff924f
commit
b78c6c711f
@ -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
|
||||||
|
}
|
||||||
|
----
|
Loading…
Reference in New Issue