If you have a home network and router you have probably struggled with port forwarding. There are several different reasons why you might need to forward a port from you router to a system on your network. One of the best resources I have found to help accomplish this is www.portforward.com. This site has directions on how to accomplish port forwarding on almost every mainstream router that exists. All you have to do is find your router in the list and click on it. This will bring you to a long list of application. Then all you have to do is find your application or game in the list and click on it. You will then be provided with step by step instructions on how to add the port forwarding rules to your router. So stop by and check out www.portforward.com. I think you will find it very useful. It is also great to send to family and friends so they can take care of this task themselves.
Portforward Site
http://www.portforward.com
I think Tech ED North America is one of the greatest tech events that only comes around once a year in North America. This years event will be held in New Orleans from June 7-10. This event allow you gain knowledge on not only current technologies but will also give you a sneak peak on new technologies cumming up. It is also a great spot to work on your Microsoft certifications. Without attending Tech Ed last year I would not have had the motivation to get my Enterprise Administrator certification. Probably the biggest benefit that allot of people overlook is the networking between IT Pros. As always I am sure they will also be plenty of opportunities to socialize during the evening hours. So take advantage of the current offer from Microsoft and sign up by February 28, 2010 and receive $200 off of your registration.
Tech ED 2010 Site
http://www.microsoft.com/events/techednorthamerica/
Performance Monitor is an essential tool in a server administrators life. This tool allows us to see deep down into the operating system to see what is actually going on. I am going to cover the performance counters I use the most over the next few weeks. This by far does not mean that these are the only counters you should look at. These are just the ones I have found to be very important.
One of the biggest areas we can look at is processor utilization to figure out how our server is performing. Below are the three main counters that we will be looking at today. The definitions are taken strait out of performance monitor.
- %Processor Time – The percentage of elapsed time that the processor spends to execute a non-Idle thread. It is calculated by measuring the percentage of time that the processor spends executing the idle thread and then subtracting that value from 100%. (Each processor has an idle thread that consumes cycles when no other threads are ready to run). This counter is the primary indicator of processor activity, and displays the average percentage of busy time observed during the sample interval. It should be noted that the accounting calculation of whether the processor is idle is performed at an internal sampling interval of the system clock (10ms). On todays fast processors, % Processor Time can therefore underestimate the processor utilization as the processor may be spending a lot of time servicing threads between the system clock sampling interval. Workload based timer applications are one example of applications which are more likely to be measured inaccurately as timers are signaled just after the sample is taken.
- %User Time – The percentage of elapsed time the processor spends in the user mode. User mode is a restricted processing mode designed for applications, environment subsystems, and integral subsystems. The alternative, privileged mode, is designed for operating system components and allows direct access to hardware and all memory. The operating system switches application threads to privileged mode to access operating system services. This counter displays the average busy time as a percentage of the sample time.
- %Privileged Time – The percentage of elapsed time that the process threads spent executing code in privileged mode. When a Windows system service in called, the service will often run in privileged mode to gain access to system-private data. Such data is protected from access by threads executing in user mode. Calls to the system can be explicit or implicit, such as page faults or interrupts. Unlike some early operating systems, Windows uses process boundaries for subsystem protection in addition to the traditional protection of user and privileged modes. Some work done by Windows on behalf of the application might appear in other subsystem processes in addition to the privileged time in the process.
Now that you have the Microsoft definition of these counters lets take a quick look at whats important. The first thing you want to look at is %Processor Time for all instances. If this counter stays below sixty percent the majority of the time the system is pretty healthy. If this counter is consistently between sixty and ninety percent you are going to want to look at the server closer. When this counter consistently stays above ninety percent you should be alarmed and look into what is consuming most of the CPU.
This is where the other two counters come into play. If most of the processor is being consumed in %User Time then you know it is an application like SQL or IIS that are consuming most of the resources. If the most of the process is being consumed by %Privileged Time then you know that your bottleneck is some where else like disk IO, memory, or network. When you are having a %Privileged Time issues it takes a little bit more investigation work to look at all the OS subsystems.
Hopefully you now know what some of the basic processor counters you should be looking at and why. In the next part of the series we will be looking at network interface counters.



