Frame Relay Config [7:55879]

2002-10-18 Thread Aaron Ajello
I'm studying for the BCRAN test and have been practicing Frame Relay stuff. 
I work with a guy who says sometimes FR is configured on a major interface. 
From everything I can see, it's done on a subinterface.  Below is how I
think FR should go:
r(config)#int s0
r(config-if)#no ip addr
r(config-if)#encap frame-relay ietf
r(config-if)#frame-relay lmi-type ansi
r(config-if)#int s0.22 multipoint
r(config-subif)#ip addr 10.1.1.1 255.255.0.0
r(config-subif)#frame-relay interface-dlci 22
r(config-subif)#bandwidth 256
r(config-subif)#no shut

Does that look right?  Is there a reason to configure FR on a major int? 
I've tried to do that but can't figure out how to declare a major int to be
multipoint or point-to-point, like you can with the line: r(config-if)#int
s0.22 multipoint

Thanks for any input.
-Aaron




Message Posted at:
http://www.groupstudy.com/form/read.php?f=7i=55879t=55879
--
FAQ, list archives, and subscription info: http://www.groupstudy.com/list/cisco.html
Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]



Re: Frame Relay Config [7:55879]

2002-10-18 Thread \\B.J. Wilson\\
You can put the same configuration (ip address and interface-dlci) on the
major interface.  The physical interface will then default to being a
point-to-point link.  It would be a waste of interfaces to do this on a hub
router, but on a spoke it's fine.  Your config would be:

 r(config)#int s0
 r(config-if)#encap frame-relay ietf
 r(config-if)#frame-relay lmi-type ansi
 r(config-if)#ip addr 10.1.1.1 255.255.0.0
 r(config-if)#frame-relay interface-dlci 22
 r(config-if)#bandwidth 256
 r(config-if)#no shut

BJ



On Fri, 18 Oct 2002 15:05:29 GMT Aaron Ajello  wrote:

 I'm studying for the BCRAN test and have been
 practicing Frame Relay stuff. 
 I work with a guy who says sometimes FR is
 configured on a major interface. 
 From everything I can see, it's done on a
 subinterface.  Below is how I
 think FR should go:
 r(config)#int s0
 r(config-if)#no ip addr
 r(config-if)#encap frame-relay ietf
 r(config-if)#frame-relay lmi-type ansi
 r(config-if)#int s0.22 multipoint
 r(config-subif)#ip addr 10.1.1.1 255.255.0.0
 r(config-subif)#frame-relay interface-dlci 22
 r(config-subif)#bandwidth 256
 r(config-subif)#no shut
 
 Does that look right?  Is there a reason to
 configure FR on a major int? 
 I've tried to do that but can't figure out how
 to declare a major int to be
 multipoint or point-to-point, like you can with
 the line: r(config-if)#int
 s0.22 multipoint
 
 Thanks for any input.
 -Aaron
 to [EMAIL PROTECTED]




Message Posted at:
http://www.groupstudy.com/form/read.php?f=7i=55881t=55879
--
FAQ, list archives, and subscription info: http://www.groupstudy.com/list/cisco.html
Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]



Re: Frame Relay Config [7:55879]

2002-10-18 Thread Matthew Poole
If you did it on the major interface you would only be able to have one
DLCI.

It's good habit to use subinterfaces, as to add 2nd DLCI you wouldn't first
need to remove the DLCI from the major interface thereby disrupting traffic.

B.J. Wilson  wrote in message
news:200210181517.PAA05406;groupstudy.com...
 You can put the same configuration (ip address and interface-dlci) on the
 major interface.  The physical interface will then default to being a
 point-to-point link.  It would be a waste of interfaces to do this on a
hub
 router, but on a spoke it's fine.  Your config would be:

  r(config)#int s0
  r(config-if)#encap frame-relay ietf
  r(config-if)#frame-relay lmi-type ansi
  r(config-if)#ip addr 10.1.1.1 255.255.0.0
  r(config-if)#frame-relay interface-dlci 22
  r(config-if)#bandwidth 256
  r(config-if)#no shut

 BJ



 On Fri, 18 Oct 2002 15:05:29 GMT Aaron Ajello  wrote:

  I'm studying for the BCRAN test and have been
  practicing Frame Relay stuff.
  I work with a guy who says sometimes FR is
  configured on a major interface.
  From everything I can see, it's done on a
  subinterface.  Below is how I
  think FR should go:
  r(config)#int s0
  r(config-if)#no ip addr
  r(config-if)#encap frame-relay ietf
  r(config-if)#frame-relay lmi-type ansi
  r(config-if)#int s0.22 multipoint
  r(config-subif)#ip addr 10.1.1.1 255.255.0.0
  r(config-subif)#frame-relay interface-dlci 22
  r(config-subif)#bandwidth 256
  r(config-subif)#no shut
 
  Does that look right?  Is there a reason to
  configure FR on a major int?
  I've tried to do that but can't figure out how
  to declare a major int to be
  multipoint or point-to-point, like you can with
  the line: r(config-if)#int
  s0.22 multipoint
 
  Thanks for any input.
  -Aaron
  to [EMAIL PROTECTED]




Message Posted at:
http://www.groupstudy.com/form/read.php?f=7i=55893t=55879
--
FAQ, list archives, and subscription info: http://www.groupstudy.com/list/cisco.html
Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]