Re: Can I picks a PIX?

2000-10-14 Thread Evgeny Babanin

Dear "Cthulu, CCIE Candidate""

a) Correct me if I'm wrong: You can not make "conventional" router's  to
pick up DHCP address on the interface, though you can do this with DSL
routers and latest flavours of IOS for this routers

b) If it was possible - how are you going to configure interfaces if you
erased nvram? In all ciscos I saw if you erase config and then reload a
router, it comes up with all interfaces shutted down - so they can not pick
up anything from the network.

much better option is to save the config you want at start up in the flash
as init.conf for example and copy it in to start-up and reload router every
time you want go to the initial step.

it is shame, they do not ask such things on the CCIE written, isn't it? :-))


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



Re: Solaris on Intel platform

2000-07-05 Thread Evgeny Babanin

Lilian,

I think you can find better advices in groups dedicated to SUN products.
This group is dedicated to Cisco rather than SUN

Anyway,

Can't help you with Solaris 8, but I used Solaris 2.6 on several Intel
machines, it works pretty fine and I liekd the prformance, but hardware was
(and I suspect still is) an isuue- do not worry that much about video
because you can replace native Solaris Xserver with xfree86 - jsit read all
related release documents. Did not have ANY single problem with CPU or
motherboard, but better use motherboard from the manufacturer listed in
Hardware compatability list.
An again try SOlaris x86 related newsgroups chances are that someone already
tried things you are going to do

RRGRDS,
Evgeny


"lilian feng" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Hi,
>
> Has anyone tried to install Solaris on PC?
>
> I want to buy a Solaris 8 media kit form Sun. When I checked the HCL from
Sun
> web site, I found it has strict requirements for hardware, only VGA cards,
> sound cards..., but also motherboard with CPU, which I have not seen in
Linux.
>
>
> Do I need to meet all the requirements?
>
> Thanks
>
> Lilian
>
> 
> Get free email and a permanent address at http://www.netaddress.com/?N=1
>
> ___
> UPDATED Posting Guidelines: http://www.groupstudy.com/list/guide.html
> FAQ, list archives, and subscription info: http://www.groupstudy.com
> Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]
> ---


___
UPDATED Posting Guidelines: http://www.groupstudy.com/list/guide.html
FAQ, list archives, and subscription info: http://www.groupstudy.com
Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]



Re: Wild Card Mask Puzzle SOLUTION!!!!!!

2000-07-04 Thread Evgeny Babanin

Michael,

Thanks a lto for mentioning my name, but
I've just looked through follow-ups and found out that John Neiberger was
the first to give correct answer.

RGRDS,
EVgeny

--
***
Please DO NOT send replies just directly to me, post them to the Newsgroup
as well

***
""Michael L. Williams"" <[EMAIL PROTECTED]> wrote in message
8jt2kl$2s4$[EMAIL PROTECTED]">news:8jt2kl$2s4$[EMAIL PROTECTED]...
> Okay.  There have been alot of responses to this.  And alot of people
> wanting the answer.
>
> SO, let me mention Evgeny Babanin and Chuck Hwang, since they gave correct
> responses to the question!  Congrats!!
>
> Now, I'll everyone's agony... =)
>
> The answer is:
>
> access-list 10 permit A.B.C.1 255.255.255.24
>
> Here's the explanation:
>
> Remeber in the wildcard mask, for a given bit:
> 0 = must match the same bit in the source address given
> 1 = doesn't matter what it is
>
> I will use A.B.C.1 for the source address in the access-list command since
> (as we see below) the least significant should always be 1.  Below I have
> the binary version of our address 0.0.0.1:
>
> aaa aaa.bbb bbb.ccc ccc. 0001 <- least significant bit = 1, thus
> the decimal value of that octect is 1.  This is crutial because this is
the
> only non-zero bit in the source address.  We'll use that later.
>
> Limiting ourselves to looking at the last octet of the target IPs we want
to
> let through,
>  0001 = 1
>  1001 = 9
> 0001 0001 = 17
> 0001 1001 = 25
> ---
> So since the last bit ( xxx1) has to = 1 (like in the source address),
> it's corresponding wildcard bit must = 0
>
> so we know the wildcard mask so far has to be  xxx0  (last octect
only)
>
> we also know that bits (from right to left) 2, 3, 6, 7, 8 HAVE to be = 0
(so
> they match the zeros in the source address), so therefore their
> corresponding bits in the wildcard mask must be = 0. So now we have:
>
> 000x x000 (last octect only)
>
> When looking at bit 4 and 5 we see that they could be either 0 or 1.  Any
of
> the
> four combinations of 0 and 1 give us the four target addresses,  so
> their bits in the wildcard mask are = 1.  So our final wildcard mask will
be
>
> 0001 1000 (last octect only) = 24 (decimal)
>
> So.. the following command is the correct answer:
>
> access-list 10 permit   A.B.C.1   255.255.255.24
>
> It's a tough question,.. That's why it's fun =)  Thanks to everyone
that
> participated!
>
> Mike W.
>
> PS:  Alrighty Chuck. we're ready for the next question =)
>
> > Puzzle posed by Mike Williams:
> >
> > Make a (single line) access-list that will only allow traffic from
> addresses
> > matching the following model:
> >
> > x.x.x.1
> > x.x.x.9
> > x.x.x.17
> > x.x.x.25
> >
> > It's along the same lines as the question you posed, but a little more
> > challenging since you only want those 4 addresses to pass through.
=)
>
>
>
> ___
> UPDATED Posting Guidelines: http://www.groupstudy.com/list/guide.html
> FAQ, list archives, and subscription info: http://www.groupstudy.com
> Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]
> ---


___
UPDATED Posting Guidelines: http://www.groupstudy.com/list/guide.html
FAQ, list archives, and subscription info: http://www.groupstudy.com
Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]



Re: Wild Card Mask Puzzle - fun in the sun

2000-07-04 Thread Evgeny Babanin


x.x.x.1 0.0.0.230 answer would be correct for the PIX firewall (they use
reverse wildcard mask - match 1, do_not_care 0)
but in router case should not this be x.x.x.1 0.0.0.24?

if we put this in binary: (forget about first three bytes )
   8 7 6 5 4 3 2 1

  1 - 0 0 0 0 0 0 0 1
  9 - 0 0 0 0 1 0 0 1
17 - 0 0 0 1 0 0 0 1
25 - 0 0 0 1 1 0 0 1

it gives us the following - we want 1 in the position 1.  0's in 8,7,6,3,2
and do_not_care in 5 and 4. For the access- lists on Cisco routers 0 is
match, 1 is do_not_care so wildcard mask should be
0 0 0 1 1 0 0 0 which gives us 24

x.x.x.1 0.0.0.24 sutisfies this condition

RGRDS,
Evgeny

--
***
Please DO NOT send replyes just directly to me, post them to the Newsgroup
as well

***


""Nigel Taylor"" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Well, in light of everyone jumping in there I taught I might do the same.
> Here what fell out of this simple mind.
>
> access-list xx permit x.x.x.1 0.0.0.230  -  ask  me how  I got this?
>
> Man, I was thinking now I'm all screwed up... I can't wait to see the
> answer, could my answer be right...
>
> Chuck/Mike  "free the rest of us" please...
>
> Nigel.
>
>
> - Original Message -
> From: Chuck Larrieu <[EMAIL PROTECTED]>
> To: John Neiberger <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
> Sent: Tuesday, July 04, 2000 5:29 AM
> Subject: RE: Wild Card Mask Puzzle - fun in the sun
>
>
> > I'm not human tonight.
> >
> > A paraphrase from Marlowe's soliloquy in The Little Sister, by Raymond
> > Chandler.
> >
> > This, by the way, is why it takes me so damn long to master these Cisco
> > things. I keep getting distracted by my liberal arts educational
> background.
> >
> > Chuck
> >
> > PS and I am not commenting on right or wrong because 1)  let's see some
> more
> > response and 2) it's not my puzzle anyway. Mike otta get the credit and
> have
> > the fun of judging. :->
> >
> >
> > -Original Message-
> > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of
> John
> > Neiberger
> > Sent: Monday, July 03, 2000 8:59 PM
> > To: [EMAIL PROTECTED]
> > Subject: Re: Wild Card Mask Puzzle - fun in the sun
> >
> > Ok, I'll bite.  My official guess is:
> >
> > access-list xx permit ip x.x.x.1 0.0.0.24
> >
> > If I'm correct, I'll post how I did it later...right now I'm still
> > wondering... :-)
> >
> > Chuck, you're mean...just plain mean!
> >
> > Good luck all!
> >
> > John Neiberger
> >
> > >
> > >
> > >  Come on, everyone. Where are you folks on this one? All you CCNA
> > candidates.
> > >  Show us your stuff. All you ACRC students - give it a try. I can't
> > believe
> > >  we haven't had a go round about this one.
> > >
> > >  For the record, I have already filed my answer privately. It is a fun
> > >  puzzle, and one that will demonstrate your thinking skills.
> > >
> > >  Who knows the answer? How do you know you're right
> > >
> > >  Chuck
> > >
> > >
> > >  Puzzle posed by Mike Williams:
> > >
> > >  Make a (single line) access-list that will only allow traffic from
> > addresses
> > >  matching the following model:
> > >
> > >  x.x.x.1
> > >  x.x.x.9
> > >  x.x.x.17
> > >  x.x.x.25
> > >
> > >  It's along the same lines as the question you posed, but a little
more
> > >  challenging since you only want those 4 addresses to pass
through.
> > =)
> > >
> > >
> > >
> > >  -Original Message-
> > >  From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf
Of
> > >  Michael L. Williams
> > >  Sent: Wednesday, June 28, 2000 7:27 PM
> > >  To: [EMAIL PROTECTED]
> > >  Subject: Re: ACL Question
> > >
> > >  My newsgroup reader "claims" to have posted my response to this when
it
> > was
> > >  first asked.  And for the record, I did have the correct answer and
> > >  explanation too =P.  So instead of posting yet another explanation on
> how
> > to
> > >  filter odd/even IP addresses, I'll post a similar but different
> question:
> > >
> > >  Make a (single line) access-list that will only allow traffic from
> > addresses
> > >  matching the following model:
> > >
> > >  x.x.x.1
> > >  x.x.x.9
> > >  x.x.x.17
> > >  x.x.x.25
> > >
> > >  It's along the same lines as the question you posed, but a little
more
> > >  challenging since you only want those 4 addresses to pass
through.
> > =)
> > >
> > >  If you want the answer without me posting it to the whole group (to
> keep
> > >  things fun), feel free to e-mail me and I'll reply via e-mail with
the
> > >  answer.
> > >
> > >  Mike W.
> > >
> > >
> > >  "Raymond Everson (Rainman)" <[EMAIL PROTECTED]> wrote in message
> > >  [EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> > >  > *Still* haven't figured this one out:
> > >  >
> > >  > Create an IP ACL, in as few lines as possible of course, which
> permits
> > >  > only even-numbered IP addresses.
> > >  >
> > >  > Ideas?
> > >  >
> > >  > Rainman
> > >  >
> > >  > ___
> > >  > UPDATED Posting Guideline

Re: Static Routing or Route Maps

2000-07-04 Thread Evgeny Babanin

Cormac,

You are absolutely correct (but Bal [EMAIL PROTECTED] was the first to
point this out)
Unfortunately I was wrong saying that HSRP can not track link failures (will
read documentation more thourouglly:-),(and I 100 % agree with you that to
run some kind of routing protocol to your ISP(BGP for example) is a better
idea than to use statics, though it may involve series of talks with ISP
guys.
Routing protocol can help to eliminate the other issue with links (if
they are FrameRelay) - if pvc fails somewhere inside FR cloud you local
switch may not report failure - so for the HSRP link will look like
functional.
 Roting protocol will eventually (recieving no updates/hellos etc) remove
route from the routing table.

RGRDS,
Evgeny


- Original Message -
From: "Cormac Long" <[EMAIL PROTECTED]>
To: "Evgeny Babanin" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
Sent: Monday, July 03, 2000 6:10 PM
Subject: Re: Static Routing or Route Maps


> There are a couple of issues to clarify here:
>
> 1. If the 2 routers are not on the same LAN, HSRP is
> irrelevant (as has been pointed out below).
> 2. If on the same LAN HSRP can work well because it IS
> capable of detecting WAN link failure (you can
> configure it to "track" the WAN interfaces). You can
> also use the preempt feature to ensure that the
> preferable link will always get used if it is
> available.
> 3. Are these static routes being redistributed into a
> dynamic routing protocol? If they are then you
> configure the redistribution metric to bias one over
> the other.
> 4. In any case running a dynamic routing protocol to
> an ISP is usually not a good idea (security, plus
> co-ordination with the ISP).
>
> Regards,
>
> Cormac Long CCSI#21600
> http://www.cormaclong.com
>
>
>
> --- Evgeny Babanin <[EMAIL PROTECTED]> wrote:
> > The only problem with HSRP is that it can not
> > detect link failure,as its purpose is to create
> > router hardware redundancy. Plus, if routers are not
> > on the same Ethernet segment HSRP will not work.
> > So the configuration can look like that:
> > a) routers are on the same Ethernet segment
> >   HSRP + floating static routes(or
> > any IGP between two routers - RIP for example)
> > HSRP Ip address is the default
> > gateway for the internal routers/workstations
> > Every router has statically
> > defined default pointing to the ISP and other
> > default with greater AD pointing to the neighbor
> > REAL (Not HSRP) address.
> > In this case if the router itself fails - HSRP
> > will take care of the traffic, if link fails -
> > router will insert floating static route in to the
> > routeing table an forward traffic to another router.
> >
> > b) routers are in different  locations - No HSRP, so
> > no hardware redundancy
> > only floating static routes.
> >
> >
> > RGRDS,
> > Evgeny
> > ""Michael L. Williams"" <[EMAIL PROTECTED]> wrote
> > in message 8joa3u$mgm$[EMAIL PROTECTED]">news:8joa3u$mgm$[EMAIL PROTECTED]...
> >   It seems to me using HSRP would be the best thing
> > to do.   That way, not only do the two routers act
> > as redundant links for each other, they can load
> > balance across them.
> >
> >   Mike W.
> > "Debbie Westall" <[EMAIL PROTECTED]> wrote in
> > message
> > 010b01bfe2bf$292b2eb0$[EMAIL PROTECTED]">news:010b01bfe2bf$292b2eb0$[EMAIL PROTECTED]...
> > Greetings,
> >
> > I have a customer that has two routers, each
> > with links to ISPs. The links are statically routed.
> > Using default routes in each router. They would like
> > to have one link switch over to the other if one
> > fails and when it comes up switch back. Is there a
> > way to do this using static routing still (maybe
> > floating static routes) or can I use route-maps OR
> > will I have to configure a routing protocol?
> >
> > Thank you for your assistance.
> >
> >
> > Debbie Westall   Conxion
> > Corporation
> > Manager, Network Support 4201 Burton Drive
> > Voice: (408) 566-8534  Santa Clara, CA
> > 95054-1512
> > Pager: (408) 407-2917  Email:
> > [EMAIL PROTECTED]
> >***
> >
> >
>
>
> =
> http://www.cormaclong.com
>
> __
> Do You Yahoo!?
> Kick off your party with Yahoo! Invites.
> http://invites.yahoo.com/
>

___
UPDATED Posting Guidelines: http://www.groupstudy.com/list/guide.html
FAQ, list archives, and subscription info: http://www.groupstudy.com
Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]



Re: Need help

2000-07-04 Thread Evgeny Babanin


There are some here:

http://www.cisco.com/univercd/cc/td/doc/product/software/ios121/121newft/121
t/121t3/dtpri_ni.htm#xtocid59719

I did not try them myself though ans would be glad to know if this works :-)

RGRDS,
Evgeny
- Original Message -
From: "AUX0" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
Sent: Tuesday, July 04, 2000 2:07 AM
Subject: Re: Need help


> Again, I have heard rumors but have yet to see it. Do you have any config
> examples?
>
>
>
> Evgeny Babanin <[EMAIL PROTECTED]> wrote in message
> 8jppgf$qu4$[EMAIL PROTECTED]">news:8jppgf$qu4$[EMAIL PROTECTED]...
> > Network Side PRI SIgnalling first was introduced in 12.1(2)XH version of
> > IOS,
> >
> >
> > RGRDS,
> > Evgeny
> >
> > "Chris Larson" <[EMAIL PROTECTED]> wrote in message
> > 009AE8FD8584D3119A2E0008C7F4A84929D2@WEBSERVER">news:009AE8FD8584D3119A2E0008C7F4A84929D2@WEBSERVER...
> > > I had heard rumors about this, but have never heard of anyone doing
it.
> > >
> > > I tried this on my 3640 running 12.0(7) and there is no ISDN network
> > > command. Maybe you need enterprise IOS (I am running IP Plus IPSEC).
> There
> > > is a way to set TEI statically, but I do not think that would be
> > sufficient.
> > > I did not follow through with a complete config.
> > >
> > > -Original Message-
> > > From: K Sacca [mailto:[EMAIL PROTECTED]]
> > > Sent: Friday, June 30, 2000 4:54 PM
> > > To: Daniel Cotts; '[EMAIL PROTECTED]'; '[EMAIL PROTECTED]'
> > > Subject: RE: Need help
> > >
> > >
> > > Try the following and see if it works.  I was provided
> > > this information by a colleague.
> > >
> > > Are you trying to set up a back-to-back connection
> > > using ISDN ? If
> > > that's the case, on the peer serial0:23 interace, you
> > > need to issue the
> > > command ISDN network. This simulates the network
> > > (switch) side of the
> > > ISDN connection.
> > >
> > > You can verify that by doing 'show isdn status' and it
> > > should say
> > > '**network side configuration'. Be careful with clock
> > > sources tho.
> > > Generally I make the side which is acting as the
> > > network use the
> > > internal clock. This can be done by doing 'clock
> > > source internal' on the
> > > t1 controller
> > >
> > > Regards Kamoto
> > >
> > >
> > > --- Daniel Cotts <[EMAIL PROTECTED]> wrote:
> > > > First you need two routers with an ISDN BRI
> > > > interface. Note some have a U
> > > > interface for USA connections while others have an
> > > > S/T interface that is
> > > > used in the rest of the world. Note that a NT-1
> > > > adapter converts the S/T on
> > > > the router to interact with the U provided by the
> > > > Telco.
> > > > To connect them you must either have the Telco
> > > > provide ISDN service or
> > > > purchase an ISDN simulator. Two manufacturers of
> > > > simulators are:
> > > > 1) Arca Technologies - call Dean Coleman
> > > > 800-888-1978 ext 252 also
> > > > www.arca.com  Lotsa toys!
> > > > 2)Teltone check out www.teltone.com or talk to
> > > > communications distributors
> > > > such as Graybar or Anixter, etc. Also Specialized
> > > > Products 800-866-5353.
> > > > Good service but most likely not the lowest price.
> > > > Simulators are expensive.
> > > >
> > > > > -Original Message-
> > > > > From: [EMAIL PROTECTED]
> > > > [mailto:[EMAIL PROTECTED]]
> > > > > Sent: Thursday, June 29, 2000 8:23 PM
> > > > > To: [EMAIL PROTECTED]
> > > > > Subject: Need help
> > > > >
> > > > >
> > > > > Any Ideas on how can I configure a lab network to
> > > > simulate
> > > > > ISDN can a cisco
> > > > > router do this job if yes which router.
> > > > >
> > > > > Regards,
> > > > > Amir
> > > > >
> > > > > ___
> > > > > UPDATED Posting Guidelines:
> > > > http://www.groupstudy.com/list/guide.html
> > > > > FAQ, list archives, and subscription info:
> > > 

Re: file can't be deleted on 3640

2000-07-03 Thread Evgeny Babanin

When you just issue "delete file" command -IOS does not actually delete
file - it marks file as deleted and hides its name (see example below -
deleted file test_file_to_delete) , so you can undelete it later,
These hidden files can consume quite a lot of memory if you do not watch for
them.
The other problem that if you copy another file into the flash, it is being
written AFTER last byte of the "deleted" file, so you end up having "black
holes" in your flash.
The only way (at least the only way I know about with 5300 and 3600) to get
rid of them is to "erase flash".

you can see your hidden files with "dir /all"

cwas-access#dir
Directory of flash:/
  1  -rw- 7575284c5300-is-mz.121-1a.T1.bin
  2  -rw-  392241mica-modem-pw.2.7.1.0.bin
16777216 bytes total (8799356 bytes free)
cwas-access#dir /all
Directory of flash:/
  1  -rw- 7575284c5300-is-mz.121-1a.T1.bin
  2  -rw-  392241mica-modem-pw.2.7.1.0.bin
  3  -rw-   10137[test_file_to_delete]

16777216 bytes total (8799356 bytes free)

RGRDS,
Evgeny
""Palis Michael"" <[EMAIL PROTECTED]> wrote in message
00e901bfe4de$3e65e100$[EMAIL PROTECTED]">news:00e901bfe4de$3e65e100$[EMAIL PROTECTED]...
> I tried it on my AS5300 and it works
>
> I issued the command delete flash: and the file was deleted
> without any problem
>
>
> - Original Message -
> From: Evgeny Babanin <[EMAIL PROTECTED]>
> Newsgroups: groupstudy.cisco
> To: <[EMAIL PROTECTED]>
> Sent: Monday, July 03, 2000 1:48 PM
> Subject: Re: file can't be deleted on 3640
>
>
> > I had the same problem (btw 5300 is the same)- You have to erase flash
> > before copying new file.
> >
> > RGRDS,
> > Evgeny
> > "Jim Bond" <[EMAIL PROTECTED]> wrote in message
> > [EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> > > Hello,
> > >
> > > I copied IOS file to flash memory but got checksum
> > > error. I wanted to delete the file but failed. I used
> > > the command "delete flash:x" and got "no such file
> > > or directory" but "show flash" the file is there.
> > >
> > > How can I delete the bad flash?
> > >
> > > Thanks in advance.
> > >
> > >
> > > Jim
> > >
> > > __
> > > Do You Yahoo!?
> > > Kick off your party with Yahoo! Invites.
> > > http://invites.yahoo.com/
> > >
> > > ___
> > > UPDATED Posting Guidelines: http://www.groupstudy.com/list/guide.html
> > > FAQ, list archives, and subscription info: http://www.groupstudy.com
> > > Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]
> > > ---
> >
> >
> > ___
> > UPDATED Posting Guidelines: http://www.groupstudy.com/list/guide.html
> > FAQ, list archives, and subscription info: http://www.groupstudy.com
> > Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]
> >
>
> ___
> UPDATED Posting Guidelines: http://www.groupstudy.com/list/guide.html
> FAQ, list archives, and subscription info: http://www.groupstudy.com
> Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]
> ---


___
UPDATED Posting Guidelines: http://www.groupstudy.com/list/guide.html
FAQ, list archives, and subscription info: http://www.groupstudy.com
Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]



Re: Static Routing or Route Maps

2000-07-03 Thread Evgeny Babanin



    The only problem with HSRP is 
that it can not detect link failure,as its purpose is to create router hardware 
redundancy. Plus, if routers are not on the same Ethernet segment HSRP will not 
work.
So the configuration can look like 
that:
a) routers are on the same Ethernet segment 

      
        HSRP + floating static routes(or any IGP 
between two routers - RIP for example) 
        
            HSRP Ip address is the 
default gateway for the internal routers/workstations
        
            Every router has 
statically defined default pointing to the ISP and other default with greater AD 
pointing to the neighbor REAL (Not HSRP) address.
    In this case if the router 
itself fails - HSRP will take care of the traffic, if link fails - router will 
insert floating static route in to the routeing table an forward traffic to 
another router.
 
b) routers are in different  locations - No 
HSRP, so no hardware redundancy
only floating static routes.
 
 
RGRDS,
Evgeny
""Michael L. Williams"" <[EMAIL PROTECTED]> wrote in message 8joa3u$mgm$[EMAIL PROTECTED]">news:8joa3u$mgm$[EMAIL PROTECTED]...

  It seems to me using HSRP would be the best thing 
  to do.   That way, not only do the two routers act as redundant 
  links for each other, they can load balance across them.
   
  Mike W.
  
"Debbie Westall" <[EMAIL PROTECTED]> wrote in message 
010b01bfe2bf$292b2eb0$[EMAIL PROTECTED]">news:010b01bfe2bf$292b2eb0$[EMAIL PROTECTED]...
Greetings,
 
I have a customer that has two routers, each 
with links to ISPs. The links are statically routed. Using default routes in 
each router. They would like to have one link switch over to the other if 
one fails and when it comes up switch back. Is there a way to do this using 
static routing still (maybe floating static routes) or can I use route-maps 
OR will I have to configure a routing protocol?
 
Thank you for your assistance.
 
   
Debbie 
Westall   
Conxion CorporationManager, Network Support 4201 
Burton DriveVoice: (408) 
566-8534  Santa Clara, 
CA 95054-1512Pager: (408) 
407-2917  Email:  
[EMAIL PROTECTED]   
***


Re: file can't be deleted on 3640

2000-07-03 Thread Evgeny Babanin

I had the same problem (btw 5300 is the same)- You have to erase flash
before copying new file.

RGRDS,
Evgeny
"Jim Bond" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Hello,
>
> I copied IOS file to flash memory but got checksum
> error. I wanted to delete the file but failed. I used
> the command "delete flash:x" and got "no such file
> or directory" but "show flash" the file is there.
>
> How can I delete the bad flash?
>
> Thanks in advance.
>
>
> Jim
>
> __
> Do You Yahoo!?
> Kick off your party with Yahoo! Invites.
> http://invites.yahoo.com/
>
> ___
> UPDATED Posting Guidelines: http://www.groupstudy.com/list/guide.html
> FAQ, list archives, and subscription info: http://www.groupstudy.com
> Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]
> ---


___
UPDATED Posting Guidelines: http://www.groupstudy.com/list/guide.html
FAQ, list archives, and subscription info: http://www.groupstudy.com
Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]



Re: How far by self study?

2000-07-03 Thread Evgeny Babanin

I did CCNP and CCDP by self study in 5 weeks (exam every Sturday, and 2
exams one weekend).
Used : Ciscopress Books + Todd's "Exam Notes" and CCO

RGRDS,
Evgeny

""Lou Nelson"" <[EMAIL PROTECTED]> wrote in message
010801bfe375$27c71320$[EMAIL PROTECTED]">news:010801bfe375$27c71320$[EMAIL PROTECTED]...
> a  WOW...  Impressive..  I mean I am impressed  You should get a
job
> though...  and if you tell me you did this while working a full time
job...
> then I quit 
>
> Lou Nelson, CCNP, CCDA
>
>
> - Original Message -
> From: "Aaron Prather" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Thursday, June 29, 2000 12:09 PM
> Subject: Re: How far by self study?
>
>
> > I got the following certs all by self study:
> >
> > MCSE
> > MCP+I
> > MasterCNE
> > CNE5
> > CCNP+Voice
> > CCDP
> > Network+
> > CCIE written test (hard test)
> >
> > All together that is almost 30 tests and no official courses, only books
> > (and hands on.)
> >
> > Not bad for a 22 year old eh? :)
> >
> > Aaron
> >
> > ___
> > UPDATED Posting Guidelines: http://www.groupstudy.com/list/guide.html
> > FAQ, list archives, and subscription info: http://www.groupstudy.com
> > Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]
>
> ___
> UPDATED Posting Guidelines: http://www.groupstudy.com/list/guide.html
> FAQ, list archives, and subscription info: http://www.groupstudy.com
> Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]
> ---


___
UPDATED Posting Guidelines: http://www.groupstudy.com/list/guide.html
FAQ, list archives, and subscription info: http://www.groupstudy.com
Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]



Re: Need help

2000-07-03 Thread Evgeny Babanin

Network Side PRI SIgnalling first was introduced in 12.1(2)XH version of
IOS,


RGRDS,
Evgeny

"Chris Larson" <[EMAIL PROTECTED]> wrote in message
009AE8FD8584D3119A2E0008C7F4A84929D2@WEBSERVER">news:009AE8FD8584D3119A2E0008C7F4A84929D2@WEBSERVER...
> I had heard rumors about this, but have never heard of anyone doing it.
>
> I tried this on my 3640 running 12.0(7) and there is no ISDN network
> command. Maybe you need enterprise IOS (I am running IP Plus IPSEC). There
> is a way to set TEI statically, but I do not think that would be
sufficient.
> I did not follow through with a complete config.
>
> -Original Message-
> From: K Sacca [mailto:[EMAIL PROTECTED]]
> Sent: Friday, June 30, 2000 4:54 PM
> To: Daniel Cotts; '[EMAIL PROTECTED]'; '[EMAIL PROTECTED]'
> Subject: RE: Need help
>
>
> Try the following and see if it works.  I was provided
> this information by a colleague.
>
> Are you trying to set up a back-to-back connection
> using ISDN ? If
> that's the case, on the peer serial0:23 interace, you
> need to issue the
> command ISDN network. This simulates the network
> (switch) side of the
> ISDN connection.
>
> You can verify that by doing 'show isdn status' and it
> should say
> '**network side configuration'. Be careful with clock
> sources tho.
> Generally I make the side which is acting as the
> network use the
> internal clock. This can be done by doing 'clock
> source internal' on the
> t1 controller
>
> Regards Kamoto
>
>
> --- Daniel Cotts <[EMAIL PROTECTED]> wrote:
> > First you need two routers with an ISDN BRI
> > interface. Note some have a U
> > interface for USA connections while others have an
> > S/T interface that is
> > used in the rest of the world. Note that a NT-1
> > adapter converts the S/T on
> > the router to interact with the U provided by the
> > Telco.
> > To connect them you must either have the Telco
> > provide ISDN service or
> > purchase an ISDN simulator. Two manufacturers of
> > simulators are:
> > 1) Arca Technologies - call Dean Coleman
> > 800-888-1978 ext 252 also
> > www.arca.com  Lotsa toys!
> > 2)Teltone check out www.teltone.com or talk to
> > communications distributors
> > such as Graybar or Anixter, etc. Also Specialized
> > Products 800-866-5353.
> > Good service but most likely not the lowest price.
> > Simulators are expensive.
> >
> > > -Original Message-
> > > From: [EMAIL PROTECTED]
> > [mailto:[EMAIL PROTECTED]]
> > > Sent: Thursday, June 29, 2000 8:23 PM
> > > To: [EMAIL PROTECTED]
> > > Subject: Need help
> > >
> > >
> > > Any Ideas on how can I configure a lab network to
> > simulate
> > > ISDN can a cisco
> > > router do this job if yes which router.
> > >
> > > Regards,
> > > Amir
> > >
> > > ___
> > > UPDATED Posting Guidelines:
> > http://www.groupstudy.com/list/guide.html
> > > FAQ, list archives, and subscription info:
> > http://www.groupstudy.com
> > > Report misconduct and Nondisclosure violations to
> > [EMAIL PROTECTED]
> > >
> >
> > ___
> > UPDATED Posting Guidelines:
> > http://www.groupstudy.com/list/guide.html
> > FAQ, list archives, and subscription info:
> > http://www.groupstudy.com
> > Report misconduct and Nondisclosure violations to
> [EMAIL PROTECTED]
>
>
> __
> Do You Yahoo!?
> Get Yahoo! Mail - Free email you can access from anywhere!
> http://mail.yahoo.com/
>
> ___
> UPDATED Posting Guidelines: http://www.groupstudy.com/list/guide.html
> FAQ, list archives, and subscription info: http://www.groupstudy.com
> Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]
>
> ___
> UPDATED Posting Guidelines: http://www.groupstudy.com/list/guide.html
> FAQ, list archives, and subscription info: http://www.groupstudy.com
> Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]
> ---


___
UPDATED Posting Guidelines: http://www.groupstudy.com/list/guide.html
FAQ, list archives, and subscription info: http://www.groupstudy.com
Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]



Re: Layer 3 switching vs. Layer 4 switching?

2000-07-03 Thread Evgeny Babanin

Francis,

The process you have described looks more like
"load-balancing"/"load-sharing" - Cisco LocalDirector supports that kind of
traffic management. It seems that Layer4 switches do a bit difeerent thing
(though mosty of them do load-balancing).
We use FoundryNetworks Layer 4 switches in some of our implementatios for
redirecting traffic to the WebFilter/cach engine.
The switch is able to redirect packets on per-tcp-port basis. For example we
have configured ours to redirect all http requests to the WebCache engines
and let everything else through


RGRDS,
Evgeny
""Arigo, Francis"" <[EMAIL PROTECTED]> wrote in message
304545310AD0D3118F9900600897AD9A07743B@GALILEO">news:304545310AD0D3118F9900600897AD9A07743B@GALILEO...
> We use an Alteon Web Switch that uses "layer 4 switching". I don't know if
> the concept is the same for cisco switches, but this is how it works on
the
> Alteon:
>
> Each web site is assigned a "virtual IP" that is not assigned to any host;
> it is defined in the switch config. Then we have the web servers that have
> different real IP addresses. When someone requests a web page, it resolves
> to the "virtual IP" address. Then the Alteon does some processes in Layer
4
> to determine which web server has the least load, then routes the request
to
> that server.
>
> I'm sure that Layer 4 switching is not limited to just web switching, but
I
> haven't seen it used for anything else. Does anyone else have any
experience
> with it?
>
> Hope that helps with the concept,
> Francis Arigo, MCSE, CCNA
> System Administrator
> Classroom Connect
>
> -Original Message-
> From: Ms. Maria [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, June 14, 2000 7:58 PM
> To: [EMAIL PROTECTED]
> Subject: Layer 3 switching vs. Layer 4 switching?
>
>
> Hi,
>
> I was reading Karen Webb book on Building Cisco Multilayer Switched
Networks
>
> (BCMSN). I came across some information on Layer 4 switching that somehow
I
> didn't understand. It says that "Layer 4 switches refer to Layer 3
hardware
> based routing that consider the applications. "
> I understand the Layer 3 switching that is not logical and etc.  But what
> about Layer 4 switching??? What new Switches and Routers are supporting
> Layer 4 (Transport Layer) switching?
> If Layer 3 and Layer 4 switching is same than is there any difference?
> Any responses are welcome on this topic.
>
> Thanks for your time!
>
> Maria
> 
> Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com
>
> ___
> UPDATED Posting Guidelines: http://www.groupstudy.com/list/guide.html
> FAQ, list archives, and subscription info: http://www.groupstudy.com
> Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]
>
> ___
> UPDATED Posting Guidelines: http://www.groupstudy.com/list/guide.html
> FAQ, list archives, and subscription info: http://www.groupstudy.com
> Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]
> ---


___
UPDATED Posting Guidelines: http://www.groupstudy.com/list/guide.html
FAQ, list archives, and subscription info: http://www.groupstudy.com
Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]



Re: How far by self study?

2000-06-29 Thread Evgeny Babanin

I passed  my CCNP and CCDP mostly on self-study (I attended only CID
course)  in 5 weeks ( exam every Saturday ). As far as I saw it is
relatively easy to pass exams if you go to the courses - all you need is to
read training materials carefully - ALL exam questions ARE in these
materials.
I used CiscoPress books Todd lammle ExamNotes and CCO only (and hands-on
of course)

RGRDS,
Evgeny

""Kevin Wigle"" <[EMAIL PROTECTED]> wrote in message
006e01bfdd5e$50a94c80$[EMAIL PROTECTED]">news:006e01bfdd5e$50a94c80$[EMAIL PROTECTED]...
> I just completed my CCNP all through self study.
>
> Since I have the CCDA that means I'm only the CID away from CCDP.
>
> I'm also self studying that.  I plan to write maybe end next week.
>
> It is doable.  I don't know why you'd want to do CID first, like CIT - it
is
> not the easiest of the many exams.  But CID doesn't really build on the
> previous exams like CIT does either.
>
> If you just completed the CCDA recently and you're still in the "design
> thinking" mode then perhaps the CID is not too far a reach.
>
> I did the CMTD, CLSC, ACRC and Foundation 2.0 all on self study in the
last
> 10 weeks.  Very intensive reading and play in my lab.  Mucho support from
my
> wife when I disappeared into my study.
>
> Kevin Wigle
> CCNP, CCDA 
>
> - Original Message -
> From: "Patrick Duggan" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Thursday, 22 June, 2000 07:28
> Subject: How far by self study?
>
>
> > Hi one and all,
> > I am curious to know how many people have got to
CCDP/CCNP
> > by self study alone. the difficulty of this is a like the length of
> string,
> > given enouh time most things are possible. Realistically, without
> attending
> > training courses is it so difficult to get through these exams. I did
the
> > course for CCNA (really good) but self studied CCDA. This i reckon took
me
> > aboout a week of solid study but it came across as a "study friendly
> topic".
> >  I am now looking at the CCDP path and the CID first, it looks really
> bloody
> > difficult! But don't all new topics? So can anybody give advice on the
> > reality of CCDP self study?
> >  thanks
> >  Pat Duggan ccna ccda mcse blah blah
> >
> > ___
> > UPDATED Posting Guidelines: http://www.groupstudy.com/list/guide.html
> > FAQ, list archives, and subscription info: http://www.groupstudy.com
> > Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]
> >
>
> ___
> UPDATED Posting Guidelines: http://www.groupstudy.com/list/guide.html
> FAQ, list archives, and subscription info: http://www.groupstudy.com
> Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]
> ---


___
UPDATED Posting Guidelines: http://www.groupstudy.com/list/guide.html
FAQ, list archives, and subscription info: http://www.groupstudy.com
Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]



Re: 100Mbs to 10Mbs

2000-06-29 Thread Evgeny Babanin

There is no such command "speed 200" - you can get
200Mb if you specify

full-duplex
speed 100

assuming your hub/switch supports 100 full-duplex

RGRDS,
Evgeny
""JEK"" <[EMAIL PROTECTED]> wrote in message
8jc0u9$mrd$[EMAIL PROTECTED]">news:8jc0u9$mrd$[EMAIL PROTECTED]...
> Collin,
>
> Is this a FastEth0 Interface or a Eth0 Interface.If your using one
> of the
> onboard Ethernet Interfaces they are 10Mb half-duplex and 20Mb
> full-duplex
> So this is actually depending on what your using..You can either use
the
> following
>
> speed 10
> speed 20
> speed 100 fas eth
> speed 200 fas eth
>
> duplex full
> duplex half
>
> Joe
> Senior Network/Systems Engineer
> CCNA
>
> Luan Kim <[EMAIL PROTECTED]> wrote in message
> [EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> > collin,
> > try this:
> >
> > conf t
> > int e0
> > speed 10
> > end
> >
> >
> > 
> > Luan T. Kim, MCSE, CCNA*
> > Systems/Network Infrastructure Engineer*
> > MP3.COM, INC.  http://www.mp3.com  *
> > Phone: 858-623-7341Cell:  858-382-3055 *
> > Fax:   858-623-7400Email: [EMAIL PROTECTED] *
> > 
> >
> >
> > On Wed, 21 Jun 2000, Collin Clark wrote:
> >
> > > Is there a way to change E0 on a 2600 router from 100Mbs to 10Mbs?
> > >
> > >
> > > ___
> > > UPDATED Posting Guidelines: http://www.groupstudy.com/list/guide.html
> > > FAQ, list archives, and subscription info: http://www.groupstudy.com
> > > Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]
> > >
> >
> > ___
> > UPDATED Posting Guidelines: http://www.groupstudy.com/list/guide.html
> > FAQ, list archives, and subscription info: http://www.groupstudy.com
> > Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]
> > ---
>
>
> ___
> UPDATED Posting Guidelines: http://www.groupstudy.com/list/guide.html
> FAQ, list archives, and subscription info: http://www.groupstudy.com
> Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]
> ---


___
UPDATED Posting Guidelines: http://www.groupstudy.com/list/guide.html
FAQ, list archives, and subscription info: http://www.groupstudy.com
Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]



Re: RAS Server 5300 Question

2000-06-29 Thread Evgeny Babanin

Phil,
you can try "async mode dedicated" command, this should start ppp/slip
session without giving the usrer a login prompt

RGRDS,
Evgeny

"Phil Barker" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Hi All,
>  I have a RAS Server which is currently live and
> need to make an important change.
> I don't want the users to be able to see a login
> prompt should they telnet/rlogin the RAS IP address.
> This is a security risk at present. And I need to get
> it right first time.
> I'm thinking along the lines of :
>
> transport input none
> no exec
>
> But what I mustn't do is violate the users' ppp
> session
> i.e normal work activity.
>
> Can anyone help me out ?
>
> >> SNIP
> line 1 60
>  session-timeout 5
>  autoselect during-login
>  autoselect ppp
>  modem InOut
>  transport preferred pad telnet rlogin udptn mop v120
> lapb-ta
>  transport input all
>  transport output pad telnet rlogin udptn mop v120
> lapb-ta
> >> END SNIP
>
> 
> Do You Yahoo!?
> Get your free @yahoo.co.uk address at http://mail.yahoo.co.uk
> or your free @yahoo.ie address at http://mail.yahoo.ie
>
> ___
> UPDATED Posting Guidelines: http://www.groupstudy.com/list/guide.html
> FAQ, list archives, and subscription info: http://www.groupstudy.com
> Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]
> ---


___
UPDATED Posting Guidelines: http://www.groupstudy.com/list/guide.html
FAQ, list archives, and subscription info: http://www.groupstudy.com
Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]