Merge "Start of some networking intro material"

This commit is contained in:
Jenkins 2014-08-21 19:53:26 +00:00 committed by Gerrit Code Review
commit 9fcc3ec42d
5 changed files with 103 additions and 57 deletions

View File

@ -9,12 +9,16 @@
version="5.0"
xml:id="intro-firewalls">
<title>Firewalls</title>
<para>
Bacon ipsum dolor sit amet biltong meatloaf andouille, turducken
bresaola pork belly beef ribs ham hock capicola tail prosciutto
landjaeger meatball pork loin. Swine turkey jowl, porchetta doner
boudin meatloaf. Shoulder capicola prosciutto, shank landjaeger short
ribs sirloin turducken pork belly boudin frankfurter chuck. Salami
shankle bresaola cow filet mignon ham hock shank.
</para>
<para>A firewall is a network security system that controls the
network traffic using a set of rules. For example, a firewall might
disallow traffic originating from a range of IP addresses or only
allow traffic on specific ports. Firewalls are often used between
internal networks, where data is trusted, and external networks
such as the Internet.</para>
<para>Many firewalls incorporate Network Address Translation (NAT).
Network address translation masks the IP addresses of the devices on
the internal network, so that external devices see only the single
public IP address of the device hosting the firewall.</para>
</section>

View File

@ -9,12 +9,58 @@
version="5.0"
xml:id="intro-layers">
<title>Networking layers</title>
<para>
Bacon ipsum dolor sit amet biltong meatloaf andouille, turducken
bresaola pork belly beef ribs ham hock capicola tail prosciutto
landjaeger meatball pork loin. Swine turkey jowl, porchetta doner
boudin meatloaf. Shoulder capicola prosciutto, shank landjaeger short
ribs sirloin turducken pork belly boudin frankfurter chuck. Salami
shankle bresaola cow filet mignon ham hock shank.
</para>
<para>Network communications is commonly described in terms of the OSI model,
a seven-layer model that describes how various protocols and mechanisms fit
together. Each layer depends on the protocols in the layer beneath it.</para>
<variablelist>
<varlistentry>
<term>7 Application</term>
<listitem>
<para>FIXME</para>
</listitem>
</varlistentry>
<varlistentry>
<term>6 Presentation</term>
<listitem>
<para>FIXME</para>
</listitem>
</varlistentry>
<varlistentry>
<term>5 Session</term>
<listitem>
<para>FIXME</para>
</listitem>
</varlistentry>
<varlistentry>
<term>4 Transport</term>
<listitem>
<para>FIXME</para>
</listitem>
</varlistentry>
<varlistentry>
<term>3 Network</term>
<listitem>
<para>FIXME</para>
</listitem>
</varlistentry>
<varlistentry>
<term>2 Data link</term>
<listitem>
<para>FIXME</para>
</listitem>
</varlistentry>
<varlistentry>
<term>1 Physical</term>
<listitem>
<para>FIXME</para>
</listitem>
</varlistentry>
</variablelist>
<para>OpenStack Networking is primarily concerned with Layer 2 and Layer 3.</para>
<para>Layer-3 protocols include the Internet Protocal Suite, which includes
IPv4, IPv6, and the Internet Control Message Protocol (ICMP).</para>
</section>

View File

@ -9,12 +9,9 @@
version="5.0"
xml:id="intro-routers">
<title>Routers</title>
<para>
Bacon ipsum dolor sit amet biltong meatloaf andouille, turducken
bresaola pork belly beef ribs ham hock capicola tail prosciutto
landjaeger meatball pork loin. Swine turkey jowl, porchetta doner
boudin meatloaf. Shoulder capicola prosciutto, shank landjaeger short
ribs sirloin turducken pork belly boudin frankfurter chuck. Salami
shankle bresaola cow filet mignon ham hock shank.
</para>
<para>A router is a networking device that connects multiple networks
together. Routers are connected to two or more networks. When they
receive data packets, they use a routing table to determine which
networks to pass the information to.</para>
</section>

View File

@ -9,12 +9,9 @@
version="5.0"
xml:id="intro-switches">
<title>Switches</title>
<para>
Bacon ipsum dolor sit amet biltong meatloaf andouille, turducken
bresaola pork belly beef ribs ham hock capicola tail prosciutto
landjaeger meatball pork loin. Swine turkey jowl, porchetta doner
boudin meatloaf. Shoulder capicola prosciutto, shank landjaeger short
ribs sirloin turducken pork belly boudin frankfurter chuck. Salami
shankle bresaola cow filet mignon ham hock shank.
</para>
<para>A switch is a device that is used to connect devices on a network.
Switches forward packets on to other devices, using packet switching to
pass data along only to devices that need to receive it. Switches operate
at Layer 2 of the OSI model.</para>
</section>

View File

@ -9,42 +9,44 @@
version="5.0"
xml:id="intro-tunnel">
<title>Tunnel (segmentation) technologies</title>
<para>
Bacon ipsum dolor sit amet biltong meatloaf andouille, turducken
bresaola pork belly beef ribs ham hock capicola tail prosciutto
landjaeger meatball pork loin. Swine turkey jowl, porchetta doner
boudin meatloaf. Shoulder capicola prosciutto, shank landjaeger short
ribs sirloin turducken pork belly boudin frankfurter chuck. Salami
shankle bresaola cow filet mignon ham hock shank.
</para>
<para>Tunneling allows one network protocol to encapsulate another
payload protocol, such that packets from the payload protocol are
passed as data on the delivery protocol. This can be used, for
example, to pass data securely over an untrusted network.</para>
<section xml:id="layer2config">
<title>Layer 2</title>
<variablelist>
<varlistentry>
<term>VLAN</term>
<listitem>
<para>FIXME</para>
</listitem>
<term>Virtual local area network (VLAN)</term>
<listitem>
<para>A VLAN paritions a single layer-2 network into multiple isolated
broadcast domains.</para>
</listitem>
</varlistentry>
</variablelist>
</section>
<section xml:id="layer3">
<title>Layer 3</title>
<variablelist>
<varlistentry>
<term>GRE</term>
<listitem>
<para>FIXME</para>
</listitem>
</varlistentry>
<varlistentry>
<term>VLAN</term>
<listitem>
<para>FIXME</para>
</listitem>
</varlistentry>
<variablelist>
<varlistentry>
<term>Generic routing encapsulation (GRE)</term>
<listitem>
<para>GRE carries IP packets with private IP address over the Internet
using delivery packets with public IP addresses.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>Virtual extensible local area network (VXLAN)</term>
<listitem>
<para>VXLAN encapsulates layer-2 Ethernet frames over layer-4
UDP packets.</para>
</listitem>
</varlistentry>
</variablelist>
</section>
</section>