Sunteți pe pagina 1din 34

QUE SON REDES WAN ?

REDES WAN
Red de rea Amplia (WAN): este concepto se refiere a redes
que se encuentran geogrficamente distantes, como redes
unidas entre diferentes ciudades.

LAN 2

LAN 1
WAN

REDES WAN
Redes formada para la integracin
localizados geogrficamente distantes.

de

computadores

Normalmente utilizan lneas de comunicacin de dados


ofrecidas por empresas de telecomunicaciones ( Telefnica,
AT&T, ptica ip, Bellsoutht etc).

TCP/IP
WAN

CARACTERISTICAS REDES WAN


Aumento la demanda para la transmisin de dados a
largas distancias.
Conexin punto a punto (SLDD Servicio de Lnea
Dedicada Digital) 1996.
Surgimiento de las redes de paquetes.
Ejm:
Redes de fibras pticas.
SDH (Synchronous Digital Hierarchy).
ATM (Asynchronos Transfer Mode).

WAN - COMPONENTES
Lan 2

Lan 1

SWITCH WAN
Lan 3
RED WAN

RED WAN

WAN - COMPONENTES

Mdem

WAN

Mdem

WAN - COMPONENTES
Satlite

UPLINK

EARTH
STATION

DOWLINK

EARTH
STATION

WAN - COMPONENTES
Frequency
Modulated Signal
RF Signal

Modulator
Microware Tower

Amplifier

Demodulator

RF Signal
Amplifier
Modulator

Demodulator

Sistema de Microondas

CONECTIVIDAD WAN
Existen muchas opciones relacionadas con la conectividad WAN,
aunque no todos estos servicios no estn disponibles en todas

las reas, hay 3 tipos de conexiones.

Lnea dedicada.
Conmutacin de circuitos.
Conmutacin de paquetes.

LINEA DEDICADA
Una lnea dedicada, tambin conocida como punto a punto o
conexin dedicada, ofrece una ruta individual de comunicacin

WAN preestablecimiento desde el local del cliente hasta una red


remota, a travs de la red proveedor del servicio.

Serie sncrono

CONMUTACION DE CIRCUITOS
La conmutacin de circuitos es un mtodo de conmutacin para
una red WAN en la cual debe existir una ruta dedicada entre el

emisor y el receptor durante la duracin de la llamada.

Serie asncrono,
RDSI Capa 1

Compaa
Telefnica

CONMUTACION DE PAQUETES
La conmutacin de paquetes es un mtodo de conmutacin para
WAN en la cual los dispositivos de red comparten un enlace

individual punto a punto para transportar paquetes desde un


origen a un destino, a travs de una red.

Serie sncrono

Proveedor
de Servicio

ENCAPSULAMIENTO WAN
Cuando subimos de capa en el modelo OSI, los dispositivos serie
deben encapsular los datos en un formato de trama de Capa 2.
Diferentes servicios pueden utilizar diferentes formatos de trama.
Para asegurar que se utiliza el protocolo correcto, es necesario
configurar el tipo apropiado de encapsulado de Capa 2. La eleccin
del protocolo depende de la tecnologa WAN y del equipo de
comunicaciones.
Lnea dedicada (Protocolo HDLC, PPP, SLIP).
Conmutacin de paquetes (Protocolo X.25, Frame Relay, ATM).
Conmutacin de circuitos (Protocolo PPP, SLIP, HDLC).

ENCAPSULAMIENTO WAN
HDLC, PPP, SLIP
Lnea
Dedicada

X. 25, Frame Relay, ATM

Conmutacin
de paquetes

Proveedor
de Servicio

PPP, SLIP, HDLC


Conmutacin
de circuitos

Compaa
Telefnica

ENRUTAMIENTO ESTATICO
192.168.6.0/24

DCE

DTE
S0/0

R2

200.1.1.0/24

S0/1

200.2.2.0/24

DTE

F0/1

S0/0

F0/0

R4
F0/0

192.168.1.0/24

DCE

F0/0

192.168.5.0/24

192.168.3.0/24

S0/0
R1
F0/1

S0/1
DCE

200.3.3.0/24

192.168.2.0/24

S0/0
DTE

R3

F0/0

192.168.4.0/24

ROUTER 1
Router> enable
Router# configure terminal
Router(config)# hostname R1
R1(config)# interface fastethernet 0/0
R1(config-if)# ip address 192.168.1.1 255.255.255.0
R1(config-if)# no shutdown
R1(config-if)# exit
R1(config)# interface fastethernet 0/1
R1(config-if)# ip address 192.168.2.1 255.255.255.0
R1(config-if)# no shutdown
R1(config-if)# exit
R1(config)# interface serial 0/0
R1(config-if)# ip address 200.1.1.1 255.255.255.0
R1(config-if)# encapsulation ppp
R1(config-if)# clock rate 64000
R1(config-if)# no shutdown
R1(config-if)# exit

ROUTER 1
R1(config)# interface serial 0/1
R1(config-if)# ip address 200.3.3.1 255.255.255.0
R1(config-if)# encapsulation ppp
R1(config-if)# clock rate 64000
R1(config-if)# no shutdown
R1(config-if)# exit
R1(config)# ip route 192.168.3.0 255.255.255.0 200.1.1.2
R1(config)# ip route 200.2.2.0 255.255.255.0 200.1.1.2
R1(config)# ip route 192.168.5.0 255.255.255.0 200.1.1.2
R1(config)# ip route 192.168.6.0 255.255.255.0 200.1.1.2
R1(config)# ip route 192.168.4.0 255.255.255.0 200.3.3.2
R1(config)# exit
R1# write memory

ROUTER 2
Router> enable
Router# configure terminal
Router(config)# hostname R2
R2(config)# interface fastethernet 0/0
R2(config-if)# ip address 192.168.3.1 255.255.255.0
R2(config-if)# no shutdown
R2(config-if)# exit
R2(config)# interface serial 0/0
R2(config-if)# ip address 200.1.1.2 255.255.255.0
R2(config-if)# encapsulation ppp
R2(config-if)# no shutdown
R2(config-if)# exit

ROUTER 2
R2(config)# interface serial 0/1
R2(config-if)# ip address 200.2.2.1 255.255.255.0
R2(config-if)# encapsulation ppp
R2(config-if)# clock rate 64000
R2(config-if)# no shutdown
R2(config-if)# exit
R2(config)# ip route 192.168.1.0 255.255.255.0 200.1.1.1
R2(config)# ip route 192.168.2.0 255.255.255.0 200.1.1.1
R2(config)# ip route 200.3.3.0 255.255.255.0 200.1.1.1
R2(config)# ip route 192.168.4.0 255.255.255.0 200.1.1.1
R2(config)# ip route 192.168.5.0 255.255.255.0 200.2.2.2
R2(config)# ip route 192.168.6.0 255.255.255.0 200.2.2.2
R2(config)# exit
R2# write memory

ROUTER 3
Router> enable
Router# configure terminal
Router(config)# hostname R3
R3(config)# interface fastethernet 0/0
R3(config-if)# ip address 192.168.4.1 255.255.255.0
R3(config-if)# no shutdown
R3(config-if)# exit
R3(config)# interface serial 0/0
R3(config-if)# ip address 200.3.3.2 255.255.255.0
R3(config-if)# encapsulation ppp
R3(config-if)# no shutdown
R3(config-if)# exit

ROUTER 3
R3(config)# ip route 192.168.1.0 255.255.255.0 200.3.3.1
R3(config)# ip route 192.168.2.0 255.255.255.0 200.3.3.1
R3(config)# ip route 200.1.1.0 255.255.255.0 200.3.3.1
R3(config)# ip route 192.168.3.0 255.255.255.0 200.3.3.1
R3(config)# ip route 200.2.2.0 255.255.255.0 200.3.3.1
R3(config)# ip route 192.168.5.0 255.255.255.0 200.3.3.1
R3(config)# ip route 192.168.6.0 255.255.255.0 200.3.3.1
R3(config)# exit
R3# write memory

ROUTER 4
Router> enable
Router# configure terminal
Router(config)# hostname R4
R4(config)# interface fastethernet 0/0
R4(config-if)# ip address 192.168.5.1 255.255.255.0
R4(config-if)# no shutdown
R4(config-if)# exit
R4(config)# interface fastethernet 0/1
R4(config-if)# ip address 192.168.6.1 255.255.255.0
R4(config-if)# no shutdown
R4(config-if)# exit

ROUTER 4
R4(config)# ip route 192.168.3.0 255.255.255.0 200.2.2.1
R4(config)# ip route 200.1.1.0 255.255.255.0 200.2.2.1
R4(config)# ip route 192.168.1.0 255.255.255.0 200.2.2.1
R4(config)# ip route 192.168.2.0 255.255.255.0 200.2.2.1
R4(config)# ip route 200.3.3.0 255.255.255.0 200.2.2.1
R4(config)# ip route 192.168.4.0 255.255.255.0 200.2.2.1
R4(config)# ip route 192.168.3.0 255.255.255.0 200.3.1.1
R4(config)# exit
R4# write memory

TACNA
192.168.1.0/24
MIRAFLORES
F0/0

DCE

PPP

.1
R1

F0/1

.2
200.1.1.0/24

S0/0

DTE

192.168.2.0/24

S0/1

.2

200.2.1.0/24
DCE

RC

192.168.5.0/24

F0/0
F0/1

PPP
S0/0

.1

.1
F0/1

DTE

.1

F0/0

200.3.1.0/24

.2

S0/0

F0/1

LIMA

R3

.3

192.168.4.0/24

R2

F0/0
F0/0

R4

.1

192.168.6.0/24

192.168.3.0/24

SAN ISIDRO

TRUJILLO
.2
SERVER
WEB

.3
SERVER
MAIL

.4
SERVER
APLICATIVOS

ROUTER 1 (TACNA)

Router> enable
Router# configure terminal
Router(config)# hostname R1
R1(config)# interface fastethernet 0/0
R1(config-if)# ip address 192.168.1.1 255.255.255.0
R1(config-if)# no shutdown
R1(config-if)# exit
R1(config)# interface fastethernet 0/1
R1(config-if)# ip address 192.168.2.1 255.255.255.0
R1(config-if)# no shutdown
R1(config-if)# exit

ROUTER 1 (TACNA)
R1(config)# interface serial 0/0
R1(config-if)# ip address 200.1.1.1 255.255.255.0
R1(config-if)# encapsulation ppp
R1(config-if)# clock rate 64000
R1(config-if)# no shutdown
R1(config-if)# exit
R1(config)# ip route 200.2.1.0 255.255.255.0 200.1.1.2
R1(config)# ip route 192.168.3.0 255.255.255.0 200.1.1.2
R1(config)# ip route 192.168.4.0 255.255.255.0 200.1.1.2
R1(config)# ip route 200.3.1.0 255.255.255.0 200.1.1.2
R1(config)# ip route 192.168.5.0 255.255.255.0 200.1.1.2
R1(config)# ip route 192.168.6.0 255.255.255.0 200.1.1.2
R1(config)# exit
R1# write memory

ROUTER 2 (TRUJILLO)
Router> enable
Router# configure terminal
Router(config)# hostname R2
R2(config)# interface fastethernet 0/0
R2(config-if)# ip address 192.168.3.1 255.255.255.0
R2(config-if)# no shutdown
R2(config-if)# exit
R2(config)# interface serial 0/0
R2(config-if)# ip address 200.2.1.1 255.255.255.0
R2(config-if)# encapsulation ppp
R2(config-if)# clock rate 64000
R2(config-if)# no shutdown
R2(config-if)# exit

ROUTER 2 (TRUJILLO)

R2(config)# ip route 200.1.1.0 255.255.255.0 200.2.1.2


R2(config)# ip route 192.168.1.0 255.255.255.0 200.2.1.2
R2(config)# ip route 192.168.2.0 255.255.255.0 200.2.1.2
R2(config)# ip route 192.168.4.0 255.255.255.0 200.2.1.2
R2(config)# ip route 200.3.1.0 255.255.255.0 200.2.1.2
R2(config)# ip route 192.168.5.0 255.255.255.0 200.2.1.2
R2(config)# ip route 192.168.6.0 255.255.255.0 200.2.1.2
R2(config)# exit

R2# write memory

ROUTER RC (LIMA)
Router> enable
Router# configure terminal
Router(config)# hostname RC
RC(config)# interface fastethernet 0/0
RC(config-if)# ip address 192.168.4.1 255.255.255.0
RC(config-if)# no shutdown
RC(config-if)# exit
RC(config)# interface fastethernet 0/1
RC(config-if)# ip address 200.3.1.1 255.255.255.0
RC(config-if)# no shutdown
RC(config-if)# exit
RC(config)# interface serial 0/0
RC(config-if)# ip address 200.1.1.2 255.255.255.0
RC(config-if)# encapsulation ppp
RC(config-if)# no shutdown
RC(config-if)# exit

ROUTER RC (LIMA)
RC(config)# interface serial 0/1
RC(config-if)# ip address 200.2.1.2 255.255.255.0
RC(config-if)# encapsulation ppp
RC(config-if)# no shutdown
RC(config-if)# exit
RC(config)# ip route 192.168.1.0 255.255.255.0 200.1.1.1
RC(config)# ip route 192.168.2.0 255.255.255.0 200.1.1.1
RC(config)# ip route 192.168.3.0 255.255.255.0 200.2.1.1
RC(config)# ip route 192.168.5.0 255.255.255.0 200.3.1.2
RC(config)# ip route 192.168.6.0 255.255.255.0 200.3.1.3
RC(config)# exit
RC# write memory

ROUTER 3 (MIRAFLORES)
Router> enable
Router# configure terminal
Router(config)# hostname R3
R3(config)# interface fastethernet 0/0
R3(config-if)# ip address 192.168.5.1 255.255.255.0
R3(config-if)# no shutdown
R3(config-if)# exit
R3(config)# interface fastethernet 0/1
R3(config-if)# ip address 200.3.1.2 255.255.255.0
R3(config-if)# no shutdown
R3(config-if)# exit

ROUTER RC (LIMA)
R3(config)# ip route 192.168.6.0 255.255.255.0 200.3.1.3
R3(config)# ip route 192.168.4.0 255.255.255.0 200.3.1.1
R3(config)# ip route 200.1.1.0 255.255.255.0 200.3.1.1
R3(config)# ip route 200.2.1.0 255.255.255.0 200.3.1.1
R3(config)# ip route 192.168.1.0 255.255.255.0 200.3.1.1
R3(config)# ip route 192.168.2.0 255.255.255.0 200.3.1.1
R3(config)# ip route 192.168.3.0 255.255.255.0 200.3.1.1
R3(config)# exit
R3# write memory

ROUTER 4 (SAN ISIDRO)

Router> enable
Router# configure terminal
Router(config)# hostname R4
R4(config)# interface fastethernet 0/0
R4(config-if)# ip address 192.168.6.1 255.255.255.0
R4(config-if)# no shutdown
R4(config-if)# exit
R4(config)# interface fastethernet 0/1
R4(config-if)# ip address 200.3.1.3 255.255.255.0
R4(config-if)# no shutdown
R4(config-if)# exit

ROUTER 4 (SAN ISIDRO)

R4(config)# ip route 192.168.5.0 255.255.255.0 200.3.1.2


R4(config)# ip route 192.168.4.0 255.255.255.0 200.3.1.1
R4(config)# ip route 200.1.1.0 255.255.255.0 200.3.1.1
R4(config)# ip route 200.2.1.0 255.255.255.0 200.3.1.1
R4(config)# ip route 192.168.1.0 255.255.255.0 200.3.1.1
R4(config)# ip route 192.168.2.0 255.255.255.0 200.3.1.1
R4(config)# ip route 192.168.3.0 255.255.255.0 200.3.1.1
R4(config)# exit
R4# write memory

S-ar putea să vă placă și