Está en la página 1de 34

Redes WAN

REDES WAN

Red de Área Amplia (WAN): este concepto se refiere a redes


que se encuentran geográficamente distantes, como redes
unidas entre diferentes ciudades.

LAN 1 LAN 2
WAN
REDES WAN
• Redes formada para la integración de computadores
localizados geográficamente distantes.
• Normalmente utilizan líneas de comunicación de dados
ofrecidas por empresas de telecomunicaciones ( Telefónica,
AT&T, Óptica ip, Bellsoutht etc).

TCP/IP
WAN
CARACTERISTICAS REDES WAN

• Aumento la demanda para la transmisión de dados a


largas distancias.

• Conexión punto a punto (SLDD – Servicio de Línea


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

Módem

WAN

Módem
WAN - COMPONENTES

Satélite

UPLINK DOWLINK

EARTH EARTH
STATION STATION
WAN - COMPONENTES

Frequency
Modulated Signal

RF Signal

Modulator
Demodulator
Microware Tower Amplifier

RF Signal

Amplifier Sistema de Microondas


Modulator
Demodulator
CONECTIVIDAD WAN

Existen muchas opciones relacionadas con la conectividad WAN,


aunque no todos estos servicios no están disponibles en todas
las áreas, hay 3 tipos de conexiones.

• Línea dedicada.

• Conmutación de circuitos.

• Conmutación de paquetes.
LINEA DEDICADA

Una línea dedicada, también conocida como punto a punto o


conexión dedicada, ofrece una ruta individual de comunicación
WAN preestablecimiento desde el local del cliente hasta una red
remota, a través de la red proveedor del servicio.

Serie síncrono
CONMUTACION DE CIRCUITOS
La conmutación de circuitos es un método de conmutación para
una red WAN en la cual debe existir una ruta dedicada entre el
emisor y el receptor durante la duración de la llamada.

Serie asíncrono,
RDSI Capa 1

Compañía
Telefónica
CONMUTACION DE PAQUETES
La conmutación de paquetes es un método de conmutación 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 través de una red.

Serie síncrono

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 elección
del protocolo depende de la tecnología WAN y del equipo de
comunicaciones.

• Línea dedicada (Protocolo HDLC, PPP, SLIP).

• Conmutación de paquetes (Protocolo X.25, Frame Relay, ATM).

• Conmutación de circuitos (Protocolo PPP, SLIP, HDLC).


ENCAPSULAMIENTO WAN

HDLC, PPP, SLIP


Línea
Dedicada

X. 25, Frame Relay, ATM

Conmutación Proveedor
de paquetes de Servicio

PPP, SLIP, HDLC

Conmutación
Compañía
de circuitos
Telefónica
ENRUTAMIENTO ESTATICO
192.168.6.0/24

DCE 200.2.2.0/2 DTE F0/1


DTE
R2 4
S0/0 S0/1 R4
S0/0
200.1.1.0/2 F0/0 F0/0
192.168.1.0/24 4
DCE
192.168.5.0/24
S0/0 192.168.3.0/24

F0/0 R1
S0/1
F0/1
DCE 200.3.3.0/2
4
192.168.2.0/24

S0/0 192.168.4.0/24
R3 F0/0
DTE
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
.2 R3
R1 200.1.1.0/24
F0/1 S0/0 DTE F0/1 F0/0
LIMA .1
200.3.1.0/24
.2
S0/0 .1
192.168.2.0/24 F0/1 192.168.5.0/24
S0/1 RC
.2
F0/0
200.2.1.0/24
DCE DTE F0/1
.1 PPP .3
S0/0 192.168.4.0/24
R4
R2 F0/0 .1
F0/0

192.168.3.0/24 192.168.6.0/24

SAN ISIDRO
TRUJILLO
.2 .3 .4
SERVER SERVER SERVER
WEB MAIL 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

También podría gustarte