Explorer les Livres électroniques
Catégories
Explorer les Livres audio
Catégories
Explorer les Magazines
Catégories
Explorer les Documents
Catégories
==================================
PREGUNTAS DE EVALUACI�N 2
=========================
0 E2
0 E2
0 IA
==========
O IA
O IA
O IA
O*IA 0.0.0.0/0
Resultado ser�
O*IA 0.0.0.0/0
O
O
O
O
O
O
int fa0/1
no shut
ip add 10.232.57.1 255.255.255.252
!
router ospf 1
router-id 10.255.255.5
!
int fa0/1
ip ospf 1 area 57
!
int lo0
ip add 10.255.255.5 255.255.255.255
ip ospf 1 area 57
=============================
int fa0/1
no shut
ip add 10.232.57.2 255.255.255.252
router ospf 1
router-id 10.255.255.7
!
int fa0/1
ip ospf 1 area 57
!
int lo0
ip add 10.255.255.7 255.255.255.255
ip ospf 1 area 57
O*E2
O*E1 ->
========================================================================
no shutdown
!
end
============================================
interface Lo1
description Core router network link 1
ip address 192.168.0.1 255.255.255.0
!
interface Lo2
description Core router network link 2
ip address 192.168.1.1 255.255.255.0
!
interface fa0/0
description ITA -> ISP1
ip address 10.0.0.2 255.255.255.252
no shutdown
interface fa0/1
description ITA -> ISP2
ip address 172.16.0.2 255.255.255.252
no shutdown
!
end
============================================
Router ISP2 (R3)
hostname ISP2
!
int lo0
ip add 10.255.255.3 255.255.255.255
!
interface Lo1
description ISP2 Internet Network
ip address 172.16.1.1 255.255.255.0
!
interface fa0/1
description ISP2 -> ITA
ip address 172.16.0.1 255.255.255.252
no shutdown
!
end
ip prefix 0.0.0.0/0
IP Privadas
Clase A: 10.0.0.0/8 - 10.255.255.255
Clase B: 172.16.0.0/16 - 172.31.255.255
Clase C: 192.168.0.0/24 - 192.168.255.255
Clase D: Multicast 224.0.0.0/8
Las IP P�blicas son enrutadas usando rutas por defecto o Protocolo de enrutamiento
BGP
1.- Conexi�n a Internet tradicional
- Contratar a un ISP
- Arrendar un enlace dedicado a Internet
- Arrendar IP P�blico
- Contrato PYME/HOGAR -> 1 IP P�blica (Din�mica)
- Contrato EMPRESAS -> 8 IP P�blicas (Est�tica)
- NAT
- Descontar 1 (Red)
- Descontar 1 (Broadcast)
- Descontar 1 (ISP)
- Le quedan 5 IP P�blicas
4 Tipos de NAT
NAT Est�tico
============
Traducci�n IPv4 Privada a Publica
Traducci�n 1 a 1
EJM:
ip nat inside source static 192.168.100.200 73.145.89.157
ip nat inside source static 192.168.100.201 73.145.89.158
!
int g0/0
desc WAN_INTERNET
ip nat outside
!
int g0/1
desc LAN
ip nat inside
NAT Din�mico
============
Traducci�n IPv4 Privada a Publica
Traducci�n 1 a 1 de forma din�mica
EJM:
access-list 1 permit 192.168.0.0 0.0.0.255
!
ip nat pool NOMBRE 186.100.0.2 186.100.0.6 255.255.255.248
!
ip nat inside source list 1 pool NOMBRE
!
int g0/0
desc WAN_INTERNET
ip nat outside
!
int g0/1
desc LAN
ip nat inside
PAT Est�tico
============
Traducci�n IPv4 Privada a Publica
Traducci�n muchos a 1
EJM:
access-list 1 permit 192.168.1.0 0.0.0.255
!
ip nat inside source list 1 interface g0/0 overload
!
int g0/0
desc WAN_INTERNET
ip nat outside
!
int g0/1 (g0/0.10)
desc LAN
ip nat inside
!
PAT Din�mico
============
EJM:
access-list 1 permit 172.16.0.0 0.0.0.255
!
ip nat pool NOMBRE 200.0.0.3 200.0.0.4 255.255.255.248
!
ip nat inside source list 1 pool NOMBRE overload
!
int g0/0
desc WAN_INTERNET
ip nat outside
!
int g0/1 (g0/1.10)
desc LAN_EMPRESA
ip nat inside
!
======================================================
R1_EMPRESA
==========
int g0/0
desc WAN_INTERNET_ENTEL
ip add 186.67.45.66 255.255.255.248
!
ip route 0.0.0.0 0.0.0.0 186.67.45.65 name SALIDA_INTERNET_ENTEL
!
int g0/0
no shut
desc WAN_INTERNET_ENTEL
ip add dhcp
!
ip route 0.0.0.0 0.0.0.0 g0/0 name SALIDA_INTERNET_ENTEL
!
EJM:
NAT est�tico con sobrecarga (PAT Est�tico)
Resumen
- Tipos de NAT
- Comandos de NAT
- Maneras de conectarse a Internet
- Topolog�a de alta disponibilidad para Internet
- Comandos show
- Fin Cap�tulo 6 CCNP1
=======================================================
Conceptos de BGP
================
BGP es un EGP
BGP: Border Gateway Protocol
EGP: External Gateway Protocolo
Protocolo de enrutamiento para IP P�blicas.
Hello
Vecindades
UPdate
ACK
BGP
-E-BGP: External
- Diferentes ASN
-I-BGP: Internal
- Mismo ASN
Tabla BGP
- Prefijos BGP
- Atributos BGP
=======================================================
#sh ip bgp
#sh ip bgp neighbor
#sh ip bgp neighbor | inc BGP (debe decir Established)
#sh ip bgp
#sh ip route bgp
10.0.0.0/24
* = Ruta V�lida
> = Mejor Ruta
ENTEL ASN100
==================
Sumarizada
BANCO_ACME
==========
router bgp 100
neigh 10.0.0.1 distribute-list 1 out
neigh 172.16.0.1 distribute-list 1 out
ENTEL
#clear ip bgp * soft-> (update)
#clear ip bgp * all -> (Vecindad/No usar en lo real)
ENTEL
=====
router bgp 200
neigh 10.0.0.2 default-originate
Resumen
========
- 4 Tipos de NAT
- E-BGP
- Filtros Listas de distribuci�n
- Inyecci�n de rutas por defecto