Cisco CCNA / CCNP Certification: OSPF ASBRs Explained And Illustrated

When I first started studying for my CCNP, some of the concepts of OSPF really confused me. This was especially true for the ASBR, stub areas, and total stub areas. Sure, I could memorize the LSA types associated with these devices and area types, but there just weren't any illustrations that explained exactly what was going on.

This CCNP tutorial shows an ASBR in operation, and also introduces you to a basic example of route redistribution. Don't worry, it gets more complicated. :)

Here's the network we'll be working with in this tutorial:

R5

|

R1

/

R2 R3

Networks:

R1 - R5 Ethernet Segment: 10.1.1.0 /24

R1 - R2 - R3 Serial Segment: 172.16.123.0 /24 (Preconfigured with OSPF)

R1 and R5 are running RIP over their common Ethernet segment, 10.1.1.0 /24. R5 has three loopbacks it will be advertising into the RIP domain.

R1 is also running OSPF, with R2 and R3 as neighbors. Even though R1 knows about the loopbacks on R5, its OSPF neighbors do not. R1 has these routes in its RIP routing table, and for OSPF neighbors to learn of these routes, route redistribution must be manually configured.

R5#conf t
R5(config)#router rip
R5(config-router)#version 2
R5(config-router)#no auto-summary
R5(config-router)#network 5.0.0.0
R5(config-router)#network 10.0.0.0

R1#conf t
R1(config)#router rip
R1(config-router)#version 2
R1(config-router)#no auto-summary
R1(config-router)#network 10.0.0.0

R1#show ip route rip
5.0.0.0/24 is subnetted, 3 subnets
R 5.1.1.0 [120/1] via 10.1.1.5, 00:00:10, Ethernet0
R 5.2.1.0 [120/1] via 10.1.1.5, 00:00:10, Ethernet0
R 5.3.1.0 [120/1] via 10.1.1.5, 00:00:10, Ethernet0

R1 has a route for all three of R5's loopback interfaces, learned via RIP. R1 is also running OSPF, but its neighbors R2 and R3 don't know about these RIP routes:

R2#show ip route ospf

R2# < no output from show command means no routes! >

R3#show ip route ospf

R3#

Be careful when configuring redistribution use IOS Help to make sure you're not missing any vital options. IOS Help shows that there is a "subnets" option when redistributing RIP into OSPF. If that is left off, only classful networks are redistributed (as the router is kind enough to tell us). In this case, we have no classful networks, so there will be no redistribution. R2 will not see the RIP routes.

R1(config)#router ospf 1
R1(config-router)#redistribute rip ?

metric Metric for redistributed routes
metric-type OSPF/IS-IS exterior metric type for redistributed routes
route-map Route map reference
subnets Consider subnets for redistribution into OSPF
tag Set tag for routes redistributed into OSPF

R1(config-router)#redistribute rip
% Only classful networks will be redistributed

R2#show ip route ospf

R2#clear ip route *

R2#show ip route ospf

R2#

On R1, we'll now use the "subnets" option, and the RIP subnets are successfully redistributed into OSPF.

R1(config)#router ospf 1

R1(config-router)#redistribute rip subnets

R2 now sees the redistributed routes.

R2#show ip route ospf

5.0.0.0/24 is subnetted, 3 subnets

O E2 5.1.1.0 [110/20] via 172.12.123.1, 00:00:08, Serial0.123

O E2 5.2.1.0 [110/20] via 172.12.123.1, 00:00:08, Serial0.123

O E2 5.3.1.0 [110/20] via 172.12.123.1, 00:00:08, Serial0.123

10.0.0.0/24 is subnetted, 1 subnets

O E2 10.1.1.0 [110/20] via 172.12.123.1, 00:00:08, Serial0.123

Notice that the routes are marked as "E2". The E indicates that these are external routes these are routes that were learned by OSPF via redistribution.

Naturally, you'll want to ping these networks to make sure you have two-way communication. Even though the routes to these loopbacks are in the routing table, pings fail:

R2#ping 5.1.1.1

Type escape sequence to abort.

Sending 5, 100-byte ICMP Echos to 5.1.1.1, timeout is 2 seconds:

.....

Success rate is 0 percent (0/5)

Keep this in mind when troubleshooting: It's not enough to have a route to a destination for pings to succeed there's got to be a path back. At this point, R5 doesn't know where the 172.12.123.0 network is, so there's no way the ping can get back. More route redistribution is necessary on R1.

Your first instinct may be to redistribute OSPF routes into RIP to make this work, but remember that the 172.12.123.0 /24 network isn't known to R1 via OSPF it's a directly connected network. We can redistribute connected networks into RIP to give R5 a route to 172.12.123.0 /24, which will give the ICMP packets a path back to R2, which will allow pings to succeed.

R1(config)#router rip

R1(config-router)#redistribute connected

R5#show ip route rip

1.0.0.0/32 is subnetted, 1 subnets

R 1.1.1.1 [120/1] via 10.1.1.1, 00:00:02, Ethernet0

172.12.0.0/24 is subnetted, 1 subnets

R 172.12.123.0 [120/1] via 10.1.1.1, 00:00:02, Ethernet0

R2#ping 5.1.1.1

Type escape sequence to abort.

Sending 5, 100-byte ICMP Echos to 5.1.1.1, timeout is 2 seconds:

!!!!!

Success rate is 100 percent (5/5), round-trip min/avg/max = 68/69/76 ms

Performing this redistribution makes R1 an ASBR, as shown here with show ip ospf. This command even shows you what protocol(s) are being redistributed into OSPF.

R1#show ip ospf

Routing Process "ospf 1" with ID 1.1.1.1

Supports only single TOS(TOS0) routes

Supports opaque LSA

It is an autonomous system boundary router

Redistributing External Routes from,

rip, includes subnets in redistribution

Knowing exactly what the ASBR does and how to configure route redistribution are just a few of the many OSPF skills you'll need to earn your CCNP. Like any other Cisco skill, breaking a complex topic like OSPF down into smaller, manageable pieces is the best way to master these topics and pass the CCNP exams.

Keep watching The Bryant Advantage website for more free CCNA and CCNP tutorials!

To your success,
Chris Bryant
CCIE #12933
chris@thebryantadvantage.com

Chris Bryant, CCIE #12933, is the owner of The Bryant Advantage. The Bryant Advantage offers dozens of FREE CCNA, CCNP, and Home Lab tutorials and articles. The Bryant Advantage sells the world's most comprehensive CCNA Study Guide, and my exclusive Binary Math and Subnetting Mastery book. My CCNA Online Fast Track is the world's fastest-growing CCNA course. Get your CCNA and CCNP today at http://www.thebryantadvantage.com

In The News:

table border=0 width= valign=top cellpadding=2 cellspacing=7trtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://www.citywebshopper.net/articles/includes/redirect.php?url=http://online.wsj.com/article/SB122394642931331297.html%3Fmod%3Dgooglenews_wsjcid=1257517552ei=S3D0SLf8K6CQ6AOp9OCSDQusg=AFQjCNGVTSx3tZzeqrsKHjV39jsrlCUUswIndia Enlists bTechnology/b Know-How In Effort to Improve Its Service b.../b/abrfont size=-1font color=#6f6f6fWall Street Journalnbsp;-/font nobr6 hours ago/nobr/fontbrfont size=-1b.../b which store bpersonal/b information on a chip embedded in the document. And the federal government has hired another Indian btech/b giant, HCL bTechnologies/b b.../b/font/div/font/td/tr/table
table border=0 width= valign=top cellpadding=2 cellspacing=7trtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://www.citywebshopper.net/articles/includes/redirect.php?url=http://www.sltrib.com/tv/ci_10653836cid=0ei=S3D0SLf8K6CQ6AOp9OCSDQusg=AFQjCNEjusiRc20urL6qqQQKeFNzWg7zegbPersonal Tech/b: Ready or not, digital TV is coming to Utah/abrfont size=-1font color=#6f6f6fSalt Lake Tribune,nbsp;United Statesnbsp;-/font nobrOct 7, 2008/nobr/fontbrfont size=-1By Vince Horiuchi Come Feb. 17, all broadcasters will switch off their analog television signals. If you are not prepared by then, the only thing you will b.../b/font/div/font/td/tr/table
table border=0 width= valign=top cellpadding=2 cellspacing=7trtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://www.citywebshopper.net/articles/includes/redirect.php?url=http://blogs.reuters.com/reuters-dealzone/2008/10/13/walking-away/cid=1257310488ei=S3D0SLf8K6CQ6AOp9OCSDQusg=AFQjCNG1mAM6Xv5qK8YcbCt3uHvPeaScCAWalking away/abrfont size=-1font color=#6f6f6fReutersnbsp;-/font nobr14 hours ago/nobr/fontbrfont size=-1United bTech/b complained that Diebold’s management had stymied its efforts to negotiate a deal. Diebold had rejected the $40 per share bid as too low. b.../b/font/div/font/td/tr/table
table border=0 width= valign=top cellpadding=2 cellspacing=7trtd width=80 align=center valign=topfont style=font-size:85%;font-family:arial,sans-serifa href=http://www.citywebshopper.net/articles/includes/redirect.php?url=http://seattlepi.nwsource.com/cfootball/2061ap_fbc_gardner_webb_ga_tech_1st_ldwritethru.htmlcid=1255521052ei=S3D0SLf8K6CQ6AOp9OCSDQusg=AFQjCNHmcAXboM1_x3ovj1WGiCWKUnjDHwimg src=http://news.google.com/news?imgefp=2YKfF62qGDgJimgurl=seattlepi.nwsource.com/dayart/aponline/59098.41Gardner-Webb-Georgia-Tech-Football.sff.jpg width=76 height=80 alt= border=1brfont size=-2Seattle Post Intelligencer/font/a/font/tdtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://www.citywebshopper.net/articles/includes/redirect.php?url=http://ap.google.com/article/ALeqM5hJwK9IwOXL-KmdCnrBwyJMxtFpGQD93PL2S80cid=1255521052ei=S3D0SLf8K6CQ6AOp9OCSDQusg=AFQjCNHt6VfQlXNXoD4BkQ39jy3PX8FxtwFBC Gardner Webb Ga bTech/b/abrfont size=-1font color=#6f6f6fThe Associated Pressnbsp;-/font nobr20 hours ago/nobr/fontbrfont size=-1Johnson was penalized, however, for a bpersonal/b foul midway through the third quarter that negated a 34-yard field goal attempt that Gates missed wide left. b.../b/fontbrfont size=-1a href=http://www.citywebshopper.net/articles/includes/redirect.php?url=http://www.ajc.com/sports/content/sports/gatech/stories/2008/10/11/georgia_tech_special_teams.htmlcid=1255521052ei=S3D0SLf8K6CQ6AOp9OCSDQusg=AFQjCNEqBprW4YippN3wfO8kdwhhTL9sZwbTech/b’s special teams better in victory/a font size=-1 color=#6f6f6fnobrAtlanta Journal Constitution/nobr/font/fontbrfont size=-1a href=http://www.citywebshopper.net/articles/includes/redirect.php?url=http://www.gwusports.com/ViewArticle.dbml%3FDB_OEM_ID%3D10300%26ATCLID%3D1601469cid=1255521052ei=S3D0SLf8K6CQ6AOp9OCSDQusg=AFQjCNEq5qjjrQB2HQtUIbQDrdBSpgPVMgGWU Upset Big Falls Short, 10-7, At Georgia bTech/b/a font size=-1 color=#6f6f6fnobrGardner Webb University Bulldogs/nobr/font/fontbrfont class=p size=-1a class=p href=http://news.google.com/news?sourceid=navclientie=ISO-8859-1rls=GGLG,GGLG:2005-22,GGLG:enncl=1255521052hl=ennobrall 205 news articles/nobr/a/font/div/font/td/tr/table
table border=0 width= valign=top cellpadding=2 cellspacing=7trtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://www.citywebshopper.net/articles/includes/redirect.php?url=http://www.dallasnews.com/sharedcontent/dws/bus/ptech/stories/101408dnbusaginglab.3bee7b4.htmlcid=1257512005ei=S3D0SLf8K6CQ6AOp9OCSDQusg=AFQjCNHk6QZUoS7MoHmOoTBYE2nmrubJogRobots and sensors to help elderly stay independent/abrfont size=-1font color=#6f6f6fDallas Morning News,nbsp;TXnbsp;-/font nobr6 hours ago/nobr/fontbrfont size=-1The UTA lab houses a make-believe one-bedroom apartment equipped with high-btech/b cameras, motion sensors and robots, and surrounded by computer stations. b.../b/font/div/font/td/tr/table
table border=0 width= valign=top cellpadding=2 cellspacing=7trtd width=80 align=center valign=topfont style=font-size:85%;font-family:arial,sans-serifa href=http://www.citywebshopper.net/articles/includes/redirect.php?url=http://seattlepi.nwsource.com/business/383087_taves14.htmlcid=1257496120ei=S3D0SLf8K6CQ6AOp9OCSDQusg=AFQjCNHXGXarasB-sxCnWr0c45DCIhBs1wimg src=http://news.google.com/news?imgefp=5lWIvVdVt0IJimgurl=seattlepi.nwsource.com/dayart/20081014/226taves14.jpg width=76 height=80 alt= border=1brfont size=-2Seattle Post Intelligencer/font/a/font/tdtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://www.citywebshopper.net/articles/includes/redirect.php?url=http://seattlepi.nwsource.com/business/383087_taves14.htmlcid=1257496120ei=S3D0SLf8K6CQ6AOp9OCSDQusg=AFQjCNHXGXarasB-sxCnWr0c45DCIhBs1wConsumer bTech/b: Build a better home-theater PC and save $/abrfont size=-1font color=#6f6f6fSeattle Post Intelligencernbsp;-/font nobr7 hours ago/nobr/fontbrfont size=-1If building a PC sounds like a good idea -- and the bpersonal/b satisfaction and customization options are two reasons it should -- borrow or buy a copy of the b.../b/font/div/font/td/tr/table
table border=0 width= valign=top cellpadding=2 cellspacing=7trtd width=80 align=center valign=topfont style=font-size:85%;font-family:arial,sans-serifa href=http://www.citywebshopper.net/articles/includes/redirect.php?url=http://seattlepi.nwsource.com/cfootball/2061ap_fbc_t25_nebraska_texas_tech.htmlcid=1255910265ei=S3D0SLf8K6CQ6AOp9OCSDQusg=AFQjCNG09wu_zzwIfxm9GC3i4UvWZssYpgimg src=http://news.google.com/news?imgefp=4eA1iEPZidUJimgurl=seattlepi.nwsource.com/dayart/aponline/56453.25Nebraska-Texas-Tech-Football.sff.jpg width=80 height=61 alt= border=1brfont size=-2Seattle Post Intelligencer/font/a/font/tdtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://www.citywebshopper.net/articles/includes/redirect.php?url=http://www.sportsnetwork.com/merge/tsnform.aspx%3Fc%3Dsportsnetwork%26page%3Dcfoot/news/news.aspx%3Fid%3D4185014cid=1255910265ei=S3D0SLf8K6CQ6AOp9OCSDQusg=AFQjCNESuRRKXespcRulAiD-vb00EJxeTQBig 12 Conference News and Notes/abrfont size=-1font color=#6f6f6fSports Networknbsp;-/font nobr21 hours ago/nobr/fontbrfont size=-1NEBRASKA - The Cornhuskers rebounded from a 14-point second half deficit, but fell to the then seventh-ranked Texas bTech/b Red Raiders in Lubbock, b.../b/fontbrfont size=-1a href=http://www.citywebshopper.net/articles/includes/redirect.php?url=http://deathrattlesports.com/200810131453/Nebraska-Cornhuskers/Football/Huskers-suffer-third-straight-defeat-to-Texas-Tech-in-overtime-37-31.htmlcid=1255910265ei=S3D0SLf8K6CQ6AOp9OCSDQusg=AFQjCNFZGD4Rx9Vz-HMLolCE3GDsm58mmAHuskers suffer third straight defeat to Texas bTech/b in overtime 37-31/a font size=-1 color=#6f6f6fnobrDeathRattleSports.com/nobr/font/fontbrfont size=-1a href=http://www.citywebshopper.net/articles/includes/redirect.php?url=http://www.iht.com/articles/ap/2008/10/12/sports/FBC-On-Football-Big-12.phpcid=1255910265ei=S3D0SLf8K6CQ6AOp9OCSDQusg=AFQjCNGhcdtr0TQ2NGnsEEhRTcjw31GYOQBig 12 season more fun, exciting than ever/a font size=-1 color=#6f6f6fnobrInternational Herald Tribune/nobr/font/fontbrfont size=-1a href=http://www.citywebshopper.net/articles/includes/redirect.php?url=http://texastech.scout.com/2/800266.htmlcid=1255910265ei=S3D0SLf8K6CQ6AOp9OCSDQusg=AFQjCNFbqE29vDyFQQPzW8S3L1yYtuP58gTexas bTech/b Nebraska Report Card/a font size=-1 color=#6f6f6fnobrRaiderPower.com/nobr/font/fontbrfont size=-1 class=pa href=http://www.citywebshopper.net/articles/includes/redirect.php?url=http://nebraska.scout.com/2/799941.htmlcid=1255910265ei=S3D0SLf8K6CQ6AOp9OCSDQusg=AFQjCNEEsk7dia-dJ6fictAlCif96zutxAnobrBig Red Report/nobr/anbsp;- a href=http://www.citywebshopper.net/articles/includes/redirect.php?url=http://www.kansascity.com/sports/story/837413.htmlcid=1255910265ei=S3D0SLf8K6CQ6AOp9OCSDQusg=AFQjCNEiju0q0jvlbX1mF1aEJzron2e2FAnobrKansas City Star/nobr/a/fontbr/font class=p size=-1a class=p href=http://news.google.com/news?sourceid=navclientie=ISO-8859-1rls=GGLG,GGLG:2005-22,GGLG:enncl=1255910265hl=ennobrall 413 news articles/nobr/a/font/div/font/td/tr/table
table border=0 width= valign=top cellpadding=2 cellspacing=7trtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://www.citywebshopper.net/articles/includes/redirect.php?url=http://www.bloomberg.com/apps/news%3Fpid%3D20601109%26sid%3DaQrvih5gg0Cs%26refer%3Dhomecid=1257110593ei=S3D0SLf8K6CQ6AOp9OCSDQusg=AFQjCNGN6R8ARuwaNC0Puzp-qcehSw51ZgIntel, Microsoft Squeezed by $170 Billion Budget Cuts (Update3)/abrfont size=-1font color=#6f6f6fBloombergnbsp;-/font nobr13 hours ago/nobr/fontbrfont size=-1b.../b whose chips run more than three-quarters of the world#39;s bpersonal/b computers, kicks off two weeks of third-quarter reports from btechnology/b companies. b.../b/font/div/font/td/tr/table
table border=0 width= valign=top cellpadding=2 cellspacing=7trtd width=80 align=center valign=topfont style=font-size:85%;font-family:arial,sans-serifa href=http://www.citywebshopper.net/articles/includes/redirect.php?url=http://news.stv.tv/internet-technology/33922-eu-warns-youth-to-turn-down-mp3-players/cid=1256954415ei=S3D0SLf8K6CQ6AOp9OCSDQusg=AFQjCNGc3fA5mOOFm8qzzxux00FSwD_Vxwimg src=http://news.google.com/news?imgefp=EHJhAxCfYhkJimgurl=news.stv.tv/assets/img/feedImg/33922-eu-warns-youth-to-turn-down-mp3-players-200.jpg width=80 height=80 alt= border=1brfont size=-2stv.tv/font/a/font/tdtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://www.citywebshopper.net/articles/includes/redirect.php?url=http://tech.blorge.com/Structure:%2520/2008/10/13/tech-scare-loud-mp3-players-can-damage-your-hearing-no-really/cid=1256954415ei=S3D0SLf8K6CQ6AOp9OCSDQusg=AFQjCNEwG0_s41KNei43zVpl9n01WNf86AbTech/b scare: Loud MP3 players can damage your hearing - No really?/abrfont size=-1font color=#6f6f6fTECH.BLORGE.com,nbsp;Australianbsp;-/font nobrOct 12, 2008/nobr/fontbrfont size=-1This has lead to suggestions of limiting the maximum volumes on bpersonal/b media players to 90 decibels. For starters, how much did these experts get paid to b.../b/fontbrfont size=-1a href=http://www.citywebshopper.net/articles/includes/redirect.php?url=http://www.efluxmedia.com/news_EU_MP3_Players_Put_10_Millions_Listeners_At_Risk_Of_Permanent_Hearing_Loss_26452.htmlcid=1256954415ei=S3D0SLf8K6CQ6AOp9OCSDQusg=AFQjCNET7N581AbsgXLoi6zvSIfKtCnN0gEU: MP3 Players Put 10 Millions Listeners At Risk Of Permanent b.../b/a font size=-1 color=#6f6f6fnobreFluxMedia/nobr/font/fontbrfont class=p size=-1a class=p href=http://news.google.com/news?sourceid=navclientie=ISO-8859-1rls=GGLG,GGLG:2005-22,GGLG:enncl=1256954415hl=ennobrall 345 news articles/nobr/a/font/div/font/td/tr/table
table border=0 width= valign=top cellpadding=2 cellspacing=7trtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://www.citywebshopper.net/articles/includes/redirect.php?url=http://webworkerdaily.com/2008/10/09/open-thread-hows-your-personal-tech-spending/cid=0ei=S3D0SLf8K6CQ6AOp9OCSDQusg=AFQjCNF_DDrKC-D8m-OTIAcf2U4pk_8yDwOpen Thread: How’s Your bPersonal Tech/b Spending?/abrfont size=-1font color=#6f6f6fWebWorkerDaily,nbsp;CAnbsp;-/font nobrOct 9, 2008/nobr/fontbrfont size=-1As the larger economic picture continues to look dismal, the reverberations are being felt within the btech/b sector. As our parent blog GigaOM reports, b.../b/font/div/font/td/tr/table
personal tech - Google News

Nephrology and Dialysis For a PDA

Saving Lives With A Pocket PCFree medical downloads can be... Read More

Getting Started with HTML

The basic language of the internet is html. If you... Read More

Do Higher Digital Camera Prices Mean Better Cameras?

Understanding digital camera prices makes finding the best camera value... Read More

Tips For Finding Great Deals On Computer Accessories & Supplies

Tip #1. Do a Google search. Don't be to general... Read More

Cisco Certification: The Most Important Cisco Study Youll Ever Do

All of us are familiar with the pyramids of Egypt.... Read More

EDTV: What You Should Know Before You Make That Purchase

Enhanced Definition Television ? also known as EDTV ? is... Read More

Looking For an MP3 Player?

If you don't have an mp3 player, and even if... Read More

Occupational Therapy and PDAs

Occupational Therapy Made EasierMedical downloads for the pda have improved... Read More

Why Build Your Own Gaming Computer?

The best way to get the gaming computer that you... Read More

Taking Advantage of the iPod Experience

Music lovers have been carrying around radios and other bulky... Read More

Selecting a Personal Digital Assistant

A Computer in Your HandCarrying around an address book and... Read More

How to Switch to Firefox and Why You should

First things first, what is Firefox? Well, it's a browser.... Read More

Printing Multiple Copies of Photos

I do a holiday letter every year and send them... Read More

PC Owners - The Largest Criminal Gang Ever?

The year is 1981. IBM has just released the Personal... Read More

Flow Text Around a Graphic in Microsoft Word

Flow Text Around a GraphicQuestion: I have inserted a photo... Read More

D2X Digital SLRCoolpix 8800 Actually Refers to Two Nikon Cameras

Addressing a D2X Digital SLRCoolpix 8800 search, this article provides... Read More

Buying A PC Flat Screen Monitor

For six years, my Samsung PC 13.8 inch SyncMaster conventional... Read More

Computer Consulting 101 PC Troubleshooting Advice

While most small businesses really do need to find a... Read More

Internet Explorer Shortcuts for Mouse-o-phobes

If you're like me, you occasionally find the ubiquitous mouse... Read More

Ergonomics and Healthy Computing - Positioning Your Body For Maximum Comfort At Your Computer

Do you remember the old saw about how computers would... Read More

Healthy Webmasters Choose Ergonomic Computer Products

Webmasters usually sit at their computers much longer in a... Read More

How I Started Working With 3D Modeling Programs

So I'll start from the very beginning.One day I was... Read More

Registry Tools Demystified

Not sure what Windows registry is or how it works?... Read More

Compare MP3 Players for the Coolest Features and Sweetest Deals

How can you compare mp3 players to be sure you're... Read More

Put Order and Information into File Names

Unless you place your faith in internal search engine software... Read More