Networking Academy partners with Learning@Cisco to enable qualifying students to take CCENT and CCNA certification exams at a reduced cost.Discount Vouchers are available for the following Cisco Certification Exams ONLY:
- ICND1 (640-822)
- ICND2 (640-816)
- CCNA Composite (640-802)
To qualify for a discount voucher you must meet the following eligibility criteria:

Voucher eligible students may follow only one of these paths depending on what voucher eligible course they have just completed:

Networking Academy students who successfully meet the voucher eligibility requirements will qualify for a single discount voucher. Discount vouchers can only be used once. Since vouchers expire, students should not request a voucher until they are ready to take the exam. Voucher eligibility does not imply that a student will do well on the exam. Students should take the time to study and prepare prior to requesting a voucher.
When you become eligible for a Certification Exam discount voucher, a Request Voucher link will appear on your Academy Connection Home Page under Professional Development. After you are sure your instructor has passed you from the class, check your Home Page for the link. You are not eligible if the link does not appear.
For CCNA vouchers, students must complete all four courses of either CCNA Discovery or CCNA Exploration and receive a score of 75 percent or higher on their first attempt of the final exam for the final CCNA Discovery course; Designing and Supporting Computer Networks, or for the final CCNA Exploration course; Accessing
the WAN.
References:
http://cisco.netacad.net
Generic_Voucher_FAQ-4Aug-10
Posted in
Certification,
Cisco at January 22nd, 2012.
No Comments.

We are allowed to write some things down while taking CCNA exam. You will give a dry-erase marker and a sheet or pen and A4 papers. Just memorize this subnetting tables and write down to a sheet after starting in your test.
Note : Before using this table, you must understand the subnetting concepts.
Posted in
Cisco at January 21st, 2012.
No Comments.
1. Download the newest km player from www.filehippo.com
2. Download and install windows directx
Done.
Posted in
Troubleshooting at May 5th, 2011.
No Comments.
To share your internet connection, you can use NAT iptables.
This is my eth card :
eth0 : wired LAN
eth1 : wireless LAN
ppp0 : interface untuk koneksi ke PPTP server
The topology used :
Internet <<==>> ppp0 <> eth1 <> Ubuntu for gateway <> eth0 <<==>> PC Client
Follow instructions :
1. Edit /etc/sysctl.conf and changes like this :
# Uncomment the next line to enable packet forwarding for IPv4
net.ipv4.ip_forward=1
# Uncomment the next line to enable packet forwarding for IPv6
net.ipv6.conf.all.forwarding=1
2. Type the followong command:
root@setiawan:~# sysctl -p
net.ipv4.ip_forward = 1
net.ipv6.conf.all.forwarding = 1
3. Configure NAT iptables using this command:
root@setiawan:~# iptables -P FORWARD ACCEPT
root@setiawan:~# iptables --table nat -A POSTROUTING -o ppp0 -j MASQUERADE
4. Done
Posted in
Linux at February 11th, 2011.
1 Comment.
sendmail[3617]: [ID 702911 mail.alert] unable to qualify my own domain name (agus) -- using short name
How to fix this notification :
-Adding a domain name corresponding FQDN in /etc/hosts
sh-3.00# cat /etc/hosts
#
# Internet host table
#
127.0.0.1 localhost
::1 localhost
10.14.206.6 <strong>agus.com</strong> agus loghost
Posted in
Troubleshooting at December 5th, 2010.
No Comments.
Edit php.ini configuration file :
; Maximum allowed size for uploaded files.
upload_max_filesize = 64M
Posted in
Troubleshooting at February 7th, 2010.
No Comments.
To solve ’413 Request Entity Too Large‘ problem on nginx, edit nginx.conf file like this :
server {
client_max_body_size 64M;
listen 80;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root /usr/local/www/data;
index index.php;
#auth_basic “Maaf, Anda tidak berhak mengakses halaman ini”;
#auth_basic_user_file conf/htpasswd;
}
Posted in
Troubleshooting at February 7th, 2010.
2 Comments.
Solaris Sysadmin @ Sun’s Online Learning Center (SOLC):
- Booting SPARC and x86 Based Systems,
- Controlling System Processes,
- Create and Manage Users,
- Installing Solaris 10,
- Manage Local Devices,
- Manage UFS File Systems,
- Managing Software Packages Using Package Commands,
- Managing Solaris Patches Using Patch Commands,
- Managing User Access,
- Performing File System Backups,
- Performing Mounts and Unmounts,
- Printer Services,
- Safely Shutting Down a Solaris System,
- System Restores,
- Working with UFS and ZFS Snapshots
OpenSolaris @ OpenSolaris Learning On Demand Service :
Posted in
Solaris at December 21st, 2009.
No Comments.
There are few steps:
1. Check VNC package
root@opensolaris:~# pkg info SUNWxvnc
Name: SUNWxvnc
Summary: X11/VNC server
Category: System/X11
State: Installed
Publisher: opensolaris.org
Version: 4.1.3
Build Release: 5.11
Branch: 0.111
Packaging Date: Fri May 8 16:45:30 2009
Size: 3.66 MB
FMRI: pkg:/SUNWxvnc@4.1.3,5.11-0.111:20090508T164530Z
If software hasn’t installed, type the following command to install vnc package:
root@opensolaris:~# pkg install SUNWxvnc
2. Check vnc service
root@opensolaris:~# grep VNC /etc/services
vnc-server 5900/tcp # VNC Server
Add ‘vnc-server 5900/tcp line’ in /etc/service file if no line like that
Read More…
Posted in
OpenSolaris at September 4th, 2009.
No Comments.