Você está na página 1de 6

Ejercicios de Simulacin CCNA R&S 200-101

1. CCNA Access List Control (ACL) Simulation



A network associate is adding security to the configuration of the Corp1
router. The user on host C should be able to use a web browser to access
financial information from the Finance Web Server. No other hosts from the
LAN nor the Core should be able to use a web browser to access this server.
Since there are multiple resources for the corporation at this location
including other resources on the Finance Web Server, all other traffic should
be allowed.

Un socio de red aade seguridad a la configuracin del router Corp1. El usuario en el
host C debe ser capaz de utilizar un navegador web para acceder a informacin
financiera desde el servidor Web de finanzas. Ningunos otros hosts de la LAN ni el
Core deben ser capaces de utilizar un navegador web para acceder a este servidor.
Puesto que hay mltiples recursos para la Corporacin en esta localizacin incluyendo
otros recursos en el servidor Web de finanzas, se debe permitir todo el trfico de otro.

The task is to create and apply a numbered access-list with no more than
three statements that will allow ONLY host C web access to the Finance Web
Server. No other hosts will have web access to the Finance Web Server. All
other traffic is permitted.

La tarea es crear y aplicar una lista numerada de acceso con no ms de tres
declaraciones que permitir slo a host C el acceso a Internet en el servidor Web de
finanzas. Ningunos otros hosts tendrn accesoa a la web de el servidor Web de
finanzas. Est permitido cualquier otro trfico.






















Access to the router CLI can be gained by clicking on the appropriate host.
All passwords have been temporarily set to cisco.
The Core connection uses an IP address of 198.18.196.65
The computers in the Hosts LAN have been assigned addresses of
192.168.33.1 192.168.33.254
Host A 192.168.33.1
Host B 192.168.33.2
Host C 192.168.33.3
Host D 192.168.33.4
The servers in the Server LAN have been assigned addresses of
172.22.242.17 172.22.242.30
The Finance Web Server is assigned an IP address of 172.22.242.23.
The Public Web Server is assigned an IP address of 172.22.242.17

El acceso a la CLI del router se puede acceder haciendo clic en el host adecuado.
Todas las contraseas se han establecido temporalmente a "cisco".
La conexin del ncleo utiliza una direccin IP 198.18.196.65
Los equipos de la LAN Hosts se han asignado direcciones de 192.168.33.1 -
192.168.33.254
UN Host 192.168.33.1
Host B 192.168.33.2
Host C 192.168.33.3
Host D 192.168.33.4
Los servidores de la LAN se han asignado direcciones de 172.22.242.17 -
172.22.242.30
El servidor Web de Finanzas se asigna una direccin IP de 172.22.242.23 .
El servidor Web pblico se le asigna una direccin IP 172.22.242.17

Corp1>enable
Password: cisco

We should create an access-list and apply it to the interface which is
connected to the Servers LAN interface, because it can filter out traffic from
both Sw-Hosts and Core networks. The Server LAN network has been
assigned addresses of 172.22.242.17 172.22.242.30 so we can guess the
interface connected to them has an IP address of 172.22.242.30 (.30 is the
number shown in the figure). Use the show ip interface brief command to
check which interface has the IP address of 172.22.242.30.

Debemos crear una lista de acceso y aplicarlo a la interfaz que se conecta a la interfaz
LAN servidores, porque puede filtrar trfico de Sw-Hosts y redes Core. La red LAN
Server se ha asignado direcciones de 172.22.242.17 172.22.242.30 as podemos
adivinar la interfaz conectada con ellos que tiene una direccin IP de 172.22.242.30 (.30
es el nmero que aparece en la figura). Utilice el comando "show interface ip brief"
para comprobar qu interfaz tiene la direccin IP de 172.22.242.30.

Corp1#show ip interface brief

Interface IP-Address OK? Method Status Protocol
FastEthernet0/0 192.168.33.254 YES manual up up
FastEthernet0/1 172.22.242.30 YES manual up up
Serial0/0 198.18.196.65 YES manual up up

We learn that interface FastEthernet0/1 is the interface connected to Server
LAN network. It is the interface we will apply our access-list (for outbound
direction).

Aprendemos que la interfaz FastEthernet0/1 es la interfaz conectada a la red LAN
Server. Es la interfaz que se aplicar a nuestra lista de acceso (para la direccin
saliente).
Corp1#configure terminal

Our access-list needs to allow host C 192.168.33.3 to the Finance Web Server
172.22.242.23 via web (port 80)

Nuestra lista de acceso debe permitir host C 192.168.33.3 al servidor Web Finanzas
172.22.242.23 va web (puerto 80)

Corp1(config)#access-list 100 permit tcp host 192.168.33.3 host 172.22.242.23
eq 80

Deny other hosts access to the Finance Web Server via web

Negar el acceso de otros anfitriones al servidor Web Finanzas va web

Corp1(config)#access-list 100 deny tcp any host 172.22.242.23 eq 80

All other traffic is permitted

Est permitido cualquier otro trfico

Corp1(config)#access-list 100 permit ip any any

Apply this access-list to Fa0/1 interface (outbound direction)

Aplicar esta lista de acceso a la interfaz Fa0/1 (Direccin saliente)

Corp1(config)#interface fa0/1
Corp1(config-if)#ip access-group 100 out

Notice: We have to apply the access-list to Fa0/1 interface (not Fa0/0
interface) so that the access-list can filter traffic coming from both the LAN
and the Core networks. If we apply access list to the inbound interface we
can only filter traffic from the LAN network.
In the real exam, just click on host C and open its web browser. In the
address box type http://172.22.242.23 to check if you are allowed to access
Finance Web Server or not. If your configuration is correct then you can
access it.
Click on other hosts (A, B and D) and check to make sure you cant access
Finance Web Server from these hosts.
Finally, save the configuration

Aviso: Tenemos que aplicar la lista de acceso a la interfaz Fa0/1 (no interfaz Fa0/0)
para que la lista de acceso pueda filtrar trfico proveniente de tanto la redes LAN y las
Core. Si aplicamos la lista de acceso a la interfaz entrante slo nos podemos filtrar el
trfico de la red LAN.
En el examen real, slo haga clic en host C y abra su navegador web. En el cuadro
direccin, escriba http://172.22.242.23 para comprobar si el usuario tiene permiso para
acceder a la financiacin Servidor Web o no. Si la configuracin es correcta, a
continuacin, se puede acceder a ella.
Haga clic en otros hosts (A, B y D) y asegrese de que no se puede acceder al servidor
Web de Finanzas de estos hosts.
Por ltimo, guarde la configuracin

Corp1(config-if)#end
Corp1#copy running-config startup-config

This configuration only prevents hosts from accessing Finance Web Server
via web but if this server supports other traffic like FTP, SMTP! then other
hosts can access it, too.
Notice: In the real exam, you might be asked to allow other host (A, B or D) to
access the Finance Web Server so please read the requirement carefully.

Esta configuracin slo impedira que los hosts accedan a la financiacin a travs de la
web Servidor Web pero si este servidor es compatible con otro tipo de trfico, como
FTP, SMTP! a continuacin, otros hosts pueden acceder a ella, tambin.
Nota: En el examen real, es posible que se le pida que permitir que otros host (A, B o
D) para acceder al servidor Web de Finanzas as que, por favor, lea cuidadosamente el
requisito.

Modification #1

A network associate is adding security to the configuration of the Corp
router. The user on host B should be able to access the Finance Web Server.
Host B should be denied to access other server on S1-SRVS network. Since
there are multiple resources for the corporation at this location including
other resources on the Finance Web Server, all other traffic should be
allowed.
The task is to create and apply a numbered access-list with no more than
three statements that will allow ONLY host B access to the Finance Web
Server. Deny host B from accessing the other servers. All other traffic is
permitted.

Un socio de red aade seguridad a la configuracin del router Corp.
El usuario de la mquina B debe ser capaz de acceder al servidor Web de Finanzas. El
Host B se niega a acceder a otro servidor en S1-SRVS red. Puesto que hay mltiples
recursos para la corporacin en esta ubicacin incluyendo otros recursos en la Web
de Finanzas Server, se debe permitir todo el trafico restante.
La tarea es crear y aplicar una lista de acceso numerada con no ms de tres
declaraciones que slo se permitir el acceso a host B slo para el servidor Web de
finanzas. Denegar acceso a host B de los otros servidores. Todos los dems se
permite el trfico.

access-list 100 permit ip host 192.168.33.2 host 172.22.242.23
access-list 100 deny ip host 192.168.33.2 172.22.242.16 0.0.0.15
access-list 100 permit ip any any

Modification #2

A network associate is adding security to the configuration of the Corp1
router. The user on host C should be able to access the Finance Web Server.
No other hosts from the LAN nor the Core should be able access this server.
All other traffic should be allowed.
The task is to create and apply a numbered access-list with no more than
three statements that will allow ONLY host C access the Finance Web Server.
No other hosts will have access to the Finance Web Server. All other traffic is
permitted.

Un socio de red aade seguridad a la configuracin del router Corp1. El usuario
host C debe ser capaz de acceder al servidor Web de finanzas. Ningn otro host
de la LAN o el Core debe poder acceder a este servidor. Se debe permitir todo el
trafico restante. La tarea es crear y aplicar una lista de acceso numerada con no
ms de tres declaraciones que slo se permitir el acceso host C Servidor Web de
Finanzas. Ningunos otros hosts tendrn el acceso al servidor web de Finanzas.
Todo otro trfico se permite.

access-list 100 permit ip host 192.168.33.3 host 172.22.242.23
access-list 100 deny ip any host 172.22.242.23
access-list 100 permit ip any any

Modification #3

A network associate is adding security to the configuration of the Corp1
router. The user on host C should be able to use a web browser to access
financial information from the Finance Web Server. Other access from host C
to Finance Web Server should be denied. No other hosts from the LAN nor
the Core should be able to access the Finance Web Server. All other traffic
should be allowed.
The task is to create and apply a numbered access-list with no more than
three statements that will allow ONLY host C web access to the Finance Web
Server. Also host C should be denied to access any other services of Finance
Web Server. No other hosts will access to the Finance Web Server. All other
traffic is permitted.

Un socio de red aade seguridad a la configuracin del router Corp1. El
usuario host C debe ser capaz de utilizar un navegador web para acceder a
informacin financiera desde el servidor Web de finanzas. Otra va de acceso
desde el host C para financiar Servidor Web debe ser denegada. Ningn otro
host de la LAN ni el Core debe ser capaz de acceder al servidor Web de
Finanzas. Se debe permitir todo el trafico restante. La tarea es crear y aplicar
una lista numerada de acceso con no ms de tres declaraciones que
permitir slo host C acceso a Internet en el servidor Web de
finanzas. Tambin deberan negar al Host C para tener acceso a cualquier
otro servicio del servidor web de Finanzas. Ningunos otros Hosts tendrn
acceso al servidor web de Finanzas. Todo otro trfico se permite.

access-list 100 permit tcp host 192.168.33.3 host 172.22.242.23 eq 80
access-list 100 deny ip any host 172.22.242.23
access-list 100 permit ip any any

Modification #4

A network associate is adding security to the configuration of the Corp1
router. The user on host D should be able to use a web browser to access
financial information from the Finance Web Server. Other access from host C
to Finance Web Server should be denied. No other hosts from the LAN nor
the Core should be able to access the Finance Web Server. All hosts from the
LAN nor the Core should able to access public web server.
The task is to create and apply a numbered access-list with no more than
three statements that will allow ONLY host D should be able to use a web
browser(HTTP)to access the Finance Web Server. Other types of access from
host D to the Finance Web Server should be blocked. All access from hosts
in the Core or local LAN to the Finance Web Server should be blocked. All
hosts in the Core and local LAN should be able to access the Public Web
Server.

Un socio de la red aade seguridad a la configuracin del gestor de trfico Corp1. El
usuario en el Host D debera ser capaz de usar un navegador web para tener acceso a
la informacin financiera del servidor web de Finanzas. Otra va de acceso desde el
host C para financiar Servidor Web debe ser denegada. Ningn otro host de la LAN ni
el Core debe ser capaz de acceder al servidor Web de Finanzas. Todos los hosts de la
LAN ni el ncleo debera poder acceder a servidor web pblico.

La tarea es crear y aplicar una lista del acceso numerada sin ms de tres
declaraciones(afirmaciones) que SLO permitirn al Host D debera ser capaz de usar
un navegador web (HTTP) para tener acceso al servidor web de Finanzas. Otros tipos
del acceso del anfitrin D del servidor web de Finanzas se deberan bloquear. Todo el
acceso de Hosts en la LAN Principal o local al servidor web de Finanzas se debera
bloquear. Todos los Hosts en el LAN Principal y local deberan ser capaces de tener
acceso al Servidor de la Web pblica.

access-list 100 permit tcp host 192.168.33.4 host 172.22.242.23 eq 80
access-list 100 deny ip any host 172.22.242.23
access-list 100 permit ip any any

Você também pode gostar