Thaiio.com

Thaiio is the best of PC interfacing Electronic Hardware and Devices resource.

Today , 2007
February 29th, 2008

Cisco CCNA Exam Tutorial Split Horizon And Hub-And-Spoke Networks

For CCNA exam success, you had better know what split horizon is, how to turn it off, and when to turn it off. Knowing when to turn split horizon off is also important in production networks, because it can cause a hub-and-spoke network to have incomplete routing tables on the spokes.

Split horizon exists for a very good reason - routing loop prevention. The rule of split horizon states that a router cannot send an advertisement for a route out the same interface that it came in on. Split horizon is on by default on all interfaces running RIP, IGRP, and EIGRP.

In this CCNA tutorial, R1 will serve, as the hub and R2 and R3 will be the spokes. We’ll first configure EIGRP over the 172.16.123.0 /24 network, the network connecting the three routers.

R1#conf t

R1(config)#router eigrp 100

R1(config-router)#no auto-summary

R1(config-router)#network 172.12.123.0 0.0.0.255

R2#conf t

R2(config)#router eigrp 100

R2(config-router)#no auto-summary

R2(config-router)#network 172.12.123.0 0.0.0.255

R3#conf t

R3(config)#router eigrp 100

R3(config-router)#no auto-summary

R3(config-router)#network 172.12.123.0 0.0.0.255

Running show ip eigrp neighbor on R1 shows that adjacencies to R2 and R3 are up.

R1#show ip eigrp neighbor

IP-EIGRP neighbors for process 100

H Address Interface Hold Uptime SRTT RTO Q Seq Type

(sec) (ms) Cnt Num

1 172.12.123.3 Se0/0 11 00:02:45 1 5000 0 1

0 172.12.123.2 Se0/0 161 00:03:01 1 5000 0 1

Each router will now advertise its loopback address via EIGRP.

R1#conf t

R1(config)#router eigrp 100

R1(config-router)#network 1.1.1.0 0.0.0.255

R2#conf t

R2(config)#router eigrp 100

R2(config-router)#network 2.2.2.0 0.0.0.255

R3#conf t

R3(config)#router eigrp 100

R3(config-router)#network 3.3.3.0 0.0.0.255

Running show ip eigrp route on each router shows that R1 has a route for both R2’s and R3’s loopback. R2 and R3 will only see R1’s loopback address, and not each other’s. Why?

R1#show ip route eigrp

2.0.0.0/24 is subnetted, 1 subnets

D 2.2.2.0 [90/2297856] via 172.12.123.2, 00:03:19, Serial0/0

3.0.0.0/24 is subnetted, 1 subnets

D 3.3.3.0 [90/2297856] via 172.12.123.3, 00:03:04, Serial0/0

R2#show ip route eigrp

1.0.0.0/24 is subnetted, 1 subnets

D 1.1.1.0 [90/2297856] via 172.12.123.1, 00:03:40, Serial0/0.123

R3#show ip route eigrp

1.0.0.0/24 is subnetted, 1 subnets

D 1.1.1.0 [90/2297856] via 172.12.123.1, 00:05:17, Serial0/0.31

EIGRP uses Split Horizon by default to prevent routing loops. In this lab, though, it prevents full network reachability. R2 and R3 both form neighbor relationships with R1’s Serial physical interface. R2 advertises its loopback address to R1’s Serial interface, as does R3. Split Horizon does not allow a route to be advertised back out the same interface it was received on. This prevents R1 from advertising R2’s loopback to R3, or R3’s loopback to R2.

Split Horizon must be disabled to allow full network reachability in this lab. To do so, run no ip split-horizon eigrp 100 on R1’s Serial interface. When Split Horizon is disabled, that will cause the neighbor
relationships to fail, and then reestablish. Run show ip route eigrp 100 on both R2 and R3. The appropriate route to the remote loopback address will now appear.

R1#conf t

R1(config)#int serial0

R1(config-if)#no ip split-horizon eigrp 100

10:02:23: %DUAL-5-NBRCHANGE: IP-EIGRP 100: Neighbor 172.12.123.2 (Serial0/0) down: split horizon changed

10:02:23: %DUAL-5-NBRCHANGE: IP-EIGRP 100: Neighbor 172.12.123.3 (Serial0/0) down: split horizon changed

10:02:27: %DUAL-5-NBRCHANGE: IP-EIGRP 100: Neighbor 172.12.123.3 (Serial0/0) ip: new adjacency

10:02:54: %DUAL-5-NBRCHANGE: IP-EIGRP 100: Neighbor 172.12.123.2 (Serial0/0) ip: new adjacency

R2#show ip route eigrp

1.0.0.0/24 is subnetted, 1 subnets

D 1.1.1.0 [90/2297856] via 172.12.123.1, 00:00:06, Serial0/0.123

3.0.0.0/24 is subnetted, 1 subnets

D 3.3.3.0 [90/2809856] via 172.12.123.1, 00:00:06, Serial0/0.123

R3#show ip route eigrp

1.0.0.0/24 is subnetted, 1 subnets

D 1.1.1.0 [90/2297856] via 172.12.123.1, 00:00:12, Serial0/0.31

2.0.0.0/24 is subnetted, 1 subnets

D 2.2.2.0 [90/2809856] via 172.12.123.1, 00:00:12, Serial0/0.31

Disabling split horizon should be done with care, but knowing when and where to do so shows that you truly understand how this technology works - and that’s a big step on the way to earning your CCNA!

Chris Bryant, CCIE #12933, is the owner of The Bryant Advantage, home of free CCNA and CCNP tutorials, The Ultimate CCNA Study Package, and Ultimate CCNP Study Packages.

You can also join his RSS feed and visit his blog, which is updated several times daily with new Cisco certification articles, free tutorials, and daily CCNA / CCNP exam questions! Details are on the website.

For a FREE copy of his latest e-books, “How To Pass The CCNA” and “How To Pass The CCNP”, visit the website and download your free copies. You can also get FREE CCNA and CCNP exam questions every day! Get your CCNA study guide from The Bryant Advantage!

Tags: plc
pac
pc
port
vb
vc
c#
parallel
serial
com
usb

February 29th, 2008

Purchasing Your Portable Laptop

Before you purchase your laptop you’ll want to familiarize yourself with the various features and determine what you need and what you do not. Some folks seek out all the latest bells and whistles. For others it’s about getting your typical job done efficiently and cost effectively.

Here are some helpful hints:

To save yourself money look for a Celeron processor. Less expensive than a Pentium, it will work fine for all but the most detailed graphics projects. If you’re a graphic artist or a professional programmer, however, seek out a laptop with Pentium processing.

126 MB RAM is the least you can be comfortable with nowadays, no matter what you’re doing. And, unless you’re buying used you’re probably not going to find a laptop with less anyway. But what if you want to upgrade your memory? How easy is it to do that? How accessible is the panel for the memory chips? Are you comfortable with doing it yourself if you have to remove the case? Make sure it’s not a laptop that actually requires some outside technical help to install more memory. .

The life of the installed battery is important. Generally the range of battery life available to laptops is two-four hours. Which is adequate depends on where you’re going to be when you use your laptop. If you’re a traveling sales rep who needs a laptop to your emails and prepare the daily report from your hotel room each evening you won’t be using your battery a lot. If, however, you envision the life of the mobile warrior, sometimes creating your graphic or written masterpiece from the beach, or while traveling by air, you won’t be able to rely on the power cord and electricity. You’ll want that four-hour battery.

Make sure you have a minimum of three ports, to accommodate a number of peripherals such as printers, cameras and external floppy drives or modems. The number of ports you need depends on the internal features of your laptop as well as your own need for peripherals.

Obviously, if you have an internal modem you don’t need a port for an external one. But if you have only a CD drive and copy to floppy on your PC at home, for the two to talk to each other you’re going to need an external floppy drive on your laptop. For this you’ll need a port. Be cognizant also of the types of ports. Your old mouse may connect by parallel port, but the newest versions require USB connection.

Make sure you have an internal modem and fax rather than external. And if you’re shopping for a brand new laptop the wireless feature is terrific. Many places, such as RV and other resorts are totally Wi-Fi capable now.

If you’re used to a traditional mouse do play around with several versions of mice available on laptops. Some will drive you crazy until you get used to them. See if you’re most comfortable with trackball, touch pad or trackpoint. While you’re checking that, play with that keyboard. So much smaller than a PC keyboard, you may have difficulty typing accurately with some. Try several.

The final things you’ll want to compare are the software and the warranty. Major software programs such as Windows are almost always included in brand new systems, but do check. Especially if buying used. You can spend many hundreds of dollars on Microsoft Office and the latest Windows version if you don’t have a version that you can upgrade.

Alan Jason Smith is the owner of http://www.tkcicomputers.com which is a great place to find computer links, resources and articles. For more information go to: http://www.tkcicomputers.com.

© Copyright 2005

Tags: plc
pac
pc
port
vb
vc
c#
parallel
serial
com
usb

|
Interior Accessories Shop free xxx cheapest viagra in uk cheap viagra viagra rise levitra alternative levitra vs viagra soft tabs cheapest online cialis 24 hour delivery canadian rx drugs bigtits i made free pornstars drunken asian girls BIGNATURALS big fat booty lessons in blow jobs porn fuck free porn videos free anal old mom video milfs amateur blowjob cheapest online diazepam 24 hour delivery cheap levitra rx pills buy lorazepam cheap cialis buy cheapest generic valium purchase new report female zyban order oxazepam prescription cheapest generic xanax viagra order herbal klipal for woman levitra buy drugs online buy herbal tramadol cialis soft tabs levitra cialis best herbal viagra soft tabs uk cialis buy viagra on line viagra levitra women buy cialis online without prescription natural levitra substitutes cheapest generic viagra cyber pharmacy propecia viagra soft tabs studies women
Close
E-mail It