Mailing List Archive

oscillating config
Hi!

...It seems, this is software defect of CISCO IOS 12.2.19 AS5300

RANCID logs config diff ~~ in every 2..3 hours.


@@ -365,7 +365,7 @@ interface Dialer7
...
- fair-queue 64 16 0
+ fair-queue

@@ -365,7 +365,7 @@ interface Dialer7
...
- fair-queue
+ fair-queue 64 16 0


Is there any way to prevent this ?


--
-=AV=-
oscillating config [ In reply to ]
Tue, Jan 13, 2004 at 04:17:05PM +0300, Alexander Voropay:
> Hi!
>
> ...It seems, this is software defect of CISCO IOS 12.2.19 AS5300
>
> RANCID logs config diff ~~ in every 2..3 hours.
>
>
> @@ -365,7 +365,7 @@ interface Dialer7
> ...
> - fair-queue 64 16 0
> + fair-queue
>
> @@ -365,7 +365,7 @@ interface Dialer7
> ...
> - fair-queue
> + fair-queue 64 16 0
>
>
> Is there any way to prevent this ?

only w/ a hack or upgrading to some IOS that doesnt do that, at the moment.
something like

/^ fair-queue/ && next;

added to the WriteTerm function after the first set of matches ought to
do it.
oscillating config [ In reply to ]
john heasley <heas at shrubbery.net> wrote:

>> ...It seems, this is software defect of CISCO IOS 12.2.19 AS5300
>> RANCID logs config diff ~~ in every 2..3 hours.
>> @@ -365,7 +365,7 @@ interface Dialer7
>> ...
>> - fair-queue 64 16 0
>> + fair-queue

>only w/ a hack or upgrading to some IOS that doesnt do that, at the
moment. something like
>
> /^ fair-queue/ && next;
>
>added to the WriteTerm function after the first set of matches ought to
do it.

The "fair-queue 64 16 0" is a default CISCO setting. I did "fair-queue
65 16 0"
(non-default), it works without oscillation now...


--
-=AV=-