Tuesday Feb 09

Special Offers on Official Microsoft Learning Products

Written by HansCheska Monday, 08 February 2010 22:58
Attention: open in a new window. PDFPrintE-mail

Limited-Time Offers

Delivering world-class training on the latest Microsoft technologies, Microsoft Learning provides tools that help empower you to fulfill your potential. Find limited-time offers and discounts on the training and Microsoft Certification you need today.

  • Now, back by popular demand, the Second Shot offer provides you with a free retake exam if you do not pass an IT professional or developer certification exam the first time. You must take the first and (if necessary) the retake exam before June 30, 2010.

  • Starting November 2009, you can purchase a Microsoft Career Package through your local Microsoft Certified Partner for Learning Solutions. We offer packages for Windows 7, Windows Server 2008 R2, and Microsoft SQL Server 2008 R2 (coming in March 2010). Each package includes instructor led training; a certification exam; and a free, fully licensed copy of the software. Whether you want to get a desktop support job or become indispensible as a system administrator, these packages will help you advance your career.

  • Build your IT team for less! Take advantage of a specially priced exam pack and invest in a Microsoft-skilled workforce. Distribute vouchers individually to get team members up-to-speed, or in groups to prepare an entire team for deployment. A proven indicator of individual and team performance, Microsoft Certification helps validate the skills you need to get the most out of the latest Microsoft technologies.

  • When you register for this free offer, each week (for seven weeks) you will receive an e-mail message that includes a link to download a chapter from a new or upcoming Microsoft Press book about Windows 7. You will also receive information about related special offers that will help you build your Windows 7 knowledge base.

  • For a limited time, you can get a copy of Microsoft SQL Server 2008 Standard Edition when you enroll and attend select SQL Server 2008 training with a Microsoft Certified Partner for Learning Solutions. You can also receive a free Microsoft Press book about the new features of SQL Server 2008, and save 20 percent off the price of select e-learning courses and as much as 40 percent off Microsoft E-Reference Libraries. Take advantage of these special offers to prepare for your certification exams and stand out among your peers.

  • Save on your training investment through a limited-time discount of up to US$3,550 off the price of Microsoft Certified Master programs. Apply now, and upon acceptance, Microsoft customers and partners can save up to US$3,550 on the Microsoft Certified Master program of your choice!
    Note This offer applies to select Master programs that start before July 1, 2010. No other offers can be combined with this offer.

Source: Microsoft Website

Cyber Security Awareness - Secure your Network

Written by aeonmike Friday, 15 January 2010 00:00
Attention: open in a new window. PDFPrintE-mail

There are many network attacks happening now, if you read the newspaper some of our government website has been deface and hacked, Indonesian group hacker is claiming this attacks.

Please read this material and spread the information to your other IT colleagues.

FROM: http://cyberexchange.isc2.org/


I'm Security-Conscious, 2! Help the people in your community and your organization adopt this mantra by downloading any of these fun, free security awareness tools posted on the (ISC)² Cyber Exchange. We encourage you to share these materials with anyone in your community or workplace that would benefit - whether it's your friends, colleagues, or children. You can also rank your favorites. Help us make the cyber world a safer place!


Please Download this Material and Read it.

http://cyberexchange.isc2.org/download.aspx

If you want to build a secure network using Open Source, Please Contact me:
This e-mail address is being protected from spambots. You need JavaScript enabled to view it . I'm willing to help and give advice to secure your network.

DNS master-slave Securing zone transfer with TSIG

Written by red_coder Wednesday, 06 January 2010 00:00
Attention: open in a new window. PDFPrintE-mail

Install bind-chroot on both servers

# yum install bind-chroot

From Primary DNS

# dnssec-keygen -a HMAC-MD5 -b 128 -n HOST master-slave
Kmaster-slave.+157+50029

The output tells us the name of the file containing our new key: in this case
Kmaster-slave.+157+50029.private. The numbers are the DNSSEC algorithm
(157=HMACMD5), and the key's fingerprint (50029) which will probably be different on your machine

From Kmaster-slave+157.50029.private we will extract the shared key:
# cat Kmaster-slave+157.50029.private
Private-key-format: v1.2
Algorithm: 157 (HMAC_MD5)
Key: axdafafFTdafaCSDF090DSDs==

The key here is axdafafFTdafaCSDF090DSDs==; this will be different in your file. Keep track of this file;
we will need it for testing our configuration later.

On both the master and slave name server, create a new file called /var/named/chroot/etc/transfer.key with
the following contents:

key "master-slave." {
algorithm hmac-md5;
secret "axdafafFTdafaCSDF090DSDs==";
};

Protect the contents of the transfer.key so only the nameserver can read it and only root can write to it:
# chown root:named /var/named/chroot/etc/transfer.key
# chmod 640 /var/named/chroot/etc/transfer.key
# ln -s /var/named/chroot/etc/transfer.key /etc/transfer.key

In /var/named/chroot/etc/named.conf on both the master and slave server, add the following lines at the very top of the file

include "/etc/transfer.key";

Read more: DNS master-slave Securing zone transfer with TSIG