ExamNotes.net  -  IT certification portal

ForumsCertResearchTop sitesNewslettersFree email
HomeRegister
Exams Notes
Practice exams
Exam games
Questions by email
Online training
Training videos
College degrees
Boot camps
Book store
Links directory
Tell a friend
For webmasters

CompTIA Exam Vouchers
Save money on CompTIA exams
Question of the day
Sign up to receive
interactive practice questions
for MCSE, CompTIA
Cisco and other exams
TestKing
Get MCSE, MCSD, CCNA, CCNP,A+, N+ and many more

* ExamSheets *
Guide for Success!
Actual Questions & Answers
MCSE, MCSD, A+ ,CCNA, CCNP
Oracle 8i, Oracle 9i

Online practice tests

Certification sites

Online university

Online college

Online education

Distance learning

Software forum

Server administration forum

Programming resources






This is interesting: Free IT Magazines | Databases help forum



Cisco > CCNP > Can someone explain these BGP questions?

Show a Printable Version
Email This Page to Someone!
Receive updates to this thread




Featured site: Online CCNP practice exams from Cert21.com



Author Can someone explain these BGP questions?
fit
Member




Registered: Jul 2000
Location:
Country: United States
State: FL
Certifications: Net+, MCP+I, MCSE, CCNA 2.0
Working on: CCNP..and that is it.

Total Posts: 47
Post Can someone explain these BGP questions?

Which command allows Router A to advertise subnet 10.1.0.0/24 in BGP?

A. network 10.1.0.0
B. network 10.1.0.0 255.255.0.0
C. network 10.1.0.0 mask 255.255.0.0
D. network 10.1.0.0/16
E. network 10.1.0.0

====> I think the answer is C ( Not sure)
It seems to me that A could be true too. Since the "mask" is an optional in BGP. Am i right?
---------------------------------------------

Q2:

Given the following configuration:

router bgp 65000
neighbor 172.16.1.1 remote-as 65000
neighbor 10.1.1.2 remote-as 64500
network 192.168.1.192 mask 255.255.255.224 aggregate-address 192.168.1.0 255.255.255.0

What is the effect on Router A?

A. Router A will advertise only a route to 192.168.1.0 255.255.255.0 in BGP

B. Router A will advertise only a route to 192.168.1.192 255.255.255.224 in BGP

C. Router A always use routes learned by IBGP

D. Router A will have an IBGP connection with 172.16.1.1

E. Router A will always advertise itself as the next-hop address for BGP routes that it advertises

===> The answer is

---------------------------------------------

Q3:
Given the following configuration:

interface serial0
no ip address
encapsulation frame-relay

interface serial0.1 point-to-point
ip address 10.5.4.1 255.255.255.0
frame-relay interface-dlci 120

interface serial0.2 point-to-point
ip address 10.5 3.1 255.255.255.0
frame-relay interface-dlci 142

router ospf 20
network 10.5.0.0 0.0.255.255 area 0

Which statement about this point-to-point configuration is not true?

A. Interfaces serial0.1 and serial0.2 will be placed in area 0

B. Adjacencies will be formed automatically with the devices connected to DLCI120 and DLCI 142 frame-relay map commands are required to complete the configuration of the subinterfaces

C. Interfaces serial0.1 and serial0.2 will not participate in a DR/BDR election

====> The answer is

--------------------------------------------
Q4:
Given the following configuration:

interface ethernet0
ip address 10.3.3.2 255.255.255.0

interface ethernet1
ip address 10.4.4.1 255.255.255.0

interface serial0
ip address 10.5.4.2 255.255.255.0

router ospf 20
network 10.3.3.2 0.0.0.0 area 0
network 10.4.4.1 0.0.0.0 area 0
network 10.5.0.0 0.0.255.255 area 0

Which statement about the functionality of line 13 is true?

A. All interfaces with an IP address that contains 10.5.x.x will be placed in area 0

B. There are 255 subnets in network 10.5.0.0

C. All networks whose IP address ends in 0.0 will be able to route traffic to network 10.5.0.0

D. Network statements use wildcard masks rather than subnet masks

===> The answer is

Report this post to a moderator

Old Post 06-20-01 02:59 AM
fit is offline Click Here to See the Profile for fit Click here to Send fit a Private Message Add fit to your buddy list Find more posts by fit Reply w/Quote Edit/Delete Message IP: Logged
Terje
Senior Member




Registered: Nov 2000
Location:
Country:
State:
Certifications:
Working on:

Total Posts: 476
Re: Can someone explain these BGP questions?

quote:
Originally posted by fit
Which command allows Router A to advertise subnet 10.1.0.0/24 in BGP?

A. network 10.1.0.0
B. network 10.1.0.0 255.255.0.0
C. network 10.1.0.0 mask 255.255.0.0
D. network 10.1.0.0/16
E. network 10.1.0.0

====> I think the answer is C ( Not sure)
It seems to me that A could be true too. Since the "mask" is an optional in BGP. Am i right?


The correct answer would be network 10.1.0.0 mask 255.255.255.0 which is not one of the alternatives. It is true that the mask is optional in BGP, but the default mask for 10.1.0.0 which is a class A address is 255.0.0.0.
quote:

---------------------------------------------
Q2:

Given the following configuration:

router bgp 65000
neighbor 172.16.1.1 remote-as 65000
neighbor 10.1.1.2 remote-as 64500
network 192.168.1.192 mask 255.255.255.224 aggregate-address 192.168.1.0 255.255.255.0


I assume there should be a line feed before "aggregate-address".
quote:

What is the effect on Router A?

A. Router A will advertise only a route to 192.168.1.0 255.255.255.0 in BGP


Don't you also need summary-only?
quote:

B. Router A will advertise only a route to 192.168.1.192 255.255.255.224 in BGP

C. Router A always use routes learned by IBGP

D. Router A will have an IBGP connection with 172.16.1.1


The connection will be IBGP because the AS number is the same for this router and the connected-to router.
quote:

E. Router A will always advertise itself as the next-hop address for BGP routes that it advertises


Not neccessarily. If the 192.168.1.0 network can be reached more efficiently through another router with an interface on the same segment as 10.1.1.2 then the IP address of that interface will be advertised as the next-hop. This behaviour can be overridden with the "next-hop self", but that was not done in this example.
quote:

---------------------------------------------

Q3:
Given the following configuration:

interface serial0
no ip address
encapsulation frame-relay

interface serial0.1 point-to-point
ip address 10.5.4.1 255.255.255.0
frame-relay interface-dlci 120

interface serial0.2 point-to-point
ip address 10.5 3.1 255.255.255.0
frame-relay interface-dlci 142

router ospf 20
network 10.5.0.0 0.0.255.255 area 0

Which statement about this point-to-point configuration is not true?

A. Interfaces serial0.1 and serial0.2 will be placed in area 0


This one is true.
quote:

B. Adjacencies will be formed automatically with the devices connected to DLCI120 and DLCI 142 frame-relay map commands are required to complete the configuration of the subinterfaces

C. Interfaces serial0.1 and serial0.2 will not participate in a DR/BDR election


No frame-relay map should be needed here since these are point-to-point links. For the same reason there should be no need for DR/BDRs. I would say that B is not true.

About adjacencies, is it true that the term is used only about the connection between a DR/BDR and other routers on the same multiaccess network, or is it also used about the connection between two routers on a point-to-point link?

Terje

Report this post to a moderator

Old Post 06-20-01 01:51 PM
Terje is offline Click Here to See the Profile for Terje Click here to Send Terje a Private Message Add Terje to your buddy list Find more posts by Terje Reply w/Quote Edit/Delete Message IP: Logged
dmaftei
Senior Member
M




Registered: Nov 2000
Location:
Country: USA
State:
Certifications: none
Working on: none

Total Posts: 2156
Re: Re: Can someone explain these BGP questions?

quote:
Originally posted by Terje
No frame-relay map should be needed here since these are point-to-point links. For the same reason there should be no need for DR/BDRs. I would say that B is not true.

When configured on point-to-point subinterfaces, OSPF works in point-to-point mode. In point-to-point mode, DR election does not occur. Therefore, C is true. Since A is also true, I'll have to agree with Terje that the correct answer is B.

Cheers!

Report this post to a moderator

Old Post 06-20-01 02:12 PM
dmaftei is offline Click Here to See the Profile for dmaftei Click here to Send dmaftei a Private Message Add dmaftei to your buddy list Find more posts by dmaftei Reply w/Quote Edit/Delete Message IP: Logged
dmaftei
Senior Member
M




Registered: Nov 2000
Location:
Country: USA
State:
Certifications: none
Working on: none

Total Posts: 2156
Re: Can someone explain these BGP questions?

quote:
Originally posted by fit
Q4:
Given the following configuration:

interface ethernet0
ip address 10.3.3.2 255.255.255.0

interface ethernet1
ip address 10.4.4.1 255.255.255.0

interface serial0
ip address 10.5.4.2 255.255.255.0

router ospf 20
network 10.3.3.2 0.0.0.0 area 0
network 10.4.4.1 0.0.0.0 area 0
network 10.5.0.0 0.0.255.255 area 0

Which statement about the functionality of line 13 is true?

A. All interfaces with an IP address that contains 10.5.x.x will be placed in area 0

B. There are 255 subnets in network 10.5.0.0

C. All networks whose IP address ends in 0.0 will be able to route traffic to network 10.5.0.0

D. Network statements use wildcard masks rather than subnet masks

A.

Cheers!

Report this post to a moderator

Old Post 06-20-01 02:14 PM
dmaftei is offline Click Here to See the Profile for dmaftei Click here to Send dmaftei a Private Message Add dmaftei to your buddy list Find more posts by dmaftei Reply w/Quote Edit/Delete Message IP: Logged
fit
Member




Registered: Jul 2000
Location:
Country: United States
State: FL
Certifications: Net+, MCP+I, MCSE, CCNA 2.0
Working on: CCNP..and that is it.

Total Posts: 47

dmaftei, Terje thanks. It helps alot.

Report this post to a moderator

Old Post 06-21-01 07:03 PM
fit is offline Click Here to See the Profile for fit Click here to Send fit a Private Message Add fit to your buddy list Find more posts by fit Reply w/Quote Edit/Delete Message IP: Logged
All times are GMT.
Post new thread   Post reply

Click here for CCNP study guides

Cisco exam notes



Forum Jump:
Rate This Thread:
Forum Rules:
Who Can Read The Forum? Any registered user or guest.
Who Can Post New Topics? Any registered user.
Who Can Post Replies? Any registered user.
Changes: Messages can be edited by their author.
Posts: HTML code is OFF. Smilies are ON. vB code is ON. [IMG] code is ON.
 

ExamNotes forum archive


Powered by: vBulletin 2.2.8
Copyright ©2000, Jelsoft Enterprises Limited.

  Free Braindumps | mcse braindumps