Showing posts with label Resources. Show all posts
Showing posts with label Resources. Show all posts

Monday, November 15, 2010

RHCSS: The Security Specialization with Top Demand


In spite of the economic crises in the past years, IT security is the one field which is relatively resilient. IT companies are giving more importance to protect their critical network infrastructure. Security problems that threat IT companies increased the demand for security certifications among IT professionals and their employers.   Hence security certifications are having hot demand and does not seem to be cooling down. In the recent research by analyst Foote Partners there is premium demand for professionals with IT security certifications in government organizations, enterprises or small and medium size businesses.  

Web security IT staff with security skills are in short supply. There is sure to be an increasing demand for security specialists, especially Web security, given the massive increase in the number of Web-based application users.
    
What certifications are in demand?
    
The latest certification in security is Red Hat’s which is designed to make a person apt to run Red Hat Enterprise Linux in a secure fashion. Red Hat certifications are undoubtedly considered as best in Linux. Red Hat Certified Security Specialist (RHCSS) is top level certification to solve security threats at enterprises. Being a RHCSS you can take on more challenging assignments and thus receive recognition. This course provides skills to configure common network services and security management using Linux.
    
 "Between this time last year and today, the number of people who have passed [the Red Hat Certified Security Specialist] exam has grown by 70%," says Randy Russell, director of certification at Red Hat in networkworld.com.
    
To earn RHCSS Certification, you need to successfully complete three mandatory modules:
    
RHS333:  Enterprise Network Services Security
RH423: Enterprise Directory Services and Authentication
RHS429: SE Linux Policy Administration

RHCSS certification is performance based and is harder to obtain unless you get intensive class room training and lab sessions. Training for Red Hat certifications from IPSR, who is an Authorized Red Hat Training Partner, is proven to be number one in the IT training scenario. IPSR is recognized as a leader in training of Linux and Red Hat has honored us with GLS Asia-Pacific awards for training excellence, during the years 2008, 2009 and 2010. We are proud to declare that IPSR is identified as reputed Linux training partner by many MNC’s

IPSR was the first training partner in South Asia to conduct RHCSS exams, have conducted more than 250 RHCSS exams and now conducts RHCSS exams every week. 1 out of 3 RHCSSs in South Asia is an IPSRian and it is not wonder that students from more than 50 countries, including CEOs and CTOs of IT companies, IT Directors, Project Managers is choosing IPSR, to obtain the most trusted Linux security certification in the world.

Tuesday, September 7, 2010

Bash Commands For Programmers


Bash is an sh-compatible shell that incorporates useful features from the Korn shell (ksh) and C shell (csh). It offers functional improvements over sh for both programming and interactive use; these include command line editing, unlimited size command history, job control, shell functions and aliases, indexed arrays of unlimited size, and integer arithmetic in any base from two to sixty-four. Bash can run most sh scripts without modification. Bash Tricks are widely used for both programmers and system administrators. But this article focus about the tricks for bash programmers
Bash has several commands that comes with the shell (i.e built inside the bash shell). When you execute a built-in command, bash shell executes it immediately, without invoking any other program. Bash shell built-in commands are faster than external commands, because external commands usually fork a process to execute it.

Join Command

Join command combines lines from two files based on a common field.
In the example below, we have two files – employee.txt and salary.txt. Both
have employee-id as common field. So, we can use join command to combine
the data from these two files using employee-id as shown below.

# cat name.txt
1 bob
2 john
3 sunil
4 jane
5 alice

# cat percentage.txt
1 80%
2 90%
3 69%
4 56%
5 89%

# join name.txt percentage.txt
1 bob 80%
2 john 90%
3 sunil 69%
4 jane 56%
5 alice 89%

Export Command Example

export command is used to export a variable or function to the environment of all the child processes running in the current shell.

#export variablename=value
#export -f functionname # exports a function in the current shell.

It exports a variable or function with a value. “env” command lists all the environment variables. In the following example, you can see that env displays the exported variable.


# export ipsr=redhat
# env
GDM_XSERVER_LOCATION=local
PWD=/root
INPUTRC=/etc/inputrc
XMODIFIERS=@im=none
ipsr=redhat
LANG=en_US.UTF-8
KDE_IS_PRELINKED=1
GDMSESSION=gnome

# echo $ipsr
redhat

“export -p” command also displays all the exported variable in the current shell.

hash Command Example

hash command maintains a hash table, which has the used command’s path names. When you execute a command, it searches for a command in the variable $PATH.
But if the command is available in the hash table, it picks up from there and executes it. Hash table maintains the number of hits encountered for each commands used so far in that shell.

# hash
hits command
1 /bin/egrep
18 /usr/bin/ac
3 /usr/bin/man
1 /usr/bin/clear

You can delete a particular command from a hash table using -d option, and -r option to reset the complete hash table.

#hash -d egrep
# hash
hits command
18 /usr/bin/ac
3 /usr/bin/man
1 /usr/bin/clear


readonly Command Example

readonly command is used to mark a variable or function as read-only, which can not be changed further.
# readonly computer=IT
#echo $computer
IT
#read computer
CSE
bash: computer: readonly variable

test Command Example

test command evaluates the conditional expression and returns zero or one based on the evaluation. Refer the manual page of bash, for more test operators.
#! /bin/bash

if test -z $1
then
echo "The positional parameter \$1 is empty"
fi
Note: Here ‘z’ option checks the length of STRING is zero

set Command Examples

set is a shell built-in command, which is used to set and modify the internal variables of the shell. set command without argument lists all the variables and it’s values. set command is also used to set the values for the positional parameters.
$ set +o history # To disable the history storing.
+o disables the given options.

$ set -o history
-o enables the history

$ cat set.sh
var="Welcome to ipsr"
set -- $var
echo "\$1=" $1
echo "\$2=" $2
echo "\$3=" $3

$ ./set.sh
$1=Welcome
$2=to
$3=ipsr

Note: The args follwed by “–-” option is used to set the values to the positional parameter. If no arguments follow this option, then the positional parameters are unset.

unset Command Examples

unset built-in is used to set the shell variable to null. unset also used to delete an element of an array and to delete complete array.
$ cat unset.sh
#!/bin/bash
#Assign values and print it
var="welcome to ipsr"
echo $var

#unset the variable
unset var
echo $var

$ ./unset.sh
welcome to ipsr
In the above example, after unset the variable “var” will be assigned with null string.

let Command Example

let commands is used to perform arithmetic operations on shell variables.
$ cat arith.sh
#! /bin/bash

let arg1=12
let arg2=11

let add=$arg1+$arg2
let sub=$arg1-$arg2
let mul=$arg1*$arg2
let div=$arg1/$arg2
echo $add $sub $mul $div

$ ./arith.sh
23 1 132 1

printf Command Example

Similar to printf in C language, bash printf built-in is used to format print operations.
In the above example, the script does arithmetic operation on two inputs. In that script instead of echo statement, you can use printf statement to print formatted output as shown below.
In arith.sh, replace the echo statement with this printf statement.
printf "Addition=%d\nSubtraction=%d\nMultiplication=%d\nDivision=%f\n" $add $sub $mul $div

$ ./arith.sh
Addition=23
Subtraction=1
Multiplication=132
Division=1.000000

Display total connect time of users

Ac command will display the statistics about the user’s connect time.
Connect time for the current logged in user
With the option –d, it will break down the output for the individual days. In
this example, I’ve been logged in to the system for more than 6 hours today.

On Dec 1st, I was logged in for about 1 hour.
$ ac –d
Dec 1 total 1.08
Dec 2 total 0.99
Dec 3 total 3.39
Dec 4 total 4.50
Today total 6.10



To display connect time for all the users use –p as shown below. Please note
that this indicates the cumulative connect time for the individual users.

$ ac -p
user1 3.64
root 229.12
user2 88.17
john 105.92
jane 111.42
total 538.27

To get a connect time report for a specific user, execute the following:

$ ac -d root
Aug 13 total 13.30
Aug 14 total 13.49
Aug 16 total 17.67
Aug 17 total 20.20
Aug 18 total 15.41
Aug 19 total 58.67
Aug 26 total 31.13
Aug 28 total 51.24
Today total 8.35

posted by:
IPSR linuxgroup

Monday, February 1, 2010

Open Source in Demand

For all those Doubting Thomases who are sceptical about the longevity of Open Source technology, last year's recession provided the answer - Open Source is here to stay. Companies revisited their IT strategies and whole-heartedy embraced Open Source to reduce IT costs. In a move towards transparency and openness the White house has also adopted this technology.

Saturday, December 5, 2009

Migrate to Linux - Redhat Virtual Experience

Linux Made Easy
Are you one of those persons who wants to migrate to Linux, but can't figure out how. This is your chance.
You can join the Redhat Virtual Experience on December 9, 2009 for the Red Hat Virtual Experience, an event focused on Red Hat Enterprise Linux solutions, including virtualization and cloud computing. And you can enjoy the webinar from the comfort of your couch or workstation. Isn't that just great?
For more details, visit Redhat Virtual Experience.

Monday, August 24, 2009

CCIE R&S Documentation Usage - Help Guide for CCIE Beginners

So today I am just trying to help the CCIE beginners to browse Documentation more effectively. In my opinion, only if you are very familiar and confident in doc usage, can you win in lab at first attempt. As you know even if you skip one task in a subsection you will lose marks for the entire subsection.

My study method was like this (I used almost all well known materials for CCIE ). CBT > COD > Cisco Press Books > Blog > Cisco DOC among all DOC is most accurate and very useful for Exam and is a Live Problem solver!! For Exam you have to notice where exactly each blueprint topic is situated in DOC. If you try to study things directly from Doc you will automatically become familiar with it. My own way to browse documentation is like this, for routing topics (I will explain way to switch topics later).
This is the starting of Documentation
http://cisco.com/cisco/web/psa/default.htmlProducts > Cisco IOS and NX-OS Software > Cisco IOS > Cisco IOS Software Release 12.4 Family > Cisco IOS Software Releases 12.4 T. (click)here you will get a new page. Two Main and Important link here is "Configuration Guides" & "Command References". Configuration_guide explain things in detail with appropriate examples (very good stuff). We can browse Command_References with topic wise commands, here also you can find some example configurations.

Blue print topics mainly on
IPCisco IOS IP Addressing Services Configuration Guide, Release 12.4T
Cisco IOS IP Application Services Configuration Guide, Release 12.4T
Cisco IOS IP Multicast Configuration Guide, Release 12.4T
Cisco IOS IP Routing Protocols Configuration Guide, Release 12.4T
Cisco IOS IPv6 Configuration Guide, Release 12.4T

Network Management
Cisco IOS IP SLAs Configuration Guide, Release 12.4T
Cisco IOS Network Management Configuration Guide, Release 12.4T

QoS
Cisco IOS Quality of Service Solutions Configuration Guide, Release 12.4T

Security and VPN
Cisco IOS Security Configuration Guide: Securing the Data Plane, Release 12.4T
Cisco IOS Security Configuration Guide: Securing User Services, Release 12.4T

WAN
Cisco IOS Wide-Area Networking Configuration Guide, Release 12.4T
You can open all these in various tabs and search for Blueprint topics. Later I will help you to find out blueprint topics from these pages.

Reneesh A
CCIE Faculty
IPSR Calicut

Thursday, August 6, 2009

Friday, May 29, 2009

Tuesday, May 19, 2009

Does IT education still hold value?

For those of you who are computer science Graduates and wondering whether you are ill-equipped for this present job market, maybe this article from Network World might shed some light. To read the article click here ...

Saturday, April 25, 2009

10 reasons IT certification will be important in 2009

For those who are wondering whether IT Certifications are relevant in this recession, here are ten reasons listed by Eric Eckel in Tech Republic. Erik Eckel is president of two privately held technology consulting companies. He previously served as executive editor at TechRepublic.

Friday, April 17, 2009

Redhat is the Best

"East or West, Redhat is the Best "
The 2009 IDC MarketScape Report says that Redhat is the #1 in IT Education. Here are the
Highlights
# Consistent with Red Hat's perception that training is a wedge to achieve broader adoption of its offerings, training is available for each release and is updated for every dot release.
# Uniquely, Red Hat offers broad release of most training during the beta-test phase of its product release cycle, facilitating user and professional services community input into the quality and format of its training offering.
# Because of its community-oriented product development, Red Hat is particularly collaborative in its training development and evaluation. Regularknowledge sharing occurs between Red Hat University, services on-boarding teams (early users of most training), engineering/core teams (engineering subject matter experts), and the Red Hat Training and Certification team (training delivery).
# Red Hat leverages advisory boards to help maintain the relevance of its certifications and engages with internal (as mentioned previously) and external communities (such as a Red Hat Certified Engineer [RHCE] focus groups). The process revolves around "DocZilla" — the complete compendium of current Red Hat technical and training data contained in a broadly accessible content management system.
# Its certifications are primarily role based, often crossing the functional use of one or more products.
# Red Hat Training impacts future Red Hat deployment: Red Hat reports that in the Fortune 250, enterprises with at least one RHCE on staff result in six times more business to Red Hat than those without any RHCE on staff. IDC believes this reflects the enterprise readiness value of training and certification.

Wednesday, March 25, 2009

Live Problem and Solution

Yesterday one of my old students now working in Bangalore called me for a help. The problem is this. He needs to backup the configuration of a voice gateway router situated in UK to the PC in Bangalore. He started TFTP server in his PC accessed the router via telnet. While issuing the “copy running-config tftp” he got the error message says router 'can’t access the tftp server.'

See the mailed result

2851BR5A_01#copy running-config tftp:Address or name of remote host []? 25.91.170.125Destination filename [2851br5a_01-confg]?Writing 2851br5a_01-confg%Error writing tftp://10.91.170.157/2851br5a_01-confg

Here the problem is in his path to TFTP server there may some firewalls blocking his TFTP traffic. Most of firewalls will block TFTP traffic (port 69) but allow FTP traffic. To confirm the problem we can traceroute to the TFTP port for that issue the command from privilege mode.

2851BR5A_01#traceroute 25.91.170.125 port 69

Traceroute result of TFTP

2851BR5A_01#traceroute 25.91.170.125 port 69
Type escape sequence to abort.Tracing the route to 25.91.170.125
1 25.255.120.19 0 msec 0 msec 0 msec 2 25.255.127.75 0 msec 0 msec 0 msec 3 25.216.58.89 4 msec 0 msec 0 msec 4 25.212.37.93 204 msec 204 msec 200 msec
*
*

Traceroute result of ftp

2851BR5A_01#traceroute 25.91.170.125 port 20
Type escape sequence to abort.Tracing the route to 25.91.170.125
1 25.255.120.19 0 msec 0 msec 0 msec 2 25.255.127.75 0 msec 0 msec 0 msec 3 25.216.58.89 4 msec 0 msec 0 msec 4 25.212.37.93 204 msec 204 msec 200 msec 5 25.212.37.94 244 msec 296 msec 204 msec 6 25.91.160.5 296 msec 232 msec 296 msec 7 25.91.170.125 264 msec 348 msec 312 msec

(NOTE here tftp traffic is being dropped while ftp traffic is permitted by firewalls)


If we got message form the same ip like “25.91.170.125 264 msec 348 msec 312 msec” there is no filtration. But in this case the problem is with firewall.

The solution

There may be many solutions to this problem. Some solutions came into my mind I told him.

call his top level administrator and tell him to allow his TFPT traffic. (its not a good solutions since TFTP is not a secure protocol unlike FTP)
Use a FTP server instead of TFTP server
Use a TFTP server in the same LAN of the voice gateway or before the firewall.
Back up the Startup configuration file from NVRAM to Flash memory of the same router.

Solution 1 &3 doesn’t need much explanation

Explanation of solution 2

Down load and install a ftp server in local LAN in Chennai. Create one user in ftp application for example username is cisco with password cisco

In router create the same ftp user using the command

ip ftp username ciscoip ftp password 0 cisco

then issue the command “copy running-config ftp”
OR “copy running-config ftp://cisco:cisco@10.91.170.157/

Explanation solution 4
If we have enough flash size we can backup configuration in flash itself. In copy command if we didn’t specify destination location the default location is in flash.
We can use command “copy run configbackup” for this solution.
He used the second solution and now he using ftp instead of TFTP. Remember even if TFTP is faster than FTP its not secure.


Reneesh A
CICSO Faculty
IPSR Kochi

Wednesday, February 11, 2009

IT Certifications will rule in 2009

Larry Dignan, Editor in Chief of ZDNet and Editorial Director of ZDNet sister site TechRepublic lists 10 reasons as to why IT Certifications will be important in 2009. Read his post at http://blogs.zdnet.com/BTL/?p=11349&tag=rbxccnbzd1

Thursday, February 5, 2009

Importance of CCNP Certification

Cisco Certified Network Professional is for those who would like a professional certification in the networking field. CCNP test your skill in installation, configuration and maintaining larger networks. The protocols that you need to be proficient in are EIGRP, OSPF, IS-IS, BGP. Route Redistribution, Route summarization, Extended Access Lists, VLANs, Ethernet, Access Lists, 802.10. It indicates advanced knowledge of networks. In order to appear for CCNP a pass in CCNA is a perquisite. It requires four exams which may be taken in any order.

* Building Scalable Cisco Inter-networks (BSCI)
* Building Cisco Multilayer Switched Networks (BCMSN)
* Implementing Secure Converged Wide Area Networks (ISCW)
* Optimizing Converged Cisco Networks(ONT)

Who Needs CCNP?

CCNP certification is aimed at full-time network or system administrators, or those who work with local and/or wide area network infrastructure. Cisco CCNP is for those who are proficient in installation, configuration and troubleshooting LAN/WANs for enterprise networks can opt for this exam. Those who want to go for CCIE exam can fare better at CCIE if they pass the CCNP. CCNP Cisco course lays emphasis is on topics of security, converged networks, virtual private networks broadband technologies and implementation Quality of Service.

Why CISCO Certification?

Here are a few reasons:

* Cisco Certification gives you a better pay.
* Cisco Professionals rank as highest paid employers
* Cisco Certified is a respectable position in the Networking industry.
* In case you are already in the industry, Cisco Certification gives you 15% to 20% increase in salary and other benefits.
* Surveys speak for themselves. Average incomes of CCNA- $45,000; CCIE- $60,000; CCNP-$55,000

Level of Expertise
Cisco Certifications are offered in an increasing level of expertise

* Associate level is the apprenticeship or foundation level. The corresponding certification is CCNA-Cisco Certified Network Associate
* Professional level certifications are for those who have passed out the foundation level and have enough of experience in the industry. The corresponding certifications are CCNP-Cisco Certified Network Professional, CCDP- Cisco Certified Design Professional, CCIP-Cisco Certified Internet work Professional, CCSP- Cisco Certified Security Professional
* Expert level is the highest category of certification; the corresponding certification is CCIE- Cisco Certified Internet work Expert.

Cash in on the RIM Boom at IPSR

Businesses today face a considerable challenge to effectively optimize their IT infrastructure and related operations and deliver ever-improving service levels to meet and go beyond the expectations of their business-users without compromising on quality and security. More and more companies are turning towards Infrastructure Management Service as the answer to this need.

Remote Infrastructure Management at one level is an alternative to existing sourcing models of Infrastructure Management Services. Remote Infrastructure Management services consist of remote (outside the physical premises of a company’s facilities) monitoring and managing the infrastructure components and taking practical steps and remedial actions across the IT landscape. The Remote Monitoring and Management is undertaken through a blend of offshore/near-shore/global delivery center which is often termed as an Operations Management Centre (OMC), where expert staff of a service provider monitor and manage the infrastructure, ensuring uptimes and availability.

Over the past few years, the infrastructure outsourcing industry has witnessed substantive shifts - average deal values have reduced by nearly 70 per cent, deal durations shortened by approximately 20 per cent, and offshore vendors are entering the “top 100 deals ” league tables - all this while the overall market continues to grow. The global Remote Infrastructure Management (RIM) industry has grown at more than 80 per cent CAGR from US$2 billion in 2006 to US$6 billion to US$7 billion in 2008. India has been a major beneficiary of this shift. By increasing RIM services, the Indian IT industry is moving towards becoming a fully integrated service provider,” Mr Som Mittal, President, Nasscom, said. Key drivers behind these shifts include enterprise customers that seek to enhance service and performance levels while exploring innovative delivery models to reduce costs, technology that has enhanced infrastructure efficiency and management and maturing offshore capabilities.


Indian IT firms realize they can no longer just look at point products. The trend is to work with networking vendors that offer:
· Secure and scalable infrastructure
· World-class service and support
Outsourcing
Here are seven reasons why you should outsource your IT infrastructure management to someone on the other side of the planet (other than the fact that it’s up to 10-fold cheaper
1. Expertise: Increased automation with integrated tools provides a common framework for operations
2. Best practices: Vendors work with multiple enterprises. There's a cross-pollination of ideas, learning and best practices.
3. Quality: The infrastructure services provider is the specialist. It's his core business.
4 Scalability: Let the supplier absorb the peaks and troughs of manpower needs.
5 Visibility: Greater reporting and control—online tools provide CIOs with greater visibility, real-time control, plus historical reporting.
6 The SLAs: Tough, precise service-level agreements in black and white, with penalty clauses for downtime.
7 Specialists on tap 24x7: Businesses don't have to worry about hiring, training, retaining and retraining ERP, Unix, database, web and other experts
According to a report released by Nasscom RIM as an industry could realize $26-28 billion in revenue by 2013, with India capturing as much as 50-55 per cent share of this. The majority of growth is likely to come from off shoring midrange services, and network towers, likely to account for about 70 per cent of the overall opportunity, during this time. In terms of industries, the banking, financial services, and insurance industries would lead this growth, followed by telecom.


HP expects growth in segments such as storage, networking and virtualization, where IT spends were likely to increase next year, whereas spending on hardware such as servers are expected to go down, it said at the HP Storage Works Executive Forum 2008 in Penang.
A report published by IDC Research says "Companies are spending less on servers overall, and they are consolidating their position on servers,”. It is made possible by Virtualization - a technology that creates several virtual machines from one physical machine, thus it drives costs out of business. It can also help to save more on power and cooling, and makes manageability and availability for business continuity better. It allows companies to better utilize their assets, which will increase their utilization.
IPSR helps the students to become a part of this RIM boom through our Learning Services division. RHCE course and certification would lead the students to a career in networking on Linux platform. We also provide CCNA and CCNP courses to bring students to the stream of WAN networking. These courses are real value and recession proof IT courses and provide excellent career opportunities for those who want to cash in on the RIM boom.

Great CCNA Exam Tips

CCNA is one of the most respected Associate level Certifications in the world today. Getting a CCNA will definitely help you to get a better job or at least get your foot into the Professional Networking Field. This article will describe the tips we give our students at IPSR to achieve CCNA.

1. Getting ready mentally:First thing you need to do is mentally prepare yourself. That is, you have to seriously think about why why you want to be CCNA certified. You have to firmly decide and believe that you will get CCNA within next 1-2 months or so. Try to budget your study time well. If you a very social person you will have to give up some of your socialising for the next couple of months. Since CCNA includes all the basics of networking you need to spend around 5 hrs per day for a fast track. Keep one thing in mind though; CCNA needs interest and dedication. it covers the most modern communication.
2. Step into the right institute: Find aninstitute with good lab infrastructure, reputation and good results. For a good start, you need a systematically prepared study material rather than a big text. Get an overall view of the topics. Master each chapter and tackle questions from just one chapter until you get sick of it with the help of your teacher. Then move on to the next chapter. Solve Previous Question papers. Practice each protocol with our well planned scenarios in Real Lab. That will make you a WAN expert. Your will be an expert after attending our WAN trouble shooting labs. You can repeat the Labs at your home by using the Router Simulations. Practice makes a man perfect.
3. Getting the right study material: The third thing you need to do is to get proper study material. There is a lot of controversy around this and some people go overboard with study guides, books, Router simulators and such. Cisco Press books INTR and ICND by Wendell Odom are enough as far as books go. They are really well written and easy to follow. Tata McGraw Hills CCNA is also a good reference. Other good stuff is video and audio tutorials like CBT Nuggets. You will get Best CBTs which are prepared by our own experts. To be an expert you should also familiar with installation and usage of some networking tools in real environment. Almost all resourses can be collected from our Resource Manager.
4. Schedule the test: When you schedule for online test you will become more serious about your studies naturally. If you are not comfortable with all topics at the end you can even reschedule the test before 24 hrs. You will get our special exam preparation classes for online exam.
5. Read books one more time to refresh: This is optional, but highly recommended. Reading books one more time before your exam.
6. Cram, Cram and Cram: This is the last part of your study and there is no turning back. The deadline is hanging around your neck like a noose. You should cram Q&A for no more then 10 days before you take the test. Don't do any studying the night or day before the test. Go out with your friends or significant other for a dinner and a movie. Relax. It is very important to relax and get a good night sleep since one of those testing boots could really be intimidating.
7. Interview Preparation.
If you work hard, our experts will make you pass at the first attempt itself. The next step is to win a job interview. Create a good cover letter and resume. You can find good formats which are created by our own expert; and you will get training in interview techniques and other tips. The Cisco Press The IT Career Builder's Toolkit By Matthew Moran is a good reference. After you attend our mock interview session you will be confident to attend any challenging interview.

Monday, June 23, 2008

Importance of International IT Certifications
According to a McKinsey report, the Indian IT industry will need an additional 1.1 million IT professionals by 2008, and the supply according to current trends will be just 865,000. So there is a potential shortfall of 235,000 professionals by 2008 if the current trends continue.
It is not because that this shortage is going to happen as per the current trends just because enough manpower is short in our country but in fact it is due to the simple reason that this isn't enough 'competent' manpower as per the industry requirements and standards. Out of the many possible solutions to overcome this problem, getting certified from an appropriate agencies with respect to a particular technology or product would definitely be an important remedy.
Another important fact is that the certification programme are not at all reserved for science graduates. It is evidently so because the industry has started seeing the benefits of deployment of IT as an enterprise level scale and this is transforming into demand for professionals with a blend of IT and business skills. Where at this high pace of competition one cannot distinguish from the other as far as the IT industry is concerned . Hence individuals with backgrounds of B.Com, BA, MBA etc. can too find highly rewarding careers through appropriate certification according to their aptitude and ability.
Almost all the IT certification programs, whether it be vendor specific or vendor neutral are formulated and implemented like Open University programs and does not require any formal explicit qualifications. This really allows and facilitates entry for all those who have the right aptitude but could not have a formal education in engineering or computer science.
The essence of certification programs is in fact a testing process where the candidate is required to undergo an examination at the designated test center. There are two methods adopted for testing namely online testing and offline testing.
Online Testing:
This is the popular method of testing for International Certification practice world over. The candidate will have to approach an authorised testing center near to his/her locality or convenient to him/her and undergo the testing process online which essentially means an examination through the Internet. Popular online examinations are CCIE, CCIP, CCNP, CCNA, MCSE, MCSA, MCP, A+, N+, SCLP …….. etc. Test centers of Thomson Prometric and Pearson Vue are the leading testing centers for International Certifications program, which are very popular in India.
Offline Testing:
In this method of testing, the examinations would be conducted at a designated test center but would not be in the online method. The candidate will be provided a problem scenario and he will be required to rectify the problem on-site, in front of a competent authority. This is often thought to be more credible since it's a live hands-on testing of skills of the candidate. The most renowned and popular offline International certification that exists today is the RHCE(Red Hat Certified Engineer) and RHCT(Red Hat Certified Technician). These renowned certifications can be taken at an authorized training partner of Red Hat. The examinations are directly supervised and evaluated by a Red Hat examiner. More details can be had from http://www.in.redhat.com/.
Coming to the point of which certification is to whom is a matter which is often delicate and most often depends on one's own potential and aptitude
Studies have shown that certified individuals realize many benefits. Among them are the following
Increased opportunities on the job
These opportunities range from salary and bonus increases to project involvement and promotion.
Increased breadth of knowledge
Certification is a catalyst for learning new technologies in a structured and comprehensive way.
Increased value to the organization
Organizations with 25 percent or more of their staff certified have been shown to deploy projects on time and within budget more often, rely less on external support, have less downtime, and have higher user satisfaction with their IT staff.
According to www.certcities.com, the Hottest ITCertifications Across the Globe - 2006 are as follows:
1.RHCE ( Redhat Certified Engineer)
2.MCTS (Microsoft Certified Technical Specialist: SQL & .NET)
3.MCA ( Microsoft Certified Architect)
4. a. CCSP (Cisco Certified Security Professional)
b. PMP ( Project Management Professional)
5.CCIE (Cisco Certified Internetworking Expert)
6.CCNP Cisco Certified Networking Professional)
7.MCSE ( Microsoft Certified System Engineer - Security)
8.SSCP ( System Security Certified Practitioner)
9.LPIC 2 ( Linux Professional Institute Certification)

IPSR
as a proven training and corporate services provider ,is in the constant efforts to conduct programmes that enable to bridge this knowledge gap. As pointed our earlier, International Certification programmes cater this need and we are imparting this through our training division.
This division runs International Certification Programmes-Redhat,Microsoft,Cisco and Sun Networks. Over the years we have produced excellent talent pool who are employed in organizations like Oracle,Cisco,Redhat,Wipro Technologies,Infosys Technologies to name a few. This speaks of the quality standards kept by us in imparting training services. Our alumni spans across Asia,the US and the Middle East.

We have been consistently achieving above 95 percentage score for RHCE and CCNA Certification Exams. Our Core expertise focuses on RHCE, RHCA, CCNA and MCSE International Certification Exams.
South Indian and Kerala Based IT opportunities and placement drives Visit the Career Center Link of this site www.ipsr.org/placements
Facts & Figures speaks for us
  • 1 out of every 10 RHCE in South ASIA is an IPSRian
  • 1 out of every 25 RHCE in the world is an IPSRian
  • Maximum number of Red Hat Cerified engineers with 100% score
  • 15 member Red Hat certified faculty crew to ensure high quality training and passrate
  • Consistent pass rate of 95 - 100% in RHCE exams
  • More than 95 pass rate for RHCE whereas the global passrate is 48%
  • 100% Pass & Score for CCNA exams
  • Winner of red Hat GLS National Awards for the year 2004, 2005, 2006 & 2007

    We welcome your feedback.
    Mail your queries to
    training@ipsrsolutions.com