Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Computing > Cisco > Cisco Configuration

Reply
Thread Tools

Cisco Configuration

 
 
jkaiser
Guest
Posts: n/a
 
      12-25-2007
I am in dire need of some assistance with my cisco configurations...
We use older X.25 switches in our network. We have a couple hundred
of these x.25 devices connected to cisco 2600 routers via a serial
cable. The ethernet is connected to an airlink raven which provides
internet via an external CDMA device. We have noticed that on many
occasions when our RAVEN loses cellular connectivity we switch to dial
and are unable to figure out how to get it to gracefully switch back
to internet on its own. In order for the site to go on dial, x.25
goes down and trys the second patch for the x.25 call which as you see
is over the async card. Can anyone tell me what can possibly be done
to make this a manual fail back? Also, if anyone can take a look at
the config with other recommendations you may have. I appreciate your
help!!!

John

! Last configuration change at 19:09:02 est Mon Dec 24 2007
! NVRAM config last updated at 11:12:06 est Mon Dec 17 2007
!
version 12.3
service timestamps debug datetime localtime
service timestamps log datetime localtime
service password-encryption
!
hostname XXXXX
!
boot-start-marker
boot-end-marker
!
logging buffered 10000 debugging
no logging console
clock timezone est -5
no aaa new-model
ip subnet-zero
ip cef
!
no ip domain lookup
!
x25 routing
!
interface Ethernet0/0
ip address dhcp
half-duplex
!
interface Serial1/0
description X25 connection for X.25 Base Station
no ip address
encapsulation x25 dce
no ip mroute-cache
x25 htc 8
x25 win 7
x25 wout 7
x25 ips 512
x25 ops 512
clock rate 19200
no cdp enable
!
interface Async1
ip address 10.40.245.23 255.255.240.0
encapsulation ppp
dialer in-band
dialer order round-robin
dialer idle-timeout 60
dialer wait-for-carrier-time 20
dialer string 1XXXXXXXXXX
dialer string 1XXXXXXXXXX
dialer-group 1
async default routing
async mode dedicated
ppp authentication chap
ppp chap hostname XXXX
ppp chap password XXXX
!
router eigrp 1
passive-interface Ethernet0/0
network 10.0.0.0
no auto-summary
eigrp stub connected
!
ip classless
ip route 10.0.0.0 255.0.0.0 Async1
ip route 0.0.0.0 0.0.0.0 dhcp
ip http server
!
access-list 101 deny eigrp any any
access-list 101 deny udp any any
access-list 101 permit ip any any
dialer-list 1 protocol ip list 101
x25 route 100189001 xot 64.187.209.9 10.60.52.62 xot-keepalive-period
10 xot-keepalive-tries 3
 
Reply With Quote
 
 
 
 
Thrill5
Guest
Posts: n/a
 
      12-26-2007
Change "ip route 10.0.0.0 255.0.0.0 Async1" to "ip route 0.0.0.0 0.0.0.0
Async1 250"

This is known as a "floating static" because you have now put a "250" metric
on it. It will only be used if the other default route is down. Not sure
if this will fix you problem, as I am not to familiar with X.25 and not how
your routing is engineered. I changed the route to a default on the static
because in order for a floating static to work, there must be the exact
route (with a better metric) in the routing table during normal operation.
If you are receiving a "10.0.0.0/8" route via EIGRP when the X.25 is
working, use "ip route 10.0.0.0 255.0.0.0 Async1 250" instead. I hope this
at least points you in the right direction.

As an FYI, my company is also using Ravens with CDMA, except that in our
configuration we use PPP on the serial link to the Raven, and VPN tunnels
that terminate on frame-relay connection. This configuration is much
simpler to configure and troubleshoot.


"jkaiser" <> wrote in message
news:2e9ccf7a-50df-4963-9809-...
>I am in dire need of some assistance with my cisco configurations...
> We use older X.25 switches in our network. We have a couple hundred
> of these x.25 devices connected to cisco 2600 routers via a serial
> cable. The ethernet is connected to an airlink raven which provides
> internet via an external CDMA device. We have noticed that on many
> occasions when our RAVEN loses cellular connectivity we switch to dial
> and are unable to figure out how to get it to gracefully switch back
> to internet on its own. In order for the site to go on dial, x.25
> goes down and trys the second patch for the x.25 call which as you see
> is over the async card. Can anyone tell me what can possibly be done
> to make this a manual fail back? Also, if anyone can take a look at
> the config with other recommendations you may have. I appreciate your
> help!!!
>
> John
>
> ! Last configuration change at 19:09:02 est Mon Dec 24 2007
> ! NVRAM config last updated at 11:12:06 est Mon Dec 17 2007
> !
> version 12.3
> service timestamps debug datetime localtime
> service timestamps log datetime localtime
> service password-encryption
> !
> hostname XXXXX
> !
> boot-start-marker
> boot-end-marker
> !
> logging buffered 10000 debugging
> no logging console
> clock timezone est -5
> no aaa new-model
> ip subnet-zero
> ip cef
> !
> no ip domain lookup
> !
> x25 routing
> !
> interface Ethernet0/0
> ip address dhcp
> half-duplex
> !
> interface Serial1/0
> description X25 connection for X.25 Base Station
> no ip address
> encapsulation x25 dce
> no ip mroute-cache
> x25 htc 8
> x25 win 7
> x25 wout 7
> x25 ips 512
> x25 ops 512
> clock rate 19200
> no cdp enable
> !
> interface Async1
> ip address 10.40.245.23 255.255.240.0
> encapsulation ppp
> dialer in-band
> dialer order round-robin
> dialer idle-timeout 60
> dialer wait-for-carrier-time 20
> dialer string 1XXXXXXXXXX
> dialer string 1XXXXXXXXXX
> dialer-group 1
> async default routing
> async mode dedicated
> ppp authentication chap
> ppp chap hostname XXXX
> ppp chap password XXXX
> !
> router eigrp 1
> passive-interface Ethernet0/0
> network 10.0.0.0
> no auto-summary
> eigrp stub connected
> !
> ip classless
> ip route 10.0.0.0 255.0.0.0 Async1
> ip route 0.0.0.0 0.0.0.0 dhcp
> ip http server
> !
> access-list 101 deny eigrp any any
> access-list 101 deny udp any any
> access-list 101 permit ip any any
> dialer-list 1 protocol ip list 101
> x25 route 100189001 xot 64.187.209.9 10.60.52.62 xot-keepalive-period
> 10 xot-keepalive-tries 3



 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Need help with Cisco 3800 + Cisco ASA 5540 configuration ejohnson1341@gmail.com Cisco 2 09-29-2007 01:13 AM
Enterprise Library exception: The configuration section securityCryptographyConfiguration is not defined in the current configuration for the AppDomain. Jess Chadwick ASP .Net 1 09-21-2006 09:18 AM
Configuration reverted to previous configuration after power loss ward@sciinc.com Cisco 0 03-03-2006 04:14 PM
Microsoft Configuration Block and Enterprise library configuration tool Mark ASP .Net 0 02-15-2006 11:27 PM
PEAP Configuration Woes - PEAP configuration help jester Cisco 1 12-20-2005 02:04 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57