Showing posts with label process. Show all posts
Showing posts with label process. Show all posts

Saturday, January 3, 2009

Technician Data Recovery Evaluation

Data recovery is the most useful and by far the best way to retrieve data that has been lost or deleted from a hard drive. Hard drive recovery can restore files that have been lost, no matter what the cause may be. From viruses to crashes, data recovery can restore the files on your hard drive by rebuilding the platters and the structure of the drive. Before you hard drive can be rebuilt, it must be evaluated. The evaluation process will give the technician a chance to go through your hard drive, determine what caused the failure, and what they need to do to restore your data. This is a very extensive process that involving a series of steps performed by the technician.

First things first, the technician must determine if the problem is logical, physical, or possibly a combination of both. Physical failures result in hardware malfunctions, while the logical problems lie in the software. Once the technician has found the problem and the cause, he can plan out the repair process and what he needs to do to recover the information.

If the technician is able to gain access into the hard drive, he or she will then create a mirrored image of the drive and continue the process. The data structure will come next, where the technician will determine just how much of the data can be saved. This step in the evaluation can be the most time consuming, as the technician or technicians will have to go through each sector step by step and located what data can be retrieved and what data cannot be retrieved.

Once the evaluation process has been completed, the results will be given to you. The technician will normally go over everything with you, and explain the options you have available. This is where they will discuss pricing, as well as how long it will take. They will also let you know how much data can be retrieved, and what they think caused the problem. In the rare occasion that no data can be retrieved, the technician will tell you that nothing can be done for your hard drive. Keep in mind that before they do anything to retrieve data, they will always contact you first to find out what you want to do.

Normally, most data can be retrieved in as little as 48 hours. The evaluation process may take a few days, as it is more time consuming and planned out than the actual data recovery process. The evaluation process can take longer depending on the parts that are needed, or if other technicians need to be involved with the process. If the technician has all of the necessary parts on hand and the experience, it normally doesn’t take long.

Wednesday, December 24, 2008

Cisco CCNA Certification Exam Tutorial: The OSPF RID

OSPF is a major topic on your CCNA exam, as well it should be. OSPF is a widely-used WAN protocol, and you need to learn the fundamentals before moving on to more complicated configurations. One such detail is the OSPF Router ID, or RID.

The RID is the dotted decimal value by which other OSPF routers will identify a given OSPF router. There are some interesting defaults for this value, and a command you should know to hardcode the RID. You had also better know what has to happen for this command to take effect, so let's take a more detailed look at the OSPF RID.

In this example, R1 has an adjacency with R2 and R3 over the 172.12.123.0/24 frame network. R1 is the hub, with R2 and R3 as the spokes. No other interfaces are OSPF-enabled on any of the routers. Running show ip ospf neighbor on R1, we see some unusual values under "Neighbor ID", which is another name for the OSPF RID.

R1#show ip ospf neighbor

Neighbor ID Pri State Dead Time Address Interface

3.3.3.3 0 FULL/DROTHER 00:01:57 172.12.123.3 Serial0

2.2.2.2 0 FULL/DROTHER 00:01:57 172.12.123.2 Serial0

Notice the Neighbor ID of each remote address is the loopback address. How can that be if they’re not OSPF-enabled?

When determining the Router ID (RID) of an OSPF-enabled router, OSPF will always use the numerically highest IP address on the router’s loopback interfaces, regardless of whether that loopback is OSPF-enabled.

What if there is no loopback? OSPF will then use the numerically highest IP address of the physical interfaces, regardless of whether that interface is OSPF-enabled.

BOTTOM LINE: An interface does not have to be running OSPF to have its IP address used as the OSPF RID.

The OSPF RID can be changed, but it requires a restart or to reinitialize the OSPF routing process. Use the router-id command to change the default RID of each router as shown, and clear the OSPF process to do so.

R1#conf t

Enter configuration commands, one per line. End with CNTL/Z.

R1(config)#router ospf 1

R1(config-router)#router-id 11.11.11.11

Reload or use "clear ip ospf process" command, for this to take effect

R1#clear ip ospf process

Reset ALL OSPF processes? [no]: yes

1d05h: %OSPF-5-ADJCHG: Process 1, Nbr 3.3.3.3 on Serial0 from 2WAY to
DOWN, Neighbor Down: Interface down or detached

1d05h: %OSPF-5-ADJCHG: Process 1, Nbr 2.2.2.2 on Serial0 from 2WAY to
DOWN, Neighbor Down: Interface down or detached


After entering the router-id command, the router console informed you that you have to reload the router or reset the OSPF processes for this to take effect. You enter the clear ip ospf process command to do this. Notice that when you’re asked if you really want to do this, the prompt is “no”? That’s because all the OSPF adjacencies on this router will be lost and will have to begin the process again. That’s OK on a practice rack, not good in a production network. Don’t use that one at work.

The OSPF RID is not a complicated concept, but the fact that an interface doesn't have to be OSPF-enabled in order to have its IP address act as the RID takes some getting used to. And remember - when the router or switch asks you a question and the prompted answer is "no", take one step back and make sure you really want to do what you're about to do!