Re: Problem Pinging FR Interface - What is Going On? [7:36743]

2002-03-01 Thread [EMAIL PROTECTED]

The short story is that the local interface does not have a layer three to
layer two mapping.

Put a frame relay map statement in for the local interfaces IP and you'll be
able to ping the local IP.

PS: If you use point-to-point subinterfaces you'll have no problem pinging
your own interface due to INARP.

K.K.

 
 From: Karl Brusen 
 Date: 2002/02/27 Wed PM 07:08:02 EST
 To: [EMAIL PROTECTED]
 Subject: Problem Pinging FR Interface - What is Going On? [7:36743]
 
 I was working with FR in my home lab, and I ran into an interesting
 problem.  This is the first time I've set up a router to function as a FR
 switch.  Here's the scenario.
 
 I am using a 2524 with two five-in-one serial modules as the FR switch to
 connect two routers with fixed serial ports, a 2503 and a 2509.  The PVC is
 up and active.  I can ping from each router, through the FR switch to the
 router on the other side, but I cannot internally ping the FR interface of
 the router I am pinging from.  After checking around a bit, I learned that
 pinging a serial interface of the router originating the ping works
 differently than pinging an ethernet interface.  Apperently, serial
 interfaces cannot responded internally to an interally generated ping --
the
 ping actually goes out on the wire and comes back.  I don't completely
 understand this, but it is clear the the ping does travel through the
 external cable.
 
 So can anyone tell me why the internal ping to the FR interface doesn't
 work.  It isn't a big deal, but I would like to understand what is going
 on.  Is there a problem with the way I have configured the 2524 as a FR
 switch?
 
 Here are the configurations.
 
 START OF CONFIGURATION FOR CISCO 2524 ACTINT AS A FRAME RELAY SWITCH.  2524
 EQUIPPED WITH TWO FIVE-IN-ONE SERIAL MODULES.
 
 frameswitch#show run
 Building configuration...
 
 Current configuration:
 !
 version 12.0
 service timestamps debug uptime
 service timestamps log uptime
 no service password-encryption
 !
 hostname frameswitch
 !
 !
 ip subnet-zero
 frame-relay switching
 !
 !
 !
 interface Ethernet0
  ip address 192.168.1.105 255.255.255.0
  no ip directed-broadcast
 !
 interface Serial0
  no ip address
  no ip directed-broadcast
  encapsulation frame-relay
  no ip mroute-cache
  clockrate 56000
  frame-relay intf-type dce
  frame-relay route 301 interface Serial1 901
 !
 interface Serial1
  no ip address
  no ip directed-broadcast
  encapsulation frame-relay
  clockrate 56000
  frame-relay intf-type dce
  frame-relay route 901 interface Serial0 301
 !
 ip classless
 !
 !
 line con 0
  transport input none
 line aux 0
 line vty 0 4
  login
 !
 end
 
 START OF CONFIGURATION OF CISCO 2503 CONNECTED TO CISCO 2509 VIA CISCO 2524
 ACTING AS A FRAME RELAY SWITCH
 
 2503A#show run
 Building configuration...
 
 Current configuration:
 !
 version 11.0
 service password-encryption
 service udp-small-servers
 service tcp-small-servers
 !
 hostname 2503A
 !
 enable secret 5 $1$n6HI$CliSp0vBx8d8fUPVllPON.
 enable password 7 140713181F13253920
 !
 !
 interface Loopback0
  ip address 172.16.18.1 255.255.255.0
 !
 interface Ethernet0
  ip address 192.168.1.106 255.255.255.0
 !
 interface Serial0
  ip address 172.16.17.1 255.255.255.0
  encapsulation frame-relay
  no fair-queue
  frame-relay map ip 172.16.17.2 301 broadcast
 !
 interface Serial1
  no ip address
  shutdown
 !
 interface BRI0
  no ip address
  shutdown
 !
 !
 line con 0
  password 7 15190A1E08
  login
 line aux 0
  password 7 15190A1E08
  login
  transport input all
 line vty 0 4
  password 7 110218171B
  login
 !
 end
 
 START OF CONFIGURATION OF CISCO 2509 CONNECTED TO CISCO 2503 VIA CISCO 2524
 ACTING AS A FRAME RELAY SWITCH
 
 2609A#show run
 Building configuration...
 
 Current configuration : 701 bytes
 !
 version 12.2
 no service single-slot-reload-enable
 service timestamps debug uptime
 service timestamps log uptime
 no service password-encryption
 !
 hostname 2609A
 !
 logging rate-limit console 10 except errors
 !
 ip subnet-zero
 no ip finger
 !
 no ip dhcp-client network-discovery
 !
 !
 !
 !
 interface Ethernet0
  ip address 192.168.1.107 255.255.255.0
 !
 interface Serial0
  ip address 172.16.17.2 255.255.255.0
  encapsulation frame-relay
  no ip mroute-cache
  frame-relay map ip 172.16.17.1 901 broadcast
 !
 router rip
  network 172.16.0.0
  network 192.168.1.0
 !
 ip kerberos source-interface any
 ip classless
 no ip http server
 !
 !
 !
 line con 0
  transport input none
 line 1 8
 line aux 0
 line vty 0 4
  login
 !
 end




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



Re: Problem Pinging FR Interface - What is Going On? [7:36743]

2002-02-27 Thread Scott H.

Map the local DLCI to the local IP address.  Router doesn't know how to get
there.

Karl Brusen  wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
 I was working with FR in my home lab, and I ran into an interesting
 problem.  This is the first time I've set up a router to function as a FR
 switch.  Here's the scenario.

 I am using a 2524 with two five-in-one serial modules as the FR switch to
 connect two routers with fixed serial ports, a 2503 and a 2509.  The PVC
is
 up and active.  I can ping from each router, through the FR switch to the
 router on the other side, but I cannot internally ping the FR interface of
 the router I am pinging from.  After checking around a bit, I learned that
 pinging a serial interface of the router originating the ping works
 differently than pinging an ethernet interface.  Apperently, serial
 interfaces cannot responded internally to an interally generated ping --
the
 ping actually goes out on the wire and comes back.  I don't completely
 understand this, but it is clear the the ping does travel through the
 external cable.

 So can anyone tell me why the internal ping to the FR interface doesn't
 work.  It isn't a big deal, but I would like to understand what is going
 on.  Is there a problem with the way I have configured the 2524 as a FR
 switch?

 Here are the configurations.

 START OF CONFIGURATION FOR CISCO 2524 ACTINT AS A FRAME RELAY SWITCH.
2524
 EQUIPPED WITH TWO FIVE-IN-ONE SERIAL MODULES.

 frameswitch#show run
 Building configuration...

 Current configuration:
 !
 version 12.0
 service timestamps debug uptime
 service timestamps log uptime
 no service password-encryption
 !
 hostname frameswitch
 !
 !
 ip subnet-zero
 frame-relay switching
 !
 !
 !
 interface Ethernet0
  ip address 192.168.1.105 255.255.255.0
  no ip directed-broadcast
 !
 interface Serial0
  no ip address
  no ip directed-broadcast
  encapsulation frame-relay
  no ip mroute-cache
  clockrate 56000
  frame-relay intf-type dce
  frame-relay route 301 interface Serial1 901
 !
 interface Serial1
  no ip address
  no ip directed-broadcast
  encapsulation frame-relay
  clockrate 56000
  frame-relay intf-type dce
  frame-relay route 901 interface Serial0 301
 !
 ip classless
 !
 !
 line con 0
  transport input none
 line aux 0
 line vty 0 4
  login
 !
 end

 START OF CONFIGURATION OF CISCO 2503 CONNECTED TO CISCO 2509 VIA CISCO
2524
 ACTING AS A FRAME RELAY SWITCH

 2503A#show run
 Building configuration...

 Current configuration:
 !
 version 11.0
 service password-encryption
 service udp-small-servers
 service tcp-small-servers
 !
 hostname 2503A
 !
 enable secret 5 $1$n6HI$CliSp0vBx8d8fUPVllPON.
 enable password 7 140713181F13253920
 !
 !
 interface Loopback0
  ip address 172.16.18.1 255.255.255.0
 !
 interface Ethernet0
  ip address 192.168.1.106 255.255.255.0
 !
 interface Serial0
  ip address 172.16.17.1 255.255.255.0
  encapsulation frame-relay
  no fair-queue
  frame-relay map ip 172.16.17.2 301 broadcast
 !
 interface Serial1
  no ip address
  shutdown
 !
 interface BRI0
  no ip address
  shutdown
 !
 !
 line con 0
  password 7 15190A1E08
  login
 line aux 0
  password 7 15190A1E08
  login
  transport input all
 line vty 0 4
  password 7 110218171B
  login
 !
 end

 START OF CONFIGURATION OF CISCO 2509 CONNECTED TO CISCO 2503 VIA CISCO
2524
 ACTING AS A FRAME RELAY SWITCH

 2609A#show run
 Building configuration...

 Current configuration : 701 bytes
 !
 version 12.2
 no service single-slot-reload-enable
 service timestamps debug uptime
 service timestamps log uptime
 no service password-encryption
 !
 hostname 2609A
 !
 logging rate-limit console 10 except errors
 !
 ip subnet-zero
 no ip finger
 !
 no ip dhcp-client network-discovery
 !
 !
 !
 !
 interface Ethernet0
  ip address 192.168.1.107 255.255.255.0
 !
 interface Serial0
  ip address 172.16.17.2 255.255.255.0
  encapsulation frame-relay
  no ip mroute-cache
  frame-relay map ip 172.16.17.1 901 broadcast
 !
 router rip
  network 172.16.0.0
  network 192.168.1.0
 !
 ip kerberos source-interface any
 ip classless
 no ip http server
 !
 !
 !
 line con 0
  transport input none
 line 1 8
 line aux 0
 line vty 0 4
  login
 !
 end




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



Re: Problem Pinging FR Interface - What is Going O [7:36743]

2002-02-27 Thread Karl Brusen

You the man!  That did it.  Under the 2503 s0 I put in a statement:

frame-relay map ip 172.16.17.1 301

This maps the interface's own IP address to the local DLCI.  I can now ping
the interface.  I now understand what is going on, but it seems a bit odd
that you have to tell the router how to find its own interface.

I learned something I didn't know before.  That's what it's all about.

Thanks, Scott.

Karl



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



RE: problem on FR

2001-01-02 Thread Andrew Larkins

from my understanding, "inactive" means the line to the switch is fine, but
the end to end connectivity is a problem

As for the log messages, maybe a form of lmi auto sensing

-Original Message-
From: Frank [mailto:[EMAIL PROTECTED]]
Sent: 02 January 2001 10:36
To: [EMAIL PROTECTED]
Subject: problem on FR


I am configuring a multichannel E1 board on 7513 to connect with a FR net.
when i use SH FRAME PVC ,i got the the PVC status is "deleted " or
"inactive"
what acturally does it mean ?
as far as i know ,"deleted" means the line between router and FR switch is
not OK,
and "inactive" means OK.
i also got the following infor when i unplug the line from the router and
then plug it back.
(i opened deb frame packet and deb frame event on)

serial4/0/0:0 broadcast search
serial4/0/0:0 encaps failed on broadcast for link 7(IP)

what does it mean?

Any help is appreciated.

Frank



_
FAQ, list archives, and subscription info:
http://www.groupstudy.com/list/cisco.html
Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]

_
FAQ, list archives, and subscription info: http://www.groupstudy.com/list/cisco.html
Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]



Re: problem on FR

2001-01-02 Thread news.groupstudy.com


   What is the status of the main interface you are configuring this
Frame-relay subinterface on?

   I have typically seen a "deleted" status for a PVC to mean that the PVC
within the frame-relay net you are connecting to is not built.


"Frank" [EMAIL PROTECTED] wrote in message
92s7rc$4f2$[EMAIL PROTECTED]">news:92s7rc$4f2$[EMAIL PROTECTED]...
 I am configuring a multichannel E1 board on 7513 to connect with a FR net.
 when i use SH FRAME PVC ,i got the the PVC status is "deleted " or
 "inactive"
 what acturally does it mean ?
 as far as i know ,"deleted" means the line between router and FR switch is
 not OK,
 and "inactive" means OK.
 i also got the following infor when i unplug the line from the router and
 then plug it back.
 (i opened deb frame packet and deb frame event on)

 serial4/0/0:0 broadcast search
 serial4/0/0:0 encaps failed on broadcast for link 7(IP)

 what does it mean?

 Any help is appreciated.

 Frank



 _
 FAQ, list archives, and subscription info:
http://www.groupstudy.com/list/cisco.html
 Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]



_
FAQ, list archives, and subscription info: http://www.groupstudy.com/list/cisco.html
Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]



RE: problem on FR

2001-01-02 Thread Dennis @ Eathlink

PVC deleted - your router does not see the DLCI that you have configured (
Check to see if you are getting lmi from the switch, if yes then check your
DLCI's or call telco)

PVC inactive - your router sees a DLCI on the frame relay but something is
stopping it from becomming active (check the configutation on both ends )

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of
news.groupstudy.com
Sent: Wednesday, January 03, 2001 1:16 AM
To: [EMAIL PROTECTED]
Subject: Re: problem on FR



   What is the status of the main interface you are configuring this
Frame-relay subinterface on?

   I have typically seen a "deleted" status for a PVC to mean that the PVC
within the frame-relay net you are connecting to is not built.


"Frank" [EMAIL PROTECTED] wrote in message
92s7rc$4f2$[EMAIL PROTECTED]">news:92s7rc$4f2$[EMAIL PROTECTED]...
 I am configuring a multichannel E1 board on 7513 to connect with a FR net.
 when i use SH FRAME PVC ,i got the the PVC status is "deleted " or
 "inactive"
 what acturally does it mean ?
 as far as i know ,"deleted" means the line between router and FR switch is
 not OK,
 and "inactive" means OK.
 i also got the following infor when i unplug the line from the router and
 then plug it back.
 (i opened deb frame packet and deb frame event on)

 serial4/0/0:0 broadcast search
 serial4/0/0:0 encaps failed on broadcast for link 7(IP)

 what does it mean?

 Any help is appreciated.

 Frank



 _
 FAQ, list archives, and subscription info:
http://www.groupstudy.com/list/cisco.html
 Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]



_
FAQ, list archives, and subscription info:
http://www.groupstudy.com/list/cisco.html
Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]

_
FAQ, list archives, and subscription info: http://www.groupstudy.com/list/cisco.html
Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]



Re: problem on FR

2001-01-02 Thread Dan Snyder

Frank,
check sh frame lmi to see if you are sending and receiving LMI.  if not,
chek the LMI type

- Original Message -
From: "Dennis @ Eathlink" [EMAIL PROTECTED]
To: "'news.groupstudy.com'" [EMAIL PROTECTED]; [EMAIL PROTECTED]
Sent: Tuesday, January 02, 2001 3:39 PM
Subject: RE: problem on FR


 PVC deleted - your router does not see the DLCI that you have configured (
 Check to see if you are getting lmi from the switch, if yes then check
your
 DLCI's or call telco)

 PVC inactive - your router sees a DLCI on the frame relay but something is
 stopping it from becomming active (check the configutation on both ends )

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of
 news.groupstudy.com
 Sent: Wednesday, January 03, 2001 1:16 AM
 To: [EMAIL PROTECTED]
 Subject: Re: problem on FR



What is the status of the main interface you are configuring this
 Frame-relay subinterface on?

I have typically seen a "deleted" status for a PVC to mean that the PVC
 within the frame-relay net you are connecting to is not built.


 "Frank" [EMAIL PROTECTED] wrote in message
 92s7rc$4f2$[EMAIL PROTECTED]">news:92s7rc$4f2$[EMAIL PROTECTED]...
  I am configuring a multichannel E1 board on 7513 to connect with a FR
net.
  when i use SH FRAME PVC ,i got the the PVC status is "deleted " or
  "inactive"
  what acturally does it mean ?
  as far as i know ,"deleted" means the line between router and FR switch
is
  not OK,
  and "inactive" means OK.
  i also got the following infor when i unplug the line from the router
and
  then plug it back.
  (i opened deb frame packet and deb frame event on)
 
  serial4/0/0:0 broadcast search
  serial4/0/0:0 encaps failed on broadcast for link 7(IP)
 
  what does it mean?
 
  Any help is appreciated.
 
  Frank
 
 
 
  _
  FAQ, list archives, and subscription info:
 http://www.groupstudy.com/list/cisco.html
  Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]
 


 _
 FAQ, list archives, and subscription info:
 http://www.groupstudy.com/list/cisco.html
 Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]

 _
 FAQ, list archives, and subscription info:
http://www.groupstudy.com/list/cisco.html
 Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]


_
FAQ, list archives, and subscription info: http://www.groupstudy.com/list/cisco.html
Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]



Re: problem on FR

2001-01-02 Thread Tony van Ree

Hi,

I was under the impression that when you get "Deleted" there is no PVC between you and 
the frame switch.  You might still see an LMI but the DLCI you think you have is not 
connected at the frame switch.

When you see the PVC as "inactive" this indicates the DLCI to the frame switch is 
configured ok but the remote site is either down, the DLCI on the remote site is not 
configured or you are trying to get to the wrong DLCI on the remote site.

Hope this helps.

Teunis,
Hobart, Tasmania
Australia




On Tuesday, January 02, 2001 at 10:08:50 PM, Dan Snyder wrote:

 Frank,
 check sh frame lmi to see if you are sending and receiving LMI.  if not,
 chek the LMI type
 
 - Original Message -
 From: "Dennis @ Eathlink" [EMAIL PROTECTED]
 To: "'news.groupstudy.com'" [EMAIL PROTECTED]; [EMAIL PROTECTED]
 Sent: Tuesday, January 02, 2001 3:39 PM
 Subject: RE: problem on FR
 
 
  PVC deleted - your router does not see the DLCI that you have configured (
  Check to see if you are getting lmi from the switch, if yes then check
 your
  DLCI's or call telco)
 
  PVC inactive - your router sees a DLCI on the frame relay but something is
  stopping it from becomming active (check the configutation on both ends )
 
  -Original Message-
  From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of
  news.groupstudy.com
  Sent: Wednesday, January 03, 2001 1:16 AM
  To: [EMAIL PROTECTED]
  Subject: Re: problem on FR
 
 
 
 What is the status of the main interface you are configuring this
  Frame-relay subinterface on?
 
 I have typically seen a "deleted" status for a PVC to mean that the PVC
  within the frame-relay net you are connecting to is not built.
 
 
  "Frank" [EMAIL PROTECTED] wrote in message
  92s7rc$4f2$[EMAIL PROTECTED]">news:92s7rc$4f2$[EMAIL PROTECTED]...
   I am configuring a multichannel E1 board on 7513 to connect with a FR
 net.
   when i use SH FRAME PVC ,i got the the PVC status is "deleted " or
   "inactive"
   what acturally does it mean ?
   as far as i know ,"deleted" means the line between router and FR switch
 is
   not OK,
   and "inactive" means OK.
   i also got the following infor when i unplug the line from the router
 and
   then plug it back.
   (i opened deb frame packet and deb frame event on)
  
   serial4/0/0:0 broadcast search
   serial4/0/0:0 encaps failed on broadcast for link 7(IP)
  
   what does it mean?
  
   Any help is appreciated.
  
   Frank
  
  
  
   _
   FAQ, list archives, and subscription info:
  http://www.groupstudy.com/list/cisco.html
   Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]
  
 
 
  _
  FAQ, list archives, and subscription info:
  http://www.groupstudy.com/list/cisco.html
  Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]
 
  _
  FAQ, list archives, and subscription info:
 http://www.groupstudy.com/list/cisco.html
  Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]
 
 
 _
 FAQ, list archives, and subscription info: http://www.groupstudy.com/list/cisco.html
 Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]
 
 


--
www.tasmail.com


_
FAQ, list archives, and subscription info: http://www.groupstudy.com/list/cisco.html
Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]