KZH

Tuesday, October 9, 2012

CCNA Creating WAN (Wide Area Network)

KZH
                                      


Configuring Router0 (RO)
Double Click Router
Switch Off
Add WIC-1T Port (Serial Port)
Click and Drag it on Router
Switch On

Configuring Router1 (R1)
Double Click Router
Switch Off
Add WIC-1T Port (Serial Port)
Click and Drag it on Router
Switch On

Serial Cable has two types

1. DCE (Data Communication Equipment) is for modem.
2. DTE (Data Terminal Equipment) is for router.

Assign IP Address for all Client Computers

PC1
Select PC1
Double Click
Click on Tab Desktop
Click on IP Configuration
IP: 10.0.0.2
Subnet Mask (SM): 255.0.0.0
Default Gateway (DG): 10.0.0.1
DNS: NIL

PC2
Select PC2
Double Click
Click on Tab Desktop
Click on IP Configuration
IP: 10.0.0.3
Subnet Mask (SM): 255.0.0.0
Default Gateway (DG): 10.0.0.1
DNS: NIL

PC3
Select PC3
Double Click
Click on Tab Desktop
Click on IP Configuration
IP: 10.0.0.4
Subnet Mask (SM): 255.0.0.0
Default Gateway (DG): 10.0.0.1
DNS: NIL

PC4
Select PC4
Double Click
Click on Tab Desktop
Click on IP Configuration
IP: 20.0.0.2
Subnet Mask (SM): 255.0.0.0
Default Gateway (DG): 20.0.0.1
DNS: NIL

PC5
Select PC5
Double Click
Click on Tab Desktop
Click on IP Configuration
IP: 20.0.0.3
Subnet Mask (SM): 255.0.0.0
Default Gateway (DG): 20.0.0.1
DNS: NIL

PC6
Select PC6
Double Click
Click on Tab Desktop
Click on IP Configuration
IP: 20.0.0.4
Subnet Mask (SM): 255.0.0.0
Default Gateway (DG): 20.0.0.1
DNS: NIL

PC7
Select PC7
Double Click
Click on Tab Desktop
Click on IP Configuration
IP: 30.0.0.2
Subnet Mask (SM): 255.0.0.0
Default Gateway (DG): 30.0.0.1
DNS: NIL

PC8
Select PC8
Double Click
Click on Tab Desktop
Click on IP Configuration
IP: 30.0.0.3
Subnet Mask (SM): 255.0.0.0
Default Gateway (DG): 30.0.0.1
DNS: NIL

PC9
Select PC9
Double Click
Click on Tab Desktop
Click on IP Configuration
IP: 30.0.0.4
Subnet Mask (SM): 255.0.0.0
Default Gateway (DG): 30.0.0.1
DNS: NIL

PC10
Select PC10
Double Click
Click on Tab Desktop
Click on IP Configuration
IP: 40.0.0.2
Subnet Mask (SM): 255.0.0.0
Default Gateway (DG): 40.0.0.1
DNS: NIL

PC11
Select PC11
Double Click
Click on Tab Desktop
Click on IP Configuration
IP: 40.0.0.3
Subnet Mask (SM): 255.0.0.0
Default Gateway (DG): 40.0.0.1
DNS: NIL

PC12
Select PC12
Double Click
Click on Tab Desktop
Click on IP Configuration
IP: 40.0.0.4
Subnet Mask (SM): 255.0.0.0
Default Gateway (DG): 40.0.0.1
DNS: NIL


Configuring Router (R0) from Consol System (PC0)
Click on PC0
Click on Tab Desktop
Click on Terminal
Last Option Flow Control = XOn/XOff
OK
Auto Configuration Yes/No: NO
Router>enable or en
Router#configure terminal or conf t
Router(config)#hostname R0
RO(config)#int fa0/0
RO(config-if)#ip add 10.0.0.1 255.0.0.0
RO(config-if)#no shut
RO(config-if)#exit
RO(config)#int fa0/1
RO(config-if)#ip add 20.0.0.1 255.0.0.0
RO(config-if)#no shut
RO(config-if)#exit
RO(config)#exit
R0#

Now configure serial cable
How to know DTE & DCE
R0#sh controllers S0/0
DCE v.35, no clock
RO#conf t
RO(config)#int S0/0
RO(config-if)#ip add 1.0.0.1 255.0.0.0
RO(config-if)#clock rate 6400
{Note: Clock rate for the communication port only for DCE cable}
RO(config-if)#no shut
RO(config-if)#exit
RO(config)#exit
RO#wr {Save the configuration in NVRAM}


Configuring Router1.

Router>enable or en
Router#configure terminal or conf t
Router(config)#hostname R1
R1(config)#int fa0/0
R1(config-if)#ip add 30.0.0.1 255.0.0.0
R1(config-if)#no shut
R1(config-if)#exit
R1(config)#int fa0/1
R1(config-if)#ip add 40.0.0.1 255.0.0.0
R1(config-if)#no shut
R1(config-if)#exit
R1(config)#exit
R1#sh controllers S0/0
DTE v.35, no clock
R1#conf t
R1(config)#int S0/0
R1(config-if)#ip add 1.0.0.2 255.0.0.0
R1(config-if)#no shut
R1(config-if)#exit
R1(config)#exit
R1#wr {Save the configuration in NVRAM}

No comments:

Post a Comment