ierm8ec8
Dołączył: 23 Lip 2013
Posty: 10384
Przeczytał: 0 tematów
Ostrzeżeń: 0/5 Skąd: England
|
Wysłany: Czw 18:54, 31 Paź 2013 Temat postu: woolrich outlet CCNP Certification BSCI Exam Tut |
|
|
Passing the BSCI exam and earning your CCNP is all about knowing the main points, and with regards to EIGRP SIA routes, there are plenty of particulars to know. A fast check in a search engine for "troubleshoot SIA" will deliver up quite a number of matches. Troubleshooting SIA routes may be very challengin in that there is no one reason they occur.
View the EIGRP topology table with the present ip eigrp topology command, and you'll see a code next to each successor and feasible successor. A well-liked false impression is that we would like these routes to have an "A" subsequent to them - so that they're active. That's what we would like, proper? Energetic routes sound good, proper?
Effectively, they sound good, but they're not. If a route reveals as Active in the EIGRP topology desk, that implies that DUAL [url=http://www.shewyne.com/woolrichoutlet.html]woolrich outlet[/url] is at present calculating that route, and it's presently unusable. When a route is Passive ("P), that means it's not being recalculated and it's an usable route.
Generally, a route proven as Active goes to be there for a really [url=http://www.sidegemeinde.com/peutereyoutlet.php]peuterey sito ufficiale[/url] quick period of time by the time you repeat the command, hopefully that Lively route has gone Passive. Sometimes that does not occur, although, and the route turns into SIA - Stuck In Active.
[url=http://www.rtnagel.com/airjordan.php]jordan pas cher[/url]
A route becomes SIA when a [url=http://www.par5club.com/louboutin.php]louboutin[/url] question goes unanswered for so long that the neighbor relationship is reset. From expertise, I can let you know that troubleshooting SIA routes [url=http://www.jeremyparendt.com/Barbour-Paris.php]barbour france paris[/url] is more of an art form than a science, however there are four important causes a route becomes SIA:
The hyperlink is unidirectional, so the [url=http://www.tagverts.com/barbour.php]barbour deutschland[/url] query can't possibly be answered.
The queried router's assets are unavailable, generally as a result of high CPU utilization.
The queried router's reminiscence is corrupt or in any other case unable to permit the router to answer the query.
The hyperlink between the 2 routers is of low high quality, permitting just enough packets by to maintain the neighbor relationship intact, however not good enough to allow the replies through.
[url=http://www.riad-marrakesh.fr]abercrombie[/url]
To sum it up, routes typically grow to be SIA when a neighbor either would not reply a query, or both the query or reply took a fallacious flip somewhere. I advised you it wasn't the best thing to troubleshoot!
Like TCP, BGP is connection-oriented. An underlying connection between BGP speakers is established before any routing information is exchanged. This connection takes place on TCP port 179. As with EIGRP and OSPF, keepalive messages are sent out by the BGP audio system in an effort to hold this relationship alive.
As soon as the connection is established, the BGP audio system trade routes and synchronize their tables. After this initial alternate, a BGP speaker will only ship additional updates upon a change in the community topology.
The IGP protocols that use Autonomous Programs, IGRP and EIGRP, require potential neighbors to be in the same AS. This isn't true with BGP. Routers can be in different Autonomous Techniques and nonetheless exchange routes. The BGP neighbors should not have to be directly related, and often will not be, however do need to have the ability to attain the IP addresses they use of their neighbor statements.
A BGP peer that's in the same AS is known as an Inside BGP (iBGP) Peer, where a BGP peer in one other AS is an External BGP (eBGP) Peer.
A pattern iBGP configuration:
Router bgp a hundred
Neighbor 10.1.1.2 distant-as a hundred
A sample eBGP configuration:
Router bgp one hundred
Neighbor 10.1.1.2 remote-as 200
Cisco recommends that eBGP peers be directly linked, the place iBGP peers usually will not be.
Earlier than we get an excessive amount of farther into BGP principle, let's get a configuration started. You'll use the router bgp command to configure a router as a BGP speaker. Proper after that, the neighbor command can be used to determine this BGP speaker's potential neighbors. (The phrases "peer" and "neighbor" are interchangeable in BGP, nevertheless it's the neighbor statement that's used to statically outline neighbors. BGP will not be able to discovering neighbors dynamically.)
R1(config-router)neighbor 172.12.123.three distant-as 200
While virtually all of the neighbor options are simply that -- elective -- you do must specify the BGP AS of the distant router. BGP has no mechanism to dynamically uncover [url=http://www.rtnagel.com/airjordan.php]nike air jordan pas cher[/url] neighbors. Bear in mind, BGP speakers would not have to be in the identical AS to develop into peers. To confirm that the remote BGP speaker has turn out to be a peer, run show ip [url=http://www.rtnagel.com/louboutin.php]louboutin pas cher[/url] bgp neighbor.
R1show ip bgp neighbor
BGP neighbor is 172.12.123.three, remote AS 200, exterior link
BGP model four, distant router ID 0.0.0.zero
BGP state = Lively
Final learn 00:01:39, hold time is 180, keepalive interval is 60 seconds
Received 0 messages, 0 notifications, 0 in queue
Despatched zero messages, 0 notifications, 0 in [url=http://www.teatrodeoro.com/hollisterde.php]hollister deutschland[/url] queue
Route refresh request: acquired zero, despatched 0
Default minimum time between advertisement runs is 30 seconds
The output here could be a little deceptive the first time you read it. The first highlighted line shows 172.12.123.three is a BGP neighbor, is located in AS 200, and is an exterior hyperlink, indicating that the neighbor is in one other AS entirely. The second highlighted line exhibits the BGP state as Active. This sounds nice, nevertheless it really implies that a BGP peer connection does not but exist with the potential neighbor.
So though the present ip bgp neighbor output indicated that this is an Active neighbor relationship, that's not so good as it [url=http://www.gotprintsigns.com/abercrombiepascher/]abercrombie soldes[/url] sounds. Of course, the reason the peer relationship hasn't been established is that we haven't configured R3 but!
R3(config)router bgp 200
R3(config-router)neighbor 172.12.123.1 remote-as one hundred
Verify the peer establishment with present ip bgp neighbor:
R3show ip bgp neighbor
BGP neighbor is 172.12.123.1, distant AS 100, exterior hyperlink
BGP version four, remote router ID 172.12.123.1
BGP state = Established, up for 00:01:18
Final learn 00:00:17, hold time is 180, keepalive interval is 60 seconds
Local host: 172.12.123.three, Local port: 179 (BGP uses TCP Port 179)
Overseas host: 172.12.123.1, Foreign port: 11007
The peer relationship between R1 and R3 has been established.
Now that you understand how the neighbor relationship itself is constructed, you could begin studying the [url=http://www.sandvikfw.net/shopuk.php]hollister sale[/url] many choices of the neighbor command. You'll should grasp these to change into
相关的主题文章:
[url=http://posinet.jp/kissmark/kissbbs/kissbbs.cgi?mode=ms&no=115317]hollister deutschland Getting[/url]
[url=http://cgi5.synapse.ne.jp/~nu-din/joyful_guest/joyful.cgi]louboutin Low-cost Kitchen Ca[/url]
[url=http://ziranji.com/forum.php?mod=viewthread&tid=6123085]barbour outlet What Is The Concept Of Sunless Tanning And Procedure For The Same[/url]
Post został pochwalony 0 razy
|
|