Add PAR/t8-ej6
This commit is contained in:
parent
4905eb085f
commit
23a658ab8b
BIN
1/PAR/assignments/t8-ej6-naortega/t8-ej6-naortega.pdf
Normal file
BIN
1/PAR/assignments/t8-ej6-naortega/t8-ej6-naortega.pdf
Normal file
Binary file not shown.
120
1/PAR/assignments/t8-ej6-naortega/t8-ej6-naortega.tex
Normal file
120
1/PAR/assignments/t8-ej6-naortega/t8-ej6-naortega.tex
Normal file
@ -0,0 +1,120 @@
|
|||||||
|
\documentclass[12pt,a4paper]{article}
|
||||||
|
\usepackage[spanish]{babel}
|
||||||
|
\usepackage{hyperref}
|
||||||
|
\usepackage{graphicx}
|
||||||
|
\usepackage{subcaption}
|
||||||
|
|
||||||
|
\title{Tema VIII Ejercicio VI}
|
||||||
|
\author{Nicolás A. Ortega Froysa}
|
||||||
|
|
||||||
|
\begin{document}
|
||||||
|
\maketitle
|
||||||
|
\pagebreak
|
||||||
|
\tableofcontents
|
||||||
|
\pagebreak
|
||||||
|
|
||||||
|
\section{Resumen Ejecutivo}
|
||||||
|
|
||||||
|
\section{Configuración}
|
||||||
|
|
||||||
|
\subsection{Switches}
|
||||||
|
|
||||||
|
Antes que nada se ha de configurar la seguridad del {\em switch} del
|
||||||
|
administrador con la contraseña {\tt 1234}, y con el MOTD <<Buenos dias,
|
||||||
|
Jefe!>>.
|
||||||
|
|
||||||
|
\begin{verbatim}
|
||||||
|
enable secret 1234
|
||||||
|
username admin password 0 1234
|
||||||
|
banner motd *Buenos dias, Jefe!*
|
||||||
|
\end{verbatim}
|
||||||
|
|
||||||
|
\subsubsection{VLANs}
|
||||||
|
|
||||||
|
En los {\em switches} será necesario crear las VLAN de nuestra red. En nuestro
|
||||||
|
caso nos hacen falta tres:
|
||||||
|
|
||||||
|
\begin{itemize}
|
||||||
|
\item VLAN 10: ADMIN
|
||||||
|
\item VLAN 20: COM
|
||||||
|
\item VLAN 30: INF
|
||||||
|
\end{itemize}
|
||||||
|
|
||||||
|
\noindent
|
||||||
|
Para este propósito hemos de correr los siguientes comandos en ambos switches
|
||||||
|
desde la consola de configuración:
|
||||||
|
|
||||||
|
\begin{verbatim}
|
||||||
|
vlan 10
|
||||||
|
name ADMIN
|
||||||
|
vlan 20
|
||||||
|
name COM
|
||||||
|
vlan 30
|
||||||
|
name INF
|
||||||
|
\end{verbatim}
|
||||||
|
|
||||||
|
\noindent
|
||||||
|
Con las VLAN creadas, ya podemos asignar VLANs a nuestros dispositivos, y
|
||||||
|
también consiguiendo una conexión de {\em trunk} entre los {\em switches}.
|
||||||
|
|
||||||
|
\begin{verbatim}
|
||||||
|
# Switch0
|
||||||
|
int range fa0/1-3
|
||||||
|
switchport mode access
|
||||||
|
switchport access vlan 10
|
||||||
|
int range fa0/4-5
|
||||||
|
switchport mode access
|
||||||
|
switchport access vlan 20
|
||||||
|
int fa0/6
|
||||||
|
switchport mode access
|
||||||
|
switchport access vlan 30
|
||||||
|
int range fa0/22-23
|
||||||
|
switchport mode trunk
|
||||||
|
|
||||||
|
# Switch1
|
||||||
|
int range fa0/1,3
|
||||||
|
switchport mode access
|
||||||
|
switchport access vlan 20
|
||||||
|
int fa0/2
|
||||||
|
switchport mode access
|
||||||
|
switchport access vlan 30
|
||||||
|
int range fa0/22-23
|
||||||
|
switchport mode trunk
|
||||||
|
\end{verbatim}
|
||||||
|
|
||||||
|
\noindent
|
||||||
|
Con esto configurado, ya todos los terminales y el servidor estarán conectados a
|
||||||
|
sus VLAN correspondientes, y no podrán comunicarse a los otros que no sean de su
|
||||||
|
VLAN.
|
||||||
|
|
||||||
|
\subsubsection{DHCP}
|
||||||
|
|
||||||
|
Como todas las direcciones de los terminales conectados a
|
||||||
|
|
||||||
|
\subsection{Router}
|
||||||
|
|
||||||
|
\subsection{Direcciones Estáticas}
|
||||||
|
|
||||||
|
Como el servidor tiene que tener una dirección IP estática, asignamos a él la
|
||||||
|
dirección IP {\tt 192.168.20.200}. Los jefes también han de tener direcciones
|
||||||
|
estáticas para mejor administrar las redes, así que éstos llevarán las
|
||||||
|
direcciones siguientes:
|
||||||
|
|
||||||
|
\begin{itemize}
|
||||||
|
\item Jefe ADMIN: {\tt 192.168.10.2}
|
||||||
|
\item Jefe COM: {\tt 192.168.20.2}
|
||||||
|
\item Jefe INF: {\tt 192.168.30.2}
|
||||||
|
\end{itemize}
|
||||||
|
|
||||||
|
\pagebreak
|
||||||
|
|
||||||
|
\section{Derechos de Autor y Licencia}
|
||||||
|
|
||||||
|
\noindent
|
||||||
|
Copyright \copyright\ \the\year\ Nicolás A. Ortega Froysa
|
||||||
|
<nicolas@ortegas.org> \\
|
||||||
|
\\
|
||||||
|
Este documento se distribuye bajo los términos y condiciones de la licencia
|
||||||
|
Creative Commons Attribution No Derivatives 4.0 International.
|
||||||
|
|
||||||
|
\end{document}
|
7
1/PAR/assignments/t8-ej6-naortega/t8-ej6-naortega.toc
Normal file
7
1/PAR/assignments/t8-ej6-naortega/t8-ej6-naortega.toc
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
\babel@toc {spanish}{}\relax
|
||||||
|
\contentsline {section}{\numberline {1}Resumen Ejecutivo}{3}{section.1}%
|
||||||
|
\contentsline {section}{\numberline {2}Configuración}{3}{section.2}%
|
||||||
|
\contentsline {subsection}{\numberline {2.1}Switches}{3}{subsection.2.1}%
|
||||||
|
\contentsline {subsection}{\numberline {2.2}Router}{4}{subsection.2.2}%
|
||||||
|
\contentsline {subsection}{\numberline {2.3}Direcciones Estáticas}{4}{subsection.2.3}%
|
||||||
|
\contentsline {section}{\numberline {3}Derechos de Autor y Licencia}{5}{section.3}%
|
Loading…
Reference in New Issue
Block a user