Wednesday, November 14, 2007

CCNP and CCIP

After getting CCNA certification, you usually will get confused in choosing between CCNP and CCIP. CCVP and CCSP usually pursued after getting CCNP, because CCNP is like the fundamentals for professionals. Both CCNP and CCIP requires 4 exams.

CCNP
642-901 BSCI Building Scalable Cisco Internetworks (BSCI)
642-812 BCMSN Building Cisco Multilayer Switched Networks (BCMSN)
642-825 ISCW Implementing Secure Converged Wide Area Networks (ISCW)
642-845 ONT Optimizing Converged Cisco Networks (ONT)

CCIP
642-901 BSCI
OR
642-892 Composite
Building Scalable Cisco Internetworks (BSCI)
642-642 QOS Implementing Cisco Quality of Service (QoS)
642-661 BGP Configuring BGP on Cisco Routers (BGP)
642-611 MPLS Implementing Cisco MPLS (MPLS)

CCNP, do this if you want to work for a mid size company. Maybe you like to deal with firewalls too or with operating systems. Pure CCNP employees needs to have other skills because their company need a good networking expertise also other skills. Requires:
* A CCNA standing
* Building Cisco Scalable Internetworks
* Building Cisco Multilayer Switched Networks
* Building Cisco Remote Access Networks
* Cisco Internetwork Troubleshooting

CCIP, do this if you want to be a network specialist. Not a lot of companies would need to have MPLS skilled people, except ISP.
Requires:
* A CCNA standing
* Building Cisco Scalable Internetworks
* Implementing Cisco Quality of Service
* Implementing Cisco MPLS
* Configuring BGP on Cisco Routers

CCNP is like a foundation, it is better to learn about routing and switching first before you learn about complicated topics like MPLS. Simply because there is a bit of switching and routing involved in CCIP

It depends on what you are seeking in your future career and your current job. CCNP is for corporate sector, focuses on LAN tan WAN, meanwhile CCIP is ISP sector and just focuses on more WAN than LAN networks.

CCNP track to the Routing & Switching CCIE also covering enterprise-related technologies. CCIP, on the other hand, is viewed with a focus on "Service Provider" technologies. It tracks to the Service Provider CCIE.

In the grand scheme of things, depending on what specific areas you want to get in to, it likely doesn’t make any difference which one you pursue. Both will push you to a better understanding of the inner workings of the routers and switches on a network. If you want to take both, its better to get CCNP first. Materials in CCIP is like advanced materials from CCNP, BGP which is part of BSCI, QOS reviewed in ISCW, MPLS which has fundamental concepts in BCMSN. But at the end of the day, it's your decision. Scott Morris said, "There’s very little in the technology arena that is a “waste” of your time and energy. So take whichever path you believe will deliver you to the career or job that you want. But either way won’t be a waste."

References:

Monday, September 3, 2007

Dual Boot back|track 2 Final + WinXP

Do you want to install back|track 2 Final(bt2) in your laptop/PC but you don't want to wipe your windows?
Ok, several days ago I install bt2 dual boot with my xp and it's running smoothly.
You should have free disk space for the bt2, I used 8GB for my bt2.
You can use partitioning tool such as Partition Magic or else for bt2.
In the backtrack documentation the recommended one is using ext3.
But I read in forums that sometimes it works in ext2 and sometimes it works in ext3.

First, you should make the partitions for bt2, mine is 7GB for ext2 and 1GB for swap for the total 8GB. I assume that your windows has 1 partition in hda1, so you should create new partition in hda2 for ext2/ext3 and hda3 for linux swap. Then restart and boot from your bt2 cd. When the "boot:" comes up, press enter then wait.
Login as "root" and use password "toor". Now type: startx, and enter.
Click on the KDE icon at the bottom left corner-> system-> backtrack installer


Then a new BackTrack installer window will comes up. Choose your ext2/ext3 partition, write to it's mbr, if hda2 mbr /dev/hda. After it finished, reboot your PC. If the installation was successful, it will automatically boot to your backtrack 2. If it's not, try to re-install again by booting up to your cd, re-do the installation process but this time, change the Source(BackTrack CD): /boot.

Ok, now you can login to your backtrack. But where is the winxp? How can you login to your xp? Don't worry, we'll get it back later using dual boot(lilo).

Open up a terminal/console by clicking the konsole icon (black monitor) or navigate System-> konsole. Then type this in konsole:
bt ~ # liloconfig
Choose simple-> enter -> install to MBR.
You will be kicked back to the konsole, then type this:
bt ~ # nano /etc/lilo.conf
Then search for "#Linux bootable partition config begins" and and change it to this one:
# Linux bootable partition config begins
image = /boot/vmlinuz
root = current
label = backtrack
read-write
# Linux bootable partition config ends

Now initiate the lilo: bt ~ # lilo
Ok, now you can choose to boot into your windows or your backtrack.

Reference
- http://www.offensive-security.com/documentation/backtrack-hd-install.pdf
- http://forums.remote-exploit.org/forumdisplay.php?f=19

Thursday, August 30, 2007

Remove GRUB loader

Sometime we need to have 2 operating systems, e.g. ubuntu+windows xp.
Install XP first, then install Linux. But maybe later on, we want to delete the linux and its partition. After we delete, we cannot access the windows XP! GRUB loader error? What should we do?

Don't worry, you can have your XP back as long as you don't delete the partition. Grab your windows XP cd, and boot from your windows XP cd, same as if you want to install XP. Then wait until it asks for options. Choose Recovery Console by pressing 'R'. Then the screen will becomes black, then wait. Choose the windows you'd like to recover. Usually the first one, then input the number '1'.
You will now on command prompt: "C:\WINDOWS"
do these commands below:
- cd ..
- fixboot c:
- fixmbr
- bootcfg /rebuild

After that type exit, enter then your PC will be rebooted. If it's working properly, usually you will boot to your XP again. Good luck!

Tuesday, August 28, 2007

Root Password in Ubuntu

How to change the 'root' password in Ubuntu?
When we are installing Ubuntu it doesn't ask about su (super user) and its password, only user name and password for logging in as a normal user. After installing Ubuntu, when we want to install or access '/', we asked to log in as 'root'. To have full access in Ubuntu, we must logged in or do the commands as 'root' user. What is the default password for 'root'?

As default Ubuntu has no password set for the root user. To gain 'root' access, we just add sudo in front of our commands
e.g. #sudo tar xvfz xampp-linux-1.5.3.tar.gz -C /opt

But sometimes it is disturbing, because after executing commands with sudo added in front of it usually it asked for the password (the same password we have inputted when installing the ubuntu).

Easier option is to log in as 'root' user. Because the default the 'root' user has no password, we can manually set the password by opening the terminal and executing:
$ sudo passwd root
Ok, now you can logged in as root or su.

Saturday, August 18, 2007

Cisco Certification (CCNA)

Many of my friends asked me about Cisco Certifications. Bay, do you take the Cisco Certification? How can I get it? When should I take it? They ask questions like that and usually they think there's only 1 Cisco Certification which is not true. For further explanation, we can directly navigate the Cisco Systems, Inc website. But people prefer to ask directly to someone who knows about it or read articles about the certification in general. I'd like to explain a bit about the Cisco Carrer Certifications & Path especially CCNA. So, for masters/seniors who read this posting please correct me if I got it wrong. I'm still a college students, sorry if make mistake in my explanation, thanks.

Cisco Systems offer three levels of certification:
  1. Associate
  2. Professional
  3. Expert
The Associate level includes the new CCENT certification. The Expert level includes the CCIE certification, which represents the highest level of achievement.

It has six different paths:
  1. Routing & Switching
  2. Design
  3. Network Security
  4. Service Provider
  5. Storage Networking
  6. Voice
So that we can match our certification path to our job role or industry.

While in focused areas, network professionals can enhance their core networking knowledge by achieving specialist certification in technologies such as security, IP telephony, and wireless.

The first step in general Cisco Career Certifications begins either with CCENT as an interim step to Associate level, or directly with CCNA for network operations or CCDA for network design.

Why become a CCNA?

The CCNA program was created to provide a solid introduction not only to the Cisco Internetwork Operating System (IOS) and Cisco hardware, but also to internetworking in general. Ok, I will try to explain the first level only which is Associate. The CCNA certification was the first in the new line of Cisco certifications, and was the precursor to all current Cisco certifications.

How do you become a CCNA?
There are 2 ways:
  1. Pass either 640-801 CCNA exam or 640-802 CCNA exam.
  2. Pass both 640-821 INTRO & 640-811 ICND or 640-822 ICND1 & 640-816 ICND2
640-802 CCNA, 640-822 ICND1 and 640-822 ICND1 exams are new curricula. According to some news from Cisco website, after November 6 2007, there will be no 640-801 CCNA, 640-821 INTRO and 640-811 ICND exams.
New Exam questions have been updated to validate the skills necessary to implement today’s small to medium-sized branch networks, and include new topics, such as network address translation and IPv6, basic security controls, and basic WLAN concepts. A full list of exam topics is provided at www.cisco.com/go/ccna. The new exams also feature more performance-based questions, to better assess candidate competency.

Cisco has created another certification track for network designers in Associate level. The two certifications within this track are the CCDA (Cisco Certified Design Associate). To achieve this, we must pass the Design exam (640-861). To pass this test, you must
understand how to do the following:
  • Design simple routed LAN, routed WAN, and switched LAN and ATM LANE networks.
  • Use Network-layer addressing.
  • Filter with access lists.
  • Use and propagate VLAN.
  • Size networks.
The Cisco CCENT (Cisco Certified Entry Networking Technician) will certify the practical skills required for entry-level network support positions. The new certification validates the ability to install, operate, and troubleshoot a small branch network, including configuring a router and switch, connecting to a WAN, and implementing basic network security. It is a tangible, but optional, first step in earning the CCNA certification, the foundation-level certification for networking careers. Recipients of the new certification also gain access to the Cisco Certification community, which enables them to access additional training resources and use the new CCENT logo to indicate their achievement.
To achieve the entry-level CCENT certification we must pass the ICND1 640-822 exam. Taking the INTRO 640-821 exam will not qualify us for the CCENT certification.

CCNA certifications are valid for three years. To recertify, either pass the current CCNA exam, or pass the ICND2 exam, or pass any 642 professional level.

To pass the exam, we should have trainings or study from book like Study Guide books published by Sybex or Cisco Press. There are 3 ways to be prepared for CCNA
  1. Exam Preparation 640-801 CCNA or 640-802 CCNA
  2. Exam Preparation 640-821 INTRO & 640-811 ICND or 640-822 ICND1 & 640-816 ICND2
  3. CNAP-CCNA (Cisco Networking Academy Program), this is a CCNA Courses 1 through 4 of the Academy program, equivalent to 280 hours of instruction, provide students with a basic foundation in networking. Students who successfully complete this portion of the program are eligible to earn Cisco Certified Network Associate (CCNA™) certification. The first four courses are available at the secondary and post-secondary levels. This Networking Academy covers the knowledge in networking starting from Networking Basics, Routers & Routing Basics, Switching Basics & Intermediate Routing until WAN Technologies. Cisco recommends taking the CCNA exam after completing these courses of the CCNA curriculum.
References: