<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Dieter Bocklandt</title>
	<atom:link href="http://dbocklandt.be/feed/" rel="self" type="application/rss+xml" />
	<link>http://dbocklandt.be</link>
	<description>My work and life</description>
	<lastBuildDate>Mon, 07 Nov 2011 21:29:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Connection failed after large file transfer between Mac and Windows</title>
		<link>http://dbocklandt.be/networking/connection-failed-after-large-file-transfer-between-mac-and-windows/</link>
		<comments>http://dbocklandt.be/networking/connection-failed-after-large-file-transfer-between-mac-and-windows/#comments</comments>
		<pubDate>Mon, 07 Nov 2011 21:29:58 +0000</pubDate>
		<dc:creator>Dieter</dc:creator>
				<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://dbocklandt.be/?p=83</guid>
		<description><![CDATA[I recently switched to the Mac side and so far I hadn&#8217;t got any big problems. That is until one rainy day I suddenly lost the ability to connect to my Windows shares on my desktop! The really strange thing is nothing had changed&#8230; I&#8217;ve searched high and low for solutions and found out all [...]]]></description>
			<content:encoded><![CDATA[<p>I recently switched to the Mac side and so far I hadn&#8217;t got any big problems. That is until one rainy day I suddenly lost the ability to connect to my Windows shares on my desktop! The really strange thing is nothing had changed&#8230;</p>
<p>I&#8217;ve searched high and low for solutions and found out all I had to do was change two values in the Windows registry <img src='http://dbocklandt.be/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>You can read all about it on <a href="http://alan.lamielle.net/2009/09/03/windows-7-nonpaged-pool-srv-error-2017">http://alan.lamielle.net/2009/09/03/windows-7-nonpaged-pool-srv-error-2017</a>, but for those who don&#8217;t want to click, here is a quick summary:</p>
<p>Apparently Windows doesn&#8217;t like it when you&#8217;re transferring large files trough the samba protocol which leads to memory allocation errors. Change the following registry keys to fix this once and for all:</p>
<p>&nbsp;</p>
<p>HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management\LargeSystemCache (<strong>change to &#8220;1&#8243;</strong>)</p>
<p>HKLM\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters\Size <strong>(change to &#8220;3&#8243;)</strong></p>
<p>&nbsp;</p>
<p>After changing these values and restarting the &#8220;Server&#8221; service, I was back able to connect to my beloved shares <img src='http://dbocklandt.be/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://dbocklandt.be/networking/connection-failed-after-large-file-transfer-between-mac-and-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ldapsearch without all the line wrapping</title>
		<link>http://dbocklandt.be/networking/ldapsearch-without-all-the-line-wrapping/</link>
		<comments>http://dbocklandt.be/networking/ldapsearch-without-all-the-line-wrapping/#comments</comments>
		<pubDate>Sat, 08 Jan 2011 23:22:01 +0000</pubDate>
		<dc:creator>Dieter</dc:creator>
				<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://dbocklandt.be/?p=77</guid>
		<description><![CDATA[Anyone who have  used ldapsearch (you know, that handy dandy tool to query your LDAP-database) in a script, will eventually notice one big problem. For reasons beyond my understanding, the original author of this tool decided that it would be cool to apply line wrapping when output is generated with lines over 76 characters. Guess what, [...]]]></description>
			<content:encoded><![CDATA[<p>Anyone who have  used <strong>ldapsearch</strong> (you know, that handy dandy tool to query your LDAP-database) in a script, will eventually notice one big problem. For reasons beyond my understanding, the original author of this tool decided that it would be cool to apply line wrapping when output is generated with lines over 76 characters. Guess what, it&#8217;s not&#8230; I searched on the almighty Internet for a solution and found several, but the following I liked the most.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">perl</span> <span style="color: #660033;">-p00e</span> <span style="color: #ff0000;">'s/\r?\n //g'</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># Example</span>
ldapsearch <span style="color: #660033;">-xLLL</span> <span style="color: #660033;">-h</span> oh.mighty.ldapserver <span style="color: #660033;">-b</span> <span style="color: #007800;">dc</span>=example,<span style="color: #007800;">dc</span>=com <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">perl</span> <span style="color: #660033;">-p00e</span> <span style="color: #ff0000;">'s/\r?\n //g'</span></pre></div></div>

<p>Why? It&#8217;s short, does it&#8217;s job fast and perl is widely supported. I found this little gem on a <a href="http://lists.arthurdejong.org/openldap-software/2005/08/msg00234.html">mailinglist</a>, but because it&#8217;s so easily overlooked, I posted it here.</p>
]]></content:encoded>
			<wfw:commentRss>http://dbocklandt.be/networking/ldapsearch-without-all-the-line-wrapping/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Happy New Year!</title>
		<link>http://dbocklandt.be/random/happy-new-year/</link>
		<comments>http://dbocklandt.be/random/happy-new-year/#comments</comments>
		<pubDate>Sat, 01 Jan 2011 00:55:41 +0000</pubDate>
		<dc:creator>Dieter</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://dbocklandt.be/?p=74</guid>
		<description><![CDATA[Although I don&#8217;t have a lot of visitors, I wish each and everyone of you a great 2011. May the best day of last year become the worst one of this year!]]></description>
			<content:encoded><![CDATA[<p>Although I don&#8217;t have a lot of visitors, I wish each and everyone of you a great 2011. May the best day of last year become the worst one of this year!</p>
]]></content:encoded>
			<wfw:commentRss>http://dbocklandt.be/random/happy-new-year/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting up a fileserver with Samba, OpenLDAP and Kerberos</title>
		<link>http://dbocklandt.be/tutorial/setting-up-a-fileserver-with-samba-openldap-and-kerberos/</link>
		<comments>http://dbocklandt.be/tutorial/setting-up-a-fileserver-with-samba-openldap-and-kerberos/#comments</comments>
		<pubDate>Wed, 29 Dec 2010 16:18:22 +0000</pubDate>
		<dc:creator>Dieter</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[kerberos]]></category>
		<category><![CDATA[openldap]]></category>
		<category><![CDATA[samba]]></category>

		<guid isPermaLink="false">http://dbocklandt.be/?p=59</guid>
		<description><![CDATA[I searched high and low for a good guide on how to set up a Samba server that uses Kerberos for authentication and OpenLDAP to get the users. I stumbled upon the Ubuntu Community Guide, which gave me some insight on how to get Samba to play along with Kerberos, but it didn&#8217;t provide any [...]]]></description>
			<content:encoded><![CDATA[<p>I searched high and low for a good guide on how to set up a Samba server that uses Kerberos for authentication and OpenLDAP to get the users. I stumbled upon the <a href="https://help.ubuntu.com/community/Samba/Kerberos" target="_blank">Ubuntu Community Guide</a>, which gave me some insight on how to get Samba to play along with Kerberos, but it didn&#8217;t provide any details about LDAP integration. After some searching and a lot of testing, I finally completed this complex puzzle.</p>
<p>Because I&#8217;ve recently acquired the good habit of documenting the stuff I do (well, at least I try to&#8230;), I&#8217;m putting it here for future reference. I&#8217;m also sure it will be of some use for someone else <img src='http://dbocklandt.be/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . I&#8217;ve tested this on Ubuntu 10.04 and 10.10 without significant problems. I&#8217;ve set up a Kerberos KDC using the <a href="https://help.ubuntu.com/10.10/serverguide/C/kerberos.html" target="_blank">Ubuntu Server Guide (Kerberos)</a> and the <a href="https://help.ubuntu.com/10.10/serverguide/C/kerberos-ldap.html" target="_blank">Ubuntu Server Guide (Kerberos and LDAP)</a> . So let&#8217;s get going, first we&#8217;ll start by installing some packages.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> samba libnss-ldap krb5-user</pre></div></div>

<p>This installs <strong>samba</strong> (duh&#8230;), <strong>krb5-user</strong>, which is needed for the Kerberos part and <strong>libnss-ldap</strong>, which is needed for the LDAP part. Doing this will trigger some configuration screens to pop up. When configuring ldap-auth-config, use the following settings:</p>
<p>LDAP server Uniform Resource Identifier: <strong>&lt;your LDAP-server, something like ldap://ldap.example.com&gt;</strong></p>
<p>Distinguished name of the search base: <strong>&lt;your search base, something like dc=example,dc=com&gt;</strong></p>
<p>LDAP version to use: <strong>3</strong></p>
<p>Make local root database admin:  <strong>No</strong></p>
<p>Does the LDAP database require login: <strong>No</strong></p>
<p>Next, you&#8217;ll be presented with some configuration screens for Kerberos, type in the following:</p>
<p>Default Kerberos version 5 realm: <strong>&lt;your Kerberos realm, something like EXAMPLE.COM&gt;</strong></p>
<p>Now, if you&#8217;ve done your homework properly and your DNS-server has got some appropriate SRV-records, the wizard will notice this and you&#8217;re done. Otherwise, you&#8217;ll have to give it some more information like the FQDN of the server hosting the Kerberos KDC daemon. Normally, you&#8217;re back at the commandline. Execute the following command to update your <strong>/etc/nsswitch.conf</strong> file:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> auth-client-config <span style="color: #660033;">-t</span> nss <span style="color: #660033;">-p</span> lac_ldap</pre></div></div>

<p>Switch to the computer that acts as the Kerberos KDC and generate a keytab for the Samba server using the following commands:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">kadmin <span style="color: #660033;">-p</span> admin<span style="color: #000000; font-weight: bold;">/</span>admin
&nbsp;
kadmin: addprinc <span style="color: #660033;">-randkey</span> cifs<span style="color: #000000; font-weight: bold;">/</span>fileserver.example.com
&nbsp;
kadmin: ktadd <span style="color: #660033;">-k</span> <span style="color: #000000; font-weight: bold;">/</span>path<span style="color: #000000; font-weight: bold;">/</span>to<span style="color: #000000; font-weight: bold;">/</span>keytab <span style="color: #660033;">-e</span> rc4-hmac:normal cifs<span style="color: #000000; font-weight: bold;">/</span>fileserver.example.com</pre></div></div>

<p>Replace <strong>fileserver.example.com</strong> with the FQDN of the Samba server, this is important! Next get the resulting keytab on the Samba server, for example by using scp. Next, we&#8217;ll adjust some files. Edit <strong>/etc/ldap/ldap.conf</strong> as follows:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#</span>
<span style="color: #666666; font-style: italic;"># LDAP Defaults</span>
<span style="color: #666666; font-style: italic;">#</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># See ldap.conf(5) for details</span>
<span style="color: #666666; font-style: italic;"># This file should be world readable but not world writable.</span>
&nbsp;
BASE    <span style="color: #007800;">dc</span>=example,<span style="color: #007800;">dc</span>=com
URI     ldap:<span style="color: #000000; font-weight: bold;">//</span>ldap.example.com
TLS_REQCERT allow
&nbsp;
<span style="color: #666666; font-style: italic;">#SIZELIMIT      12</span>
<span style="color: #666666; font-style: italic;">#TIMELIMIT      15</span>
<span style="color: #666666; font-style: italic;">#DEREF          never</span></pre></div></div>

<p>And finally, adjust <strong>/etc/samba/smb.conf</strong> and make following adjustments:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">&#91;</span>global<span style="color: #7a0874; font-weight: bold;">&#93;</span>
   workgroup = LINKUP.LOCAL
   server string = <span style="color: #000000; font-weight: bold;">%</span>h server <span style="color: #7a0874; font-weight: bold;">&#40;</span>Samba, Ubuntu<span style="color: #7a0874; font-weight: bold;">&#41;</span>
   dns proxy = no
   log <span style="color: #c20cb9; font-weight: bold;">file</span> = <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>log<span style="color: #000000; font-weight: bold;">/</span>samba<span style="color: #000000; font-weight: bold;">/</span>log.<span style="color: #000000; font-weight: bold;">%</span>m
   max log <span style="color: #c20cb9; font-weight: bold;">size</span> = <span style="color: #000000;">1000</span>
   syslog = <span style="color: #000000;">0</span>
   panic action = <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>share<span style="color: #000000; font-weight: bold;">/</span>samba<span style="color: #000000; font-weight: bold;">/</span>panic-action <span style="color: #000000; font-weight: bold;">%</span>d
&nbsp;
   security = ADS
   realm = LINKUP.LOCAL
   password server = your.kdc.server
   kerberos method = dedicated keytab
   dedicated keytab <span style="color: #c20cb9; font-weight: bold;">file</span> = <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>krb5.keytab
&nbsp;
   encrypt password = <span style="color: #c20cb9; font-weight: bold;">true</span>
   obey pam restrictions = no
   unix password <span style="color: #c20cb9; font-weight: bold;">sync</span> = no
   <span style="color: #c20cb9; font-weight: bold;">passwd</span> program = <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">passwd</span> <span style="color: #000000; font-weight: bold;">%</span>u
   <span style="color: #c20cb9; font-weight: bold;">passwd</span> chat = <span style="color: #000000; font-weight: bold;">*</span>Enter\snew\s<span style="color: #000000; font-weight: bold;">*</span>\spassword:<span style="color: #000000; font-weight: bold;">*</span> <span style="color: #000000; font-weight: bold;">%</span>n\n <span style="color: #000000; font-weight: bold;">*</span>Retype\snew\s<span style="color: #000000; font-weight: bold;">*</span>\spassword:<span style="color: #000000; font-weight: bold;">*</span> <span style="color: #000000; font-weight: bold;">%</span>n\n <span style="color: #000000; font-weight: bold;">*</span>password\supdated\ssuccessfully<span style="color: #000000; font-weight: bold;">*</span> .
   pam password change = <span style="color: #c20cb9; font-weight: bold;">yes</span>
   map to guest = bas user
&nbsp;
   usershare allow guests = no
&nbsp;
   <span style="color: #7a0874; font-weight: bold;">&#91;</span>public<span style="color: #7a0874; font-weight: bold;">&#93;</span>
   comment = <span style="color: #ff0000;">&quot;Public share for everyone&quot;</span>
   path = <span style="color: #000000; font-weight: bold;">/</span>data<span style="color: #000000; font-weight: bold;">/</span>public
   browsable = <span style="color: #c20cb9; font-weight: bold;">yes</span>
   guest ok = <span style="color: #c20cb9; font-weight: bold;">yes</span>
   <span style="color: #c20cb9; font-weight: bold;">read</span> only = no
   create mask = 0755
&nbsp;
   <span style="color: #7a0874; font-weight: bold;">&#91;</span>private<span style="color: #7a0874; font-weight: bold;">&#93;</span>
   comment = <span style="color: #ff0000;">&quot;Private share&quot;</span>
   path = <span style="color: #000000; font-weight: bold;">/</span>data<span style="color: #000000; font-weight: bold;">/</span>private
   browsable = <span style="color: #c20cb9; font-weight: bold;">yes</span>
   guest ok = no
   <span style="color: #c20cb9; font-weight: bold;">read</span> only = no
   create mask = 0755
   <span style="color: #666666; font-style: italic;"># This is a group from OpenLDAP</span>
   valid <span style="color: #c20cb9; font-weight: bold;">users</span> = <span style="color: #000000; font-weight: bold;">@</span>testgroup</pre></div></div>

<p>In this example, there are two folder I shared, make sure whatever you want to share, actually exists (in my example /data/public and /data/private). Believe it or not, that was all that was necessary! Do the following quick tests to check everything is working properly:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">getent</span> <span style="color: #c20cb9; font-weight: bold;">passwd</span></pre></div></div>

<p>Should return your users, including the users from OpenLDAP. Next, get a client computer and log in. Make sure your user got a valid ticket (check klist) and try the following:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">smbclient <span style="color: #660033;">-k</span> \\\\fileserver.linkup.local\\public</pre></div></div>

<p>If this results in a smb prompt, your work is done! If not, leave a comment and I&#8217;ll try to help you out <img src='http://dbocklandt.be/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://dbocklandt.be/tutorial/setting-up-a-fileserver-with-samba-openldap-and-kerberos/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>LPIC-1: part 1</title>
		<link>http://dbocklandt.be/certificates/lpic-1-part-1/</link>
		<comments>http://dbocklandt.be/certificates/lpic-1-part-1/#comments</comments>
		<pubDate>Mon, 27 Dec 2010 00:40:53 +0000</pubDate>
		<dc:creator>Dieter</dc:creator>
				<category><![CDATA[Certificates]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[lpi]]></category>
		<category><![CDATA[lpic]]></category>

		<guid isPermaLink="false">http://dbocklandt.be/?p=55</guid>
		<description><![CDATA[It wasn&#8217;t simple and required a lot more experience to succeed than the Microsoft certificates, but I managed to pass my first exam! Things I immediately noticed, were the quality of the available course material. While the MS-books are fairly detailed and clear, the books covering LPI certification are surprisingly short and are lacking in [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://dbocklandt.be/wp-content/uploads/2010/12/IMAG0177.jpg"><img class="alignleft size-medium wp-image-54" title="LPI101" src="http://dbocklandt.be/wp-content/uploads/2010/12/IMAG0177-300x200.jpg" alt="" width="300" height="200" /></a>It wasn&#8217;t simple and required a lot more experience to succeed than the Microsoft certificates, but I managed to pass my first exam! Things I immediately noticed, were the quality of the available course material. While the MS-books are fairly detailed and clear, the books covering LPI certification are surprisingly short and are lacking in detail. That led to an increasing amout of personal experience required if you would want to pass this. Luckily, I had my fair share off Linux experience, but still&#8230;</p>
<p>Nonetheless, still only 3 exams and 405€ (!) to go to become LPIC-1 (and there&#8217;s also 2 and 3!!!!!) certified&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://dbocklandt.be/certificates/lpic-1-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Site finally finished!</title>
		<link>http://dbocklandt.be/random/site-finally-finished/</link>
		<comments>http://dbocklandt.be/random/site-finally-finished/#comments</comments>
		<pubDate>Sun, 26 Dec 2010 13:25:50 +0000</pubDate>
		<dc:creator>Dieter</dc:creator>
				<category><![CDATA[Random]]></category>
		<category><![CDATA[new site]]></category>
		<category><![CDATA[welcome]]></category>

		<guid isPermaLink="false">http://dbocklandt.be/?p=43</guid>
		<description><![CDATA[It has taken quite some time, but without further ado, I present you  my new site I hope you all like it because every minute I spend working on this, I had better spent on finishing my school assignments. Nonetheless I think putting together this site wasn&#8217;t a waste a time, mainly because now I [...]]]></description>
			<content:encoded><![CDATA[<p>It has taken quite some time, but without further ado, I present you  my new site <img src='http://dbocklandt.be/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  I hope you all like it because every minute I spend working on this, I had better spent on finishing my school assignments. Nonetheless I think putting together this site wasn&#8217;t a waste a time, mainly because now I finally got a place to dump my non-stop rambling! Even more important, at last I got a place where I can post information I find on the internet,  knowing that that piece of information will be offline within the next few weeks (for example, the bits and pieces for implementing a Kerberos KDC and client login!)</p>
<p>Thanks for visiting and leave a comment if you like the site!</p>
]]></content:encoded>
			<wfw:commentRss>http://dbocklandt.be/random/site-finally-finished/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>From now on MCTS!</title>
		<link>http://dbocklandt.be/certificates/from-now-on-mcts/</link>
		<comments>http://dbocklandt.be/certificates/from-now-on-mcts/#comments</comments>
		<pubDate>Sun, 26 Dec 2010 12:08:05 +0000</pubDate>
		<dc:creator>Dieter</dc:creator>
				<category><![CDATA[Certificates]]></category>
		<category><![CDATA[70-640]]></category>
		<category><![CDATA[70-642]]></category>
		<category><![CDATA[certificate]]></category>
		<category><![CDATA[microsoft]]></category>

		<guid isPermaLink="false">http://dbocklandt.be/?p=28</guid>
		<description><![CDATA[After a long, hard time of studying, I finally acquired my first two Microsoft certificates! For those who don&#8217;t know me IRL, the last few weeks I&#8217;ve been busy learning for the 70-640 exam (Configuring Windows Server 2008 Active Directory) and the 70-642 exam (Configuring Windows Server 2008 Network Infrastructure) and the trouble finally paid [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://dbocklandt.be/wp-content/uploads/2010/12/IMAG0149.jpg"><img class="alignleft size-medium wp-image-25" title="70-640" src="http://dbocklandt.be/wp-content/uploads/2010/12/IMAG0149-300x200.jpg" alt="" width="300" height="200" /></a>After a long, hard time of studying, I finally acquired my first two  Microsoft certificates! For those who don&#8217;t know me IRL, the last few  weeks I&#8217;ve been busy learning for the 70-640 exam (Configuring Windows  Server 2008 Active Directory) and the 70-642 exam (Configuring Windows  Server 2008 Network Infrastructure) and the trouble finally paid off!  With a very nice score of 880 and a more average of 716 respectively I  passed both exams and became a Microsoft Certified Technology Specialist! Needless to say, I&#8217;m more than happy with this  achievement <img src='http://dbocklandt.be/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://dbocklandt.be/certificates/from-now-on-mcts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

