search the web

Sunday, October 25, 2015

Configuring Frame-relay Point-To-Point

Configuring Frame-relay Point-To-Point


---------------------------------------
BB_Configuring Frame-relay switch
---------------------------------------
conf t
frame-relay switching
interface s1/1
no ip address
encapsulation frame-relay
frame-relay lmi-type cisco
frame-relay intf-type dce
clock rate 64000
frame-relay route 102 int s1/2 201
frame-relay route 103 int s1/3 301
no shut
exit

int s1/2
no ip address
encap frame-relay
frame-relay lmi-type cisco
frame-relay intf-type dce
clock rate 64000
frame-relay route 201 int s1/1 102
no shut
exit

int s1/3
no ip address
encap frame-relay
frame-relay lmi-type cisco
frame-relay intf-type dce
clock rate 64000
frame-relay route 301 int s1/1 103
no shut
exit

--------------------------------------------
R1
--------------------------------------------
conf t
int s0
encapsulation frame-relay
frame-relay lmi-type cisco
no ip address
exit
int s0.102 point-to-point
!this command enables sub interface on this router which is point to point.
ip address 192.168.2.1 255.255.255.0
no shut
frame-relay interface-dlci 102
exit
exit

interface s0.103 point-to-point
ip address 192.168.3.1 255.255.255.0
no shut
frame-relay interface-dlci 103
exit
exit

--------------------------------------------
R2
--------------------------------------------
conf t
int s0
no ip address
encap frame-relay
frame-relay lmi-type cisco
exit
int s0.201 point-to-point
ip address 192.168.2.2 255.255.255.0
no shut
frame-relay interface-dlci 201
exit
exit

-----------------------------------------------
R3
-----------------------------------------------
conf t
int s0/0
no ip add
encap frame-relay
frame-relay lmi-type cisco
exit
int s0/0.103 point-to-point
ip address 192.168.3.2 255.255.255.0
no shut
frame-relay interface-dlci 301
exit
exit

for initial configuration of Router, switch or AP visit link below
initial configuration of Router, Switch or AP

No comments: