extraction de la partie Internet
This commit is contained in:
71
src/internet.adoc
Normal file
71
src/internet.adoc
Normal file
@@ -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
|
||||||
|
}
|
||||||
|
----
|
||||||
@@ -5,77 +5,7 @@ Pourquoi ? Comment ?
|
|||||||
|
|
||||||
image::images/logo_ffdn.svg[]
|
image::images/logo_ffdn.svg[]
|
||||||
|
|
||||||
== Internet ?
|
include::internet.adoc[]
|
||||||
|
|
||||||
[%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
|
|
||||||
}
|
|
||||||
----
|
|
||||||
|
|
||||||
== FAI ?
|
== FAI ?
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user