Possible CDP bug? Check it out! [7:59929]

2002-12-29 Thread The Long and Winding Road
I've run into this situation while doing some practicing with the 3550s and
some routers

2611--3550---35503640

all ethernet ports are set at full duplex 10 megabit speed.

the 2611 and the 3640 are connected via a vlan tunnel.

everything is working fine, until I turn on l2protocol-tunnel cdp on both
switches, at which point I get the following error:

3640
FrameSwitch#
1w0d: %CDP-4-DUPLEX_MISMATCH: duplex mismatch discovered on Ethernet0/1 (not
hal
f duplex), with Router_14_2611 Ethernet0/1 (half duplex).

2611
1w0d: %CDP-4-DUPLEX_MISMATCH: duplex mismatch discovered on Ethernet0/1 (not
ful
l duplex), with FrameSwitch Ethernet0/1 (full duplex).

as near as I can tell, there are no errors on any of the interfaces. no
collisions, etc. not that I'm sending a lot of traffic during these studies,
but extended pings don't come up with anything either.

relevant configurations for all interfaces. as you can see, everything
agrees all along the line. everyone is set for speed 10 and duplex full. if
I turn off l2protocol-tuinnel cdp on the interfaces, the error messages
disappear. I suspect a bug in CDP, but I'm wondering if I have missed
anything.

2611
---
interface Ethernet0/1
 no ip address
 full-duplex
!
interface Ethernet0/1.1
 encapsulation dot1Q 121
 ip address 122.1.1.1 255.255.255.0
!
interface Ethernet0/1.2
 encapsulation dot1Q 122
 ip address 122.1.2.1 255.255.255.0
!
interface Ethernet0/1.3
 encapsulation dot1Q 123
 ip address 122.1.3.1 255.255.255.0
!
interface Ethernet0/1.4
 encapsulation dot1Q 124
 ip address 122.1.4.1 255.255.255.0
!

Switch_24#sri f0/1
Building configuration...

Current configuration : 200 bytes
!
interface FastEthernet0/1
 switchport access vlan 100
 switchport mode dot1q-tunnel
 no ip address
 duplex full
 speed 10
 l2protocol-tunnel cdp
 no cdp enable
 spanning-tree bpdufilter enable
end

interface FastEthernet0/26
 switchport access vlan 100
 switchport mode dot1q-tunnel
 no ip address
 duplex full
 speed 10
 l2protocol-tunnel cdp
 no cdp enable
 spanning-tree bpdufilter enable
end

3640
---
interface Ethernet0/1
 no ip address
 no ip redirects
 full-duplex
 priority-group 1
!
interface Ethernet0/1.1
 encapsulation dot1Q 121
 ip address 122.1.1.2 255.255.255.0
!
interface Ethernet0/1.2
 encapsulation dot1Q 122
 ip address 122.1.2.2 255.255.255.0
!
interface Ethernet0/1.3
 encapsulation dot1Q 123
 ip address 122.1.3.2 255.255.255.0
!
interface Ethernet0/1.4
 encapsulation dot1Q 124
 ip address 122.1.4.2 255.255.255.0
!

Chuck
--
TANSTAAFL
there ain't no such thing as a free lunch




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



Re: Question RE: OSPF and MTU [7:59902]

2002-12-29 Thread Howard C. Berkowitz
At 8:24 PM + 12/28/02, The Long and Winding Road wrote:
chris kane  wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
   Hi
  
   Happy Holiday to all.
  
   I have some question that I would like to ask the group regarding OSPF,
Fragmentation and MTU working together.


There is a subtlety here, which may be getting hidden by the fact 
that labs and the test facility are mostly or completely routers, 
rather than hosts.  If you think about it, the proper place to limit 
MTU (other than for medium conversion) is not on the router, but on 
the host. Admittedly, not all hosts have the ability to set their MTU.

There is a TAC guide for altering host TCP/IP parameters, but for 
some obscure reason, it's buried under OSI Application Services:
http://www.cisco.com/en/US/tech/tk472/tk473/technologies_tech_note09186a008011a218.shtml

Another subtlety is that there can be very good reasons either to 
have different control and forwarding paths. I need to check into the 
details, but one approach might be to leave the basic MTUs at 1500 or 
so, but limit the MTU on MPLS or other tunnels such that host path 
MTU discovery gets a limit on data MTU size.

A non-scalable (in the core) way to do things would be to policy 
route based on protocol type and associated MTU. Routing traffic gets 
handled differently than data traffic -- that's inherent in the IP 
precedence field, where the top two levels are reserved for control 
traffic.

   
   I have a home lab where OSPF is running find over frame-relay hub and
  spoke
   configuration.  The problem occurs when I tried to fragment traffic so
  that
   Voice traffic will pass through the frame relay incase of congestion/or
   large traffic.  So I decided to implement a Frame Relay Class with
   frame-relay fragment 64 (since most Voice traffic is 64).  Now when I
  enter
   this command, I notice that I lose connection with Spoke router.  I
can't
   even ping.  So I enter the following command MTU 67 under Serial inter
  face
   0/0.  So it works find for pining and tcp connection but I lose OSPF
   Neighbor connection.
  

  In order for OSPF neighbor relationships to form, MTU must match. This
was
  troubling to me a while back when I first started digging into OSPF. OSPF
  has hello packets with certain parameters that must match. The troubling
  part is that MTU is not one of those requirements. Rather, the MTU must
  match issue gets introduced in the OSPF Database Description packet.
  Interface MTU is part of this packet and therefore it is here that you'll
  see your problem arise. I suspect that you are probably seeing everything
  fine at the onset of the neighbor relationship and then when they begin
to
  share their database description packets, it breaks.


this brings up two aspects to me. one of the standard and one of design.

Obviously, in practical terms, the OSPF standard calls for things that may
or may not be practical in real world. So there are hacks, some of which are
define, some of which are proprietary.

virtual link is a defined hack. MTU appears to be proprietary.

the design part come in, IMHO, because of situations like the original
question raises.  Probably a better solution than futzing with MTU is to
initiate QoS features such as CBWFQ or LLQ.




  Set the interface MTUs to match on both sides. This should fix your
problem.
  If not, please re-post and provide debugs from OSPF.

  -chris

  For references see: Doyle TCP/IP Vol 1 page 500 for the OSPF Database
  packet. Also, see Moy OSPF Anatomy of an Internet Routing Protocol,
bottom
  of page 90 where he discusses the 'link-level' difficulties.




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



Query on VOIP [7:59933]

2002-12-29 Thread ss ss
Hello all!!

I am working for a carrier company who uses ip network consisting of Cisco
Routers to transport voice calls.The company deals mainly with pre-paid
calling cards.The customer buys the card and dials a toll free no. to make a
voice call or makes a call thro a dialer program(Installed on the pc) which
sends the calls thro the ip network.When i make a call from a dialer on a pc
which has a dialup connection,then absolutely there is no problem. But when
I make a call from a pc which is on the Home LAN then only the destination
party is able to hear my voice.I am not able to hear their voice.We r not
using any firewalls as of now in the home  but may go for it in the
future.Nat has been configured on our home router and we hv a DSL connection
to the ISP.I am not able to figure out the problem.can someone help me in
identifying the problem

Thanx in advance..

Cheers
ss


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



Re: Boson Exam for CIPT [7:59924]

2002-12-29 Thread Howard C. Berkowitz
At 3:00 AM + 12/29/02, Lan Wong wrote:
Greetings,

I am currently preparing for the CIPT Exam and was wondering if someone can
suggest the best Boson exam to use for this test.

Thanks in advance


For fairness to vendors, may I suggest that the answers to this question

 1. Not be limited to Boson
 2. Not come from the vendor

I'll also throw out a general question. A post not long ago asked to 
compare the labs of one vendor versus another, and I am affiliated 
with one of the two. The question was which is better, and, if I 
responded, I would have said they really can't be compared directly, 
because they are designed for different learning objectives.

Would such a comment from the designer be acceptable?  In other 
words, no direct competitive analysis, but just a statement of the 
design philosophy?  While I think such information would be useful, 
I'd rather not see it posted that trigering a series of mine is 
better than yours posts.




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



Re: Query on VOIP [7:59933]

2002-12-29 Thread Ocsic
Try to build a Tunnel between 2 endpoint


ss ss  wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
 Hello all!!

 I am working for a carrier company who uses ip network consisting of Cisco
 Routers to transport voice calls.The company deals mainly with pre-paid
 calling cards.The customer buys the card and dials a toll free no. to make
a
 voice call or makes a call thro a dialer program(Installed on the pc)
which
 sends the calls thro the ip network.When i make a call from a dialer on a
pc
 which has a dialup connection,then absolutely there is no problem. But
when
 I make a call from a pc which is on the Home LAN then only the destination
 party is able to hear my voice.I am not able to hear their voice.We r not
 using any firewalls as of now in the home  but may go for it in the
 future.Nat has been configured on our home router and we hv a DSL
connection
 to the ISP.I am not able to figure out the problem.can someone help me in
 identifying the problem

 Thanx in advance..

 Cheers
 ss




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



Emergency: Any one have CiscoWorks Voice Manager software ? [7:59935]

2002-12-29 Thread Ocsic
Can share the software to me ? I just use it for testing.

Email: [EMAIL PROTECTED]




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



RE: FR Low Latency Queuing (LLQ) [7:59820]

2002-12-29 Thread Ivan Yip
Hi,

I got the following information during debug.

128K_LL#debug priority
Priority output queueing debugging is on
128K_LL#
3d01h: now 263877385 tokens 16000 pak_size 12032 max_token_limit 16000
3d01h: now 263877750 tokens 16000 pak_size 12032 max_token_limit 16000
3d01h: now 263877754 tokens 4288 pak_size 12032 max_token_limit 16000
3d01h: WFQ: dropping a packet from the priority queue 1
3d01h: now 263878034 tokens 16000 pak_size 512 max_token_limit 16000
3d01h: now 263878307 tokens 16000 pak_size 12032 max_token_limit 16000
3d01h: now 263878764 tokens 16000 pak_size 12032 max_token_limit 16000
3d01h: now 263879040 tokens 16000 pak_size 512 max_token_limit 16000
3d01h: now 263879132 tokens 16000 pak_size 8096 max_token_limit 16000
3d01h: now 263879653 tokens 16000 pak_size 12032 max_token_limit 16000
3d01h: now 263880046 tokens 16000 pak_size 512 max_token_limit 16000
3d01h: now 263880202 tokens 16000 pak_size 12032 max_token_limit 16000
3d01h: now 263880202 tokens 3968 pak_size 12032 max_token_limit 16000
3d01h: WFQ: dropping a packet from the priority queue 1
.

Also, I found there is packet drops on the match ip address. The 'priority
80' is configured but there have a lot of dropped packets but default packet
have no drop. Why?

128K_LL#show policy-map interface serial 0/0.1
 Serial0/0.1: DLCI 200 -
 
  Service-policy output: 1
 
Class-map: 1 (match-all)
  15552 packets, 16947920 bytes
  30 second offered rate 3 bps, drop rate 7000 bps
  Match: access-group 21
  Queueing
Strict Priority
Output Queue: Conversation 24
Bandwidth 80 (kbps) Burst 2000 (Bytes)
(pkts matched/bytes matched) 2531/1983899
(total drops/bytes drops) 333/495184
 
Class-map: class-default (match-any)
  18281 packets, 22054542 bytes
  30 second offered rate 104000 bps, drop rate 0 bps
  Match: any

128K_LL#show policy-map 1
  Policy Map 1
Class 1
  Strict Priority
  Bandwidth 80 (kbps) Burst 2000 (Bytes)

It looks like the guaranteed bandwidth 80 was dropped first instead of the
default packet? Why?

Thanks again.

rgds,
ivan


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



simple network setup [7:59937]

2002-12-29 Thread Ivan Yip
Hi,

I just thinking a simple question for a while...

If I have only single router with 2 serial connection to Single ISP and no
BGP was configured.

Can inbound and outbound traffic be load balanced by only using 2 static
routes on both routers?

Also, what happen if either link is down? any packet will be lost?

TIA.

rgds,
ivan  


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



why con 0 password doesn't work?? [7:59938]

2002-12-29 Thread Richard Campbell
Hi..  Dear Group,

I would like to know why console password doesn't work.  I key in my console 
password in the following manner. But when I plug in the console, it 
straight away give me a switch prompt. Why it never prompt me passord 
before showing us switch

line con 0
password 7 XXX


Thanks a lot



_
The new MSN 8: smart spam protection and 3 months FREE*.  
http://join.msn.com/?page=features/junkmailxAPID=42PS=47575PI=7324DI=7474SU= 
http://www.hotmail.msn.com/cgi-bin/getmsgHL=1216hotmailtaglines_smartspamprotection_3mf




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



RE: why con 0 password doesn't work?? [7:59938]

2002-12-29 Thread David j
Don't use the 7, just hit 
login
password 

Richard Campbell wrote:
 
 Hi..  Dear Group,
 
 I would like to know why console password doesn't work.  I key
 in my console
 password in the following manner. But when I plug in the
 console, it
 straight away give me a switch prompt. Why it never prompt me
 passord
 before showing us switch
 
 line con 0
 password 7 XXX
 
 
 Thanks a lot
 
 
 
 _
 The new MSN 8: smart spam protection and 3 months FREE*.  

http://join.msn.com/?page=features/junkmailxAPID=42PS=47575PI=7324DI=7474SU=

http://www.hotmail.msn.com/cgi-bin/getmsgHL=1216hotmailtaglines_smartspamprotection_3mf
 
 




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



RE: Collision [7:59590]

2002-12-29 Thread Jenny McLeod
A late addition to the thread...
Priscilla is correct about using full duplex if it's a point to point link -
as long as the other end supports full duplex - not all of the older routers
do.

Another point to note is that the reported reliability of this link is only
250/255.  Anything less than 255/255 is usually Not A Good Thing in my
experience.

But yeah, as at least one other poster has said - clear your counters and
have another look to see what's happening NOW.

JMcL
Priscilla Oppenheimer wrote:
 
 The interface is set to half duplex. Collisions are a normal
 part of half duplex Ethernet.
 
 However, do you really need it to be confiugred as half duplex?
 What does it connect to? If it connects to a single port like a
 router or switch port or to a single workstation or server,
 then you can use full duplex. In other words, if it's a
 point-to-point link, then you can use full duplex, and no
 collisions will occur. Both ends should be configured as full
 duplex (or to use auto negotiation).
 
 If it connects to a shared network, like a hub, then it must
 use half duplex and you will get collisions. They are not a
 problem. The Ethernet interface retransmits if there is a
 collision.
 
 Priscilla
 
 Steiven Poh-\(Jaring MailBox\) wrote:
  
  Dear All,
  
  My network have collision is this good sign?? Please
 help!!!
  
  FastEthernet0/48 is up, line protocol is up
Hardware is Fast Ethernet, address is 000a.f477.662c (bia
  000a.f477.662c)
MTU 1500 bytes, BW 1 Kbit, DLY 1000 usec,
   reliability 250/255, txload 5/255, rxload 9/255
Encapsulation ARPA, loopback not set
Keepalive set (10 sec)
Half-duplex, 10Mb/s
input flow-control is off, output flow-control is off
ARP type: ARPA, ARP Timeout 04:00:00
Last input 00:00:16, output 00:00:00, output hang never
Last clearing of show interface counters never
Input queue: 0/75/0/0 (size/max/drops/flushes); Total output
  drops: 0
Queueing strategy: fifo
Output queue :0/40 (size/max)
5 minute input rate 36 bits/sec, 73 packets/sec
5 minute output rate 227000 bits/sec, 51 packets/sec
   1363328 packets input, 543353391 bytes, 0 no buffer
   Received 35975 broadcasts, 234208 runts, 0 giants, 0
  throttles
   234208 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored
   0 watchdog, 9715 multicast, 0 pause input
   0 input packets with dribble condition detected
   19819113 packets output, 2197938874 bytes, 2308379
  underruns
   0 output errors, 127070 collisions, 1 interface resets
   0 babbles, 0 late collision, 11950 deferred
   0 lost carrier, 0 no carrier, 0 PAUSE output
   2308379 output buffer failures, 0 output buffers swapped
 out
  
  
 
 




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



RE: Caller ID [7:59602]

2002-12-29 Thread Jenny McLeod
Going through the old posts...
You may need to get your ISDN provider to set this up.  It may be an extra
cost feature.

If it's working, you should be able to see the number using show isdn
active or similar.  It may depend on the switch type for all I know - I'm
used to ETSI.

JMcL

=?iso-8859-1?B?U2VtaWgg3HN0/G4=?= wrote:
 
 Dear group members,
 
 I have a pri line that serves both bri and asynchronous backup
 lines and want
 to see
 caller party's telephone  numbers. how can i see that?  i tried
 show isdn
 subcommands and dialer subcommands
 but it doesn't work.
 
  Thanks.
 
 Semih \st|n
 
 




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



RE: FR Low Latency Queuing (LLQ) [7:59820]

2002-12-29 Thread Larkin, Richard
This is something I am researching currently. I believe LLQ is CBWFQ+PQ and
the PQ is strict. This means that anything above the allocated rate is
dropped. This is fine for voice traffic where you reserve say 200kbps for 8
voice calls, and anything more than that is dropped, but not suitable for
data applications. You will need to use CBWFQ for your data apps, not place
them in the PQ.

The CBWFQ will guarantee bandwidth to PC1 as you mention in your first post.
I would say that the PQ only gives you 30k due to slow start after packet
loss.

Finally, why CBWFQ gives you sometimes 100k, sometimes 50k, - I can
understand it giving you more than 80k, if there is more available, but I'm
not sure why it gave you less. Perhaps the application or operating system
applied some congestion control. I believe Win2k or XP does a lot of good
work to not hog all of the WAN bandwidth. At this stage, I would question
the appropriateness of FTP as an accurate traffic generation tool.

As to the ping times, your bandwidth under the priority condition is only
guaranteed up to the amount reserved. Anything above that is dropped if the
Q is strict. PC1 would get better response if the ping traffic was in the
PQ, but it isn't so it is placed in the same Q as all the FTP traffic. Then
within the PQ, your ping has to sit at the end of a bunch of FTP data. I
wouldn't be surprised if your ping traffic from PC1 was actually worse that
PC2. PC2, under CBWFQ, would be more fair to small ping packets than many
large FTP packets.

Rik

-Original Message-
From: Ivan Yip [mailto:[EMAIL PROTECTED]] 
Sent: Monday, 30 December 2002 12:07 PM
To: [EMAIL PROTECTED]
Subject: RE: FR Low Latency Queuing (LLQ) [7:59820]


Hi,

I got the following information during debug.

128K_LL#debug priority
Priority output queueing debugging is on
128K_LL#
3d01h: now 263877385 tokens 16000 pak_size 12032 max_token_limit 16000
3d01h: now 263877750 tokens 16000 pak_size 12032 max_token_limit 16000
3d01h: now 263877754 tokens 4288 pak_size 12032 max_token_limit 16000
3d01h: WFQ: dropping a packet from the priority queue 1
3d01h: now 263878034 tokens 16000 pak_size 512 max_token_limit 16000
3d01h: now 263878307 tokens 16000 pak_size 12032 max_token_limit 16000
3d01h: now 263878764 tokens 16000 pak_size 12032 max_token_limit 16000
3d01h: now 263879040 tokens 16000 pak_size 512 max_token_limit 16000
3d01h: now 263879132 tokens 16000 pak_size 8096 max_token_limit 16000
3d01h: now 263879653 tokens 16000 pak_size 12032 max_token_limit 16000
3d01h: now 263880046 tokens 16000 pak_size 512 max_token_limit 16000
3d01h: now 263880202 tokens 16000 pak_size 12032 max_token_limit 16000
3d01h: now 263880202 tokens 3968 pak_size 12032 max_token_limit 16000
3d01h: WFQ: dropping a packet from the priority queue 1 .

Also, I found there is packet drops on the match ip address. The 'priority
80' is configured but there have a lot of dropped packets but default packet
have no drop. Why?

128K_LL#show policy-map interface serial 0/0.1
 Serial0/0.1: DLCI 200 -
 
  Service-policy output: 1
 
Class-map: 1 (match-all)
  15552 packets, 16947920 bytes
  30 second offered rate 3 bps, drop rate 7000 bps
  Match: access-group 21
  Queueing
Strict Priority
Output Queue: Conversation 24
Bandwidth 80 (kbps) Burst 2000 (Bytes)
(pkts matched/bytes matched) 2531/1983899
(total drops/bytes drops) 333/495184
 
Class-map: class-default (match-any)
  18281 packets, 22054542 bytes
  30 second offered rate 104000 bps, drop rate 0 bps
  Match: any

128K_LL#show policy-map 1
  Policy Map 1
Class 1
  Strict Priority
  Bandwidth 80 (kbps) Burst 2000 (Bytes)

It looks like the guaranteed bandwidth 80 was dropped first instead of the
default packet? Why?

Thanks again.

rgds,
ivan




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



RE: simple network setup [7:59937]

2002-12-29 Thread Larkin, Richard
Yes you can load share - but it wouldn't load share any individual flow - I
believe this ensures the order of packet arrival is correct.

If a link went down, I'm not sure about the packets in the interface queue
(ie, those that had been placed on the outbound interface queue) but I would
suspect they would be lost, so yes, you may lose a packet or two.

Rik

-Original Message-
From: Ivan Yip [mailto:[EMAIL PROTECTED]] 
Sent: Monday, 30 December 2002 12:35 PM
To: [EMAIL PROTECTED]
Subject: simple network setup [7:59937]


Hi,

I just thinking a simple question for a while...

If I have only single router with 2 serial connection to Single ISP and no
BGP was configured.

Can inbound and outbound traffic be load balanced by only using 2 static
routes on both routers?

Also, what happen if either link is down? any packet will be lost?

TIA.

rgds,
ivan




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



need enable password when have secret pw? [7:59944]

2002-12-29 Thread Kenny Smith
Hi.. When I was setting up my router configuration. It prompts me for secret 
password and enable password. But I want to how why I still need enable 
password when I have the enable secret?  When I type Enable, i will be 
required to type in my secret password. Then when the enable password will 
be used???

Sorry for such a simple question..
Thanks

_
Add photos to your e-mail with MSN 8. Get 3 months FREE*. 
http://join.msn.com/?page=features/featuredemailxAPID=42PS=47575PI=7324DI=7474SU= 
http://www.hotmail.msn.com/cgi-bin/getmsgHL=1216hotmailtaglines_addphotos_3mf




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



Re: Boson Exam for CIPT [7:59924]

2002-12-29 Thread The Long and Winding Road
Howard C. Berkowitz  wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
 At 3:00 AM + 12/29/02, Lan Wong wrote:
 Greetings,
 
snip some things

 I'll also throw out a general question. A post not long ago asked to
 compare the labs of one vendor versus another, and I am affiliated
 with one of the two. The question was which is better, and, if I
 responded, I would have said they really can't be compared directly,
 because they are designed for different learning objectives.

 Would such a comment from the designer be acceptable?  In other
 words, no direct competitive analysis, but just a statement of the
 design philosophy?  While I think such information would be useful,
 I'd rather not see it posted that trigering a series of mine is
 better than yours posts.

OK, Howard, I'll bite on this one, especially as seeing we had some
conversation off line on this very topic.

I for one would love to see some interaction between the various purveyors
of CCIE Lab prep materials regarding their products and the thought
processess behind them. Not a sales pitch, but rather a discussion of the
kinds of things that are included in their labs, why, and what skill set
they believe is necssary for the attainment of the CCIE.

As I said privately, I don't know how much ice anything I say might cut, as
I have not succeeded as yet. But if I were asked today, I would say that
there are just a couple of keys - mastery of the core topics which are
pretty much discernable from any of the practice lab workbooks, or from
Caslow, and then also a GOOD Lab methodology, or game plan. I can't say much
about the core topics publicly because it could be construedas an NDA
violation, but anything regarding game plan is fair game.

BTW, I am not so sure I agree that lab writing is a CCIE skill set. I'd like
you to elaborate more on why you believe that the ability to write a good
lab is indicative of CCIE level skill. Maybe some other folks have some
thoughts on this as well.

Hell, maybe Paul would let this particualr discussion cross post to the CCIE
Lab list, where the vast majority of CCIE Lab candidates associate.




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



Way OT - help desk [7:59946]

2002-12-29 Thread Jenny McLeod
I came across this on a completely non-IT mailing list.  Thought some might
be amused by it.

An interesting tech support problem...

The phone rings: tech support: hello computer tech support  customer:
hello my computer was making a strange hissing noise last night and this
morning when I turned it on there was a crackling noise and some smoke then
nothing, if I bring it in can you fix it?

The problem?  See http://www.uq.edu.au/education/extra/all.html ...

JMcL



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



Re: Way OT - help desk [7:59946]

2002-12-29 Thread The Long and Winding Road
Jenny McLeod  wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
 I came across this on a completely non-IT mailing list.  Thought some
might
 be amused by it.

 An interesting tech support problem...

 The phone rings: tech support: hello computer tech support  customer:
 hello my computer was making a strange hissing noise last night and this
 morning when I turned it on there was a crackling noise and some smoke
then
 nothing, if I bring it in can you fix it?

 The problem?  See http://www.uq.edu.au/education/extra/all.html ...


How many times do I have to TELL these people - don't open file attachments
from people you don't know!!!




 JMcL




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



RE: FR Low Latency Queuing (LLQ) [7:59820]

2002-12-29 Thread Ivan Yip
Hi All,

Thanks all information.
I am a little bit confused about LLQ. Below is my understanding after
digesting some documentation and feedback from others. Please correct me if
I'm wrong.
1. LLQ=PQ+CBWFQ and PQ is defined by using 'priority' 
2. if using 'bandwidth', then I'm not using LLQ. What I'm using is CBWFQ.
3. PQ (from LLQ) defines the min. and max. guaranteed bandwidth to 
the traffic I defined during congestion.

Also, do I need to define the class-default under policy? 

eg,policy-map 1
  class 1
priority 80
  class class-default
   fair-queue

What's the difference if I'm not defining the class-default?

Thanks again.

rgds,
ivan


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



Re: need enable password when have secret pw? [7:59944]

2002-12-29 Thread selcuk
Hi

if you set the enable secret then enable password is useless

regards

Kenny Smith wrote:

Hi.. When I was setting up my router configuration. It prompts me for
secret
password and enable password. But I want to how why I still need enable 
password when I have the enable secret?  When I type Enable, i will be 
required to type in my secret password. Then when the enable password will 
be used???

Sorry for such a simple question..
Thanks

_
Add photos to your e-mail with MSN 8. Get 3 months FREE*. 
http://join.msn.com/?page=features/featuredemailxAPID=42PS=47575PI=7324DI=7474SU=
 
http://www.hotmail.msn.com/cgi-bin/getmsgHL=1216hotmailtaglines_addphotos_3mf
Virus taramasi Is Net tarafindan yapilmistir.
This e-mail is checked by Is Net against all known types of viruses.
Is Net'in YILBASI HEDIYE kampanyasini duymus muydunuz?
http://www.isnet.net.tr/hediyesepeti/index2.html




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



Need MCNS Slide [7:59950]

2002-12-29 Thread Wasim Iqbal
Hi,
I urgently need  Managing Cisco Network Security  slides. If any body has
please send me or reply me, I will be greatful

Best Regards,
Wasim Iqbal




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