<?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>Luka Manojlovic &#187; Video tutorials</title>
	<atom:link href="http://luka.manojlovic.net/category/video-tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://luka.manojlovic.net</link>
	<description>Luka&#039;s technical blog</description>
	<lastBuildDate>Mon, 24 May 2010 21:59:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Windows server 2008 R2 &#8211; Disk management&#8230; VHD Attach</title>
		<link>http://luka.manojlovic.net/2009/04/20/windows-server-2008-r2-disk-management-vhd-attach/</link>
		<comments>http://luka.manojlovic.net/2009/04/20/windows-server-2008-r2-disk-management-vhd-attach/#comments</comments>
		<pubDate>Mon, 20 Apr 2009 21:29:08 +0000</pubDate>
		<dc:creator>manojlovicl</dc:creator>
				<category><![CDATA[Video tutorials]]></category>
		<category><![CDATA[Windows server 2008 R2]]></category>
		<category><![CDATA[attach vhd]]></category>
		<category><![CDATA[R2]]></category>

		<guid isPermaLink="false">http://luka.manojlovic.net/?p=172</guid>
		<description><![CDATA[It is now possible to create a new VHD or attach an existing VHD to your Windows server 2008 R2&#8230; Check the video&#8230; There are some other features that you can do but it was possible also in non R2 version&#8230; That is shrinking and extending partition using Disk Management]]></description>
			<content:encoded><![CDATA[<p>It is now possible to create a new VHD or attach an existing VHD to your Windows server 2008 R2&#8230;</p>
<p><a href="http://store.manojlovic.net/videos/Microsoft/Windows%20server%202008%20R2%20Beta/ShrinkVolumeandVHD/Shrink%20volume%20and%20VHD.htm" target="_blank">Check the video&#8230;</a></p>
<p>There are some other features that you can do but it was possible also in non R2 version&#8230; That is shrinking and extending partition using Disk Management</p>
]]></content:encoded>
			<wfw:commentRss>http://luka.manojlovic.net/2009/04/20/windows-server-2008-r2-disk-management-vhd-attach/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows server 2008 R2 Active Directory &#8211; Recycle Bin Feature</title>
		<link>http://luka.manojlovic.net/2009/04/20/windows-server-2008-r2-active-directory-recycle-bin-feature/</link>
		<comments>http://luka.manojlovic.net/2009/04/20/windows-server-2008-r2-active-directory-recycle-bin-feature/#comments</comments>
		<pubDate>Mon, 20 Apr 2009 20:52:01 +0000</pubDate>
		<dc:creator>manojlovicl</dc:creator>
				<category><![CDATA[Video tutorials]]></category>
		<category><![CDATA[Windows server 2008]]></category>
		<category><![CDATA[Windows server 2008 R2]]></category>
		<category><![CDATA[ad]]></category>
		<category><![CDATA[recycle bin feature]]></category>
		<category><![CDATA[windows server 2008 r2]]></category>

		<guid isPermaLink="false">http://luka.manojlovic.net/?p=167</guid>
		<description><![CDATA[Sometimes you delete user from AD and it could cause a big headache Well&#8230; No more. Windows server 2008 R2 Beta &#8211; which is by the way already publicly available has a new functional level for AD that allows you to activate so called Recycle Bin Feature&#8230; In this demo you will se my AD [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes you delete user from AD and it could cause a big headache <img src='http://luka.manojlovic.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Well&#8230; No more. Windows server 2008 R2 Beta &#8211; which is by the way <a href="http://www.microsoft.com/windowsserver2008/en/us/r2.aspx" target="_blank">already publicly available</a> has a new functional level for AD that allows you to activate so called <a href="http://technet.microsoft.com/en-us/library/dd392261.aspx" target="_blank">Recycle Bin Feature</a>&#8230;<br />
In this demo you will se my AD server with a domain called <strong>demoadps.local</strong> on which I will enable this feature. As I mentioned before &#8211; functional level should be Windows server 2008 R2.</p>
<p><a href="http://store.manojlovic.net/videos/Microsoft/Windows%20server%202008%20R2%20Beta/ADRecycleBinFeature/Recycle%20bin%20feature.htm" target="_blank">Watch the video</a></p>
<p>First of all you need to enable the feature by typing a Powershell cmdlet/command:</p>
<p style="text-align: left;">Enable-ADOptionalFeature &#8216;Recycle Bin Feature&#8217; -Scope Forest -Target &#8216;<strong>domain.local</strong>&#8216;</p>
<p>after that you can check for deleted items by typing:</p>
<p style="text-align: left;">Get-ADObject -SearchBase &#8220;CN=Deleted Objects,DC=<strong>domain</strong>,DC=<strong>local</strong>&#8221; -ldapFilter &#8220;(objectClass=*)&#8221; -includeDeletedObjects | FT ObjectGUID,Name -A</p>
<p>This will show you the deleted objects which you can restore by entering:</p>
<p style="text-align: left;">Restore-ADObject -Identity <strong>6ff46162-15c2-4d42-8e15-2fcac5c8422e</strong></p>
<p><strong>** domain.local </strong>should be changed with your domain name<br />
<strong>6ff46162-15c2-4d42-8e15-2fcac5c8422e </strong>should be changed with a ID that matches your deleted object&#8230;</p>
<p>To make it simplier I have recorded a<a href="http://store.manojlovic.net/videos/Microsoft/Windows%20server%202008%20R2%20Beta/ADRecycleBinFeature/Recycle%20bin%20feature.htm" target="_blank"> video tutorial </a>to do that&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://luka.manojlovic.net/2009/04/20/windows-server-2008-r2-active-directory-recycle-bin-feature/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows server 2008 NTFS / SMB2.0 changes part III (packet analyses)</title>
		<link>http://luka.manojlovic.net/2008/03/16/windows-server-2008-ntfs-smb20-changes-part-iii-packet-analyses/</link>
		<comments>http://luka.manojlovic.net/2008/03/16/windows-server-2008-ntfs-smb20-changes-part-iii-packet-analyses/#comments</comments>
		<pubDate>Sun, 16 Mar 2008 16:25:31 +0000</pubDate>
		<dc:creator>manojlovicl</dc:creator>
				<category><![CDATA[Video tutorials]]></category>
		<category><![CDATA[Windows server 2008]]></category>
		<category><![CDATA[ACK]]></category>
		<category><![CDATA[Analyses]]></category>
		<category><![CDATA[SMB]]></category>
		<category><![CDATA[SMB 1.0]]></category>
		<category><![CDATA[SMB 2.0]]></category>

		<guid isPermaLink="false">http://luka.manojlovic.net/2008/03/16/windows-server-2008-ntfs-smb20-changes-part-iii-packet-analyses/</guid>
		<description><![CDATA[New SMB 2.0 allows higher speeds when transfering files between Windows server 2008 machines and Windows Vista machines. On gigabit network we can see a drastical improvement in speed and network performance. SMB2.0 allows ACK packets to be sent only after 16 megabyte of data&#8230;  SMB 2.0 as seen by Wireshark* *Wireshark &#8211; excelent network [...]]]></description>
			<content:encoded><![CDATA[<p>New SMB 2.0 allows higher speeds when transfering files between Windows server 2008 machines and Windows Vista machines.<br />
On gigabit network we can see a drastical improvement in speed and network performance. SMB2.0 allows ACK packets to be sent only after 16 megabyte of data&#8230;</p>
<p><img border="0" width="20" src="http://luka.manojlovic.net/store/images/Video-small.jpg" height="15" /> <a target="_blank" href="http://store.manojlovic.net/videos/Microsoft/Windows%20server%202008/Performance%20and%20Scalability/SMB2.0/Packet%20flow.htm">SMB 2.0 as seen by Wireshark*</a></p>
<p><a target="_blank" href="http://www.wireshark.org/">*Wireshark &#8211; excelent network analyzer</a></p>
]]></content:encoded>
			<wfw:commentRss>http://luka.manojlovic.net/2008/03/16/windows-server-2008-ntfs-smb20-changes-part-iii-packet-analyses/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows server 2008 NTFS / SMB2.0 changes part II (network usage)</title>
		<link>http://luka.manojlovic.net/2008/03/16/windows-server-2008-ntfs-smb20-changes-part-ii-network-usage/</link>
		<comments>http://luka.manojlovic.net/2008/03/16/windows-server-2008-ntfs-smb20-changes-part-ii-network-usage/#comments</comments>
		<pubDate>Sun, 16 Mar 2008 16:20:15 +0000</pubDate>
		<dc:creator>manojlovicl</dc:creator>
				<category><![CDATA[Video tutorials]]></category>
		<category><![CDATA[Windows server 2008]]></category>
		<category><![CDATA[directory junction]]></category>
		<category><![CDATA[hardlink]]></category>
		<category><![CDATA[network access]]></category>
		<category><![CDATA[SMB 2.0]]></category>
		<category><![CDATA[symlink]]></category>
		<category><![CDATA[symlinkd]]></category>

		<guid isPermaLink="false">http://luka.manojlovic.net/2008/03/16/windows-server-2008-ntfs-smb20-changes-part-ii-network-usage/</guid>
		<description><![CDATA[You can access harlink-ed files and Directory junction folders over the network&#8230; Even if files and folders are not shared (only &#8220;linked&#8221; to one of your shared folders &#8230;)  Network accessability example]]></description>
			<content:encoded><![CDATA[<p>You can access harlink-ed files and Directory junction folders over the network&#8230; Even if files and folders are not shared (only &#8220;linked&#8221; to one of your shared folders &#8230;)</p>
<p><img border="0" width="20" src="http://luka.manojlovic.net/store/images/Video-small.jpg" height="15" /> <a target="_blank" href="http://store.manojlovic.net/videos/Microsoft/Windows%20server%202008/Performance%20and%20Scalability/SMB2.0/Overnetworkaccessability.htm">Network accessability example</a></p>
]]></content:encoded>
			<wfw:commentRss>http://luka.manojlovic.net/2008/03/16/windows-server-2008-ntfs-smb20-changes-part-ii-network-usage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows server 2008 NTFS / SMB2.0 changes part I (mklink)</title>
		<link>http://luka.manojlovic.net/2008/03/16/windows-server-2008-ntfs-smb20-changes/</link>
		<comments>http://luka.manojlovic.net/2008/03/16/windows-server-2008-ntfs-smb20-changes/#comments</comments>
		<pubDate>Sun, 16 Mar 2008 16:09:29 +0000</pubDate>
		<dc:creator>manojlovicl</dc:creator>
				<category><![CDATA[Video tutorials]]></category>
		<category><![CDATA[Windows server 2008]]></category>
		<category><![CDATA[fsutil]]></category>
		<category><![CDATA[hardlink]]></category>
		<category><![CDATA[junction]]></category>
		<category><![CDATA[mklink]]></category>
		<category><![CDATA[smb2.0]]></category>
		<category><![CDATA[symlink]]></category>
		<category><![CDATA[symlinkd]]></category>
		<category><![CDATA[windows server 2008 ntfs]]></category>

		<guid isPermaLink="false">http://luka.manojlovic.net/2008/03/16/windows-server-2008-ntfs-smb20-changes/</guid>
		<description><![CDATA[ Making SYMLINK without any parameters using MKLINK command  Making SYMLINKD using MKLINK /D command  Making HARDLINK using MKLINK /H command  Making JUNCTION using MKLINK /J command When you are using this command you should know that &#8230; When using without any parameters it makes symlink between two files &#8230; Files are accessible only localy on [...]]]></description>
			<content:encoded><![CDATA[<p><img border="0" width="20" src="http://luka.manojlovic.net/store/images/Video-small.jpg" height="15" /> <a target="_blank" href="http://store.manojlovic.net/videos/Microsoft/Windows%20server%202008/Performance%20and%20Scalability/mklink/Symlink%20no%20parameters.htm">Making SYMLINK without any parameters using MKLINK command</a></p>
<p><img border="0" width="20" src="http://luka.manojlovic.net/store/images/Video-small.jpg" height="15" /> <a target="_blank" href="http://store.manojlovic.net/videos/Microsoft/Windows%20server%202008/Performance%20and%20Scalability/mklink/Symlink%20D.htm">Making SYMLINKD using MKLINK /D command</a></p>
<p><img border="0" width="20" src="http://luka.manojlovic.net/store/images/Video-small.jpg" height="15" /> <a target="_blank" href="http://store.manojlovic.net/videos/Microsoft/Windows%20server%202008/Performance%20and%20Scalability/mklink/Hardlink%20H.htm">Making HARDLINK using MKLINK /H command</a></p>
<p><img border="0" width="20" src="http://luka.manojlovic.net/store/images/Video-small.jpg" height="15" /> <a target="_blank" href="http://store.manojlovic.net/videos/Microsoft/Windows%20server%202008/Performance%20and%20Scalability/mklink/Junction.htm">Making JUNCTION using MKLINK /J command</a></p>
<p>When you are using this command you should know that &#8230;</p>
<ul>
<li>When using without any parameters it makes symlink between two files &#8230; Files are accessible only localy on same machine.</li>
<li>When using with /D parameter it creates symlink<strong>d</strong> link between two folders &#8230; linked folder is accessible only localy.</li>
<li>When using with /H parameter it creates hardlink between two files &#8230; This file is normaly accessible over the network and localy.</li>
<li>When using with /J parameter it creates so called Directory junction that makes folder accessible using different name&#8230; It works localy and over the network.<br />
So now you are able to share a folder in which you can put Directory junction folders, that normaly are not shared&#8230;</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://luka.manojlovic.net/2008/03/16/windows-server-2008-ntfs-smb20-changes/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Failed request tracking &#8211; IIS 7.0 on Windows server 2008</title>
		<link>http://luka.manojlovic.net/2008/01/02/failed-request-tracking-iis-70-on-windows-server-2008/</link>
		<comments>http://luka.manojlovic.net/2008/01/02/failed-request-tracking-iis-70-on-windows-server-2008/#comments</comments>
		<pubDate>Wed, 02 Jan 2008 22:45:58 +0000</pubDate>
		<dc:creator>manojlovicl</dc:creator>
				<category><![CDATA[Video tutorials]]></category>
		<category><![CDATA[Windows server 2008]]></category>
		<category><![CDATA[Failed request tracking]]></category>
		<category><![CDATA[IIS 7.0]]></category>
		<category><![CDATA[IIS7.0]]></category>

		<guid isPermaLink="false">http://luka.manojlovic.net/2008/01/02/failed-request-tracking-iis-70-on-windows-server-2008/</guid>
		<description><![CDATA[This video will show you how to setup Failed request tracking and see the results when something goes wrong on your server&#8230;  Failed request tracking &#8211; IIS 7.0 on Windows server 2008]]></description>
			<content:encoded><![CDATA[<p>This video will show you how to setup Failed request tracking and see the results when something goes wrong on your server&#8230;</p>
<p><img border="0" width="20" src="http://luka.manojlovic.net/store/images/Video-small.jpg" height="15" /> <a target="_blank" href="http://store.manojlovic.net/videos/Microsoft/Windows%20server%202008/IIS7.0/Failed%20request%20tracking/IIS7.htm">Failed request tracking &#8211; IIS 7.0 on Windows server 2008</a></p>
]]></content:encoded>
			<wfw:commentRss>http://luka.manojlovic.net/2008/01/02/failed-request-tracking-iis-70-on-windows-server-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing PHP on IIS7.0 on Windows server 2008</title>
		<link>http://luka.manojlovic.net/2008/01/02/installing-php-on-iis70-on-windows-server-2008/</link>
		<comments>http://luka.manojlovic.net/2008/01/02/installing-php-on-iis70-on-windows-server-2008/#comments</comments>
		<pubDate>Wed, 02 Jan 2008 18:33:20 +0000</pubDate>
		<dc:creator>manojlovicl</dc:creator>
				<category><![CDATA[Video tutorials]]></category>
		<category><![CDATA[Windows server 2008]]></category>
		<category><![CDATA[IIS7.0]]></category>
		<category><![CDATA[PHP installation]]></category>
		<category><![CDATA[PHP on IIS7.0]]></category>
		<category><![CDATA[PHP on Windows]]></category>
		<category><![CDATA[php.ini]]></category>

		<guid isPermaLink="false">http://luka.manojlovic.net/2008/01/02/installing-php-on-iis70-on-windows-server-2008/</guid>
		<description><![CDATA[This video will show you how to install PHP on IIS7.0 and test it with example (phpinfo();)  Installing PHP on IIS7.0 on Windows server 2008 http://blogs.iis.net/bills/archive/2006/09/19/How-to-install-PHP-on-IIS7-_2800_RC1_2900_.aspx]]></description>
			<content:encoded><![CDATA[<p>This video will show you how to install PHP on IIS7.0 and test it with example (phpinfo();)</p>
<p><img border="0" width="20" src="http://luka.manojlovic.net/store/images/Video-small.jpg" height="15" /> <a target="_blank" href="http://store.manojlovic.net/videos/Microsoft/Windows%20server%202008/IIS7.0/PHP%20on%20IIS/PHP%20on%20IIS7.htm">Installing PHP on IIS7.0 on Windows server 2008</a></p>
<p><a href="http://blogs.iis.net/bills/archive/2006/09/19/How-to-install-PHP-on-IIS7-_2800_RC1_2900_.aspx">http://blogs.iis.net/bills/archive/2006/09/19/How-to-install-PHP-on-IIS7-_2800_RC1_2900_.aspx</a></p>
]]></content:encoded>
			<wfw:commentRss>http://luka.manojlovic.net/2008/01/02/installing-php-on-iis70-on-windows-server-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows server 2008 IIS 7.0 installation (basic overview)</title>
		<link>http://luka.manojlovic.net/2008/01/02/windows-server-2008-iis-70-installation-basic-overview/</link>
		<comments>http://luka.manojlovic.net/2008/01/02/windows-server-2008-iis-70-installation-basic-overview/#comments</comments>
		<pubDate>Wed, 02 Jan 2008 18:30:46 +0000</pubDate>
		<dc:creator>manojlovicl</dc:creator>
				<category><![CDATA[Video tutorials]]></category>
		<category><![CDATA[Windows server 2008]]></category>
		<category><![CDATA[IIS 7.0]]></category>
		<category><![CDATA[IIS install]]></category>
		<category><![CDATA[IIS installation]]></category>

		<guid isPermaLink="false">http://luka.manojlovic.net/2008/01/02/windows-server-2008-iis-70-installation-basic-overview/</guid>
		<description><![CDATA[In this video tutorial you will see how to install IIS7.0 on Windows server 2008 (RC1). This video was created to show you installation of PHP into IIS7.0 afterwards&#8230;  Windows server 2008 / IIS7.0 Installation Before you decide upon a website hosting deal, confirm if the web server is compatible with your dsl, so that [...]]]></description>
			<content:encoded><![CDATA[<p>In this video tutorial you will see how to install IIS7.0 on Windows server 2008 (RC1).<br />
This video was created to show you installation of PHP into IIS7.0 afterwards&#8230;</p>
<p><img border="0" width="20" src="http://luka.manojlovic.net/store/images/Video-small.jpg" height="15" /> <a target="_blank" href="http://store.manojlovic.net/videos/Microsoft/Windows%20server%202008/IIS7.0/01%20-%20Install%20IIS7.htm">Windows server 2008 / IIS7.0 Installation</a></p>
<p align="center">Before you decide upon a <a href="http://www.businesshostingprovider.com">website hosting</a> deal, confirm if the <a href="http://www.businesshostingprovider.com/dedicated-server.htm">web server</a> is compatible with your <a href="http://www.businesshostingprovider.com/broadband.htm">dsl</a>, so that your <a href="http://www.businesshostingprovider.com/web-design.htm">web site design</a> can be enjoyed by all.</p>
]]></content:encoded>
			<wfw:commentRss>http://luka.manojlovic.net/2008/01/02/windows-server-2008-iis-70-installation-basic-overview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Konfiguracija DNS strežnika (forward cona) / Configuration of DNS server (forward zone)</title>
		<link>http://luka.manojlovic.net/2007/02/07/konfiguracija-dns-streznika-forward-cona-configuration-of-dns-server-forward-zone/</link>
		<comments>http://luka.manojlovic.net/2007/02/07/konfiguracija-dns-streznika-forward-cona-configuration-of-dns-server-forward-zone/#comments</comments>
		<pubDate>Wed, 07 Feb 2007 16:51:06 +0000</pubDate>
		<dc:creator>manojlovicl</dc:creator>
				<category><![CDATA[Video tutorials]]></category>
		<category><![CDATA[DNS]]></category>
		<category><![CDATA[forward zone]]></category>

		<guid isPermaLink="false">http://luka.manojlovic.net/2007/02/07/konfiguracija-dns-streznika-forward-cona-configuration-of-dns-server-forward-zone/</guid>
		<description><![CDATA[Osnovna pravilna konfiguracija DNS zapisa in njegovo testiranje. / Correct basic configuration of DNS records and testing. Pri konfiguraciji DNS strežnika moramo upoštevati nekaj osnovnih navodil. There are some basic rules that should be folowed when configuring DNS servers. Vzemimo primer, da imamo domeno company.com za katero bi radi naredili DNS zapis: Let say that [...]]]></description>
			<content:encoded><![CDATA[<p><strong><em>Osnovna pravilna konfiguracija DNS zapisa in njegovo testiranje. / Correct basic configuration of DNS records and testing.</em></strong></p>
<p>Pri konfiguraciji DNS strežnika moramo upoštevati nekaj osnovnih navodil. There are some basic rules that should be folowed when configuring DNS servers.</p>
<p>Vzemimo primer, da imamo domeno company.com za katero bi radi naredili DNS zapis: Let say that we have domain company.com and we would like to create DNS record for it:</p>
<p>1. naredimo primarno forward cono company.com / create forward zone for company.com<br />
2. popravimo SOA zapis: / correct SOA record:<br />
2.1 oštevilčimo po principu LETOMESECDAN01 &#8211; primer: 2007020701 / enumerate it with YYYYMMDDnn<br />
2.2 vpišemo ime primarnega DNS streznika ter e-mail skrbnika domene &#8211; pozor v obliki ime.domena.končnica &#8211; brez afne &#8211; @ / enter the name of primary DNS server for domain company.com and its hostmaster without &#8220;at&#8221; sign &#8211; @ example. hosmaster.company.com<br />
2.3 po potrebi popravimo časovne vrednosti zapisa / if it is needed fix the time values of the record<br />
2.4 vpišemo DNS strežnike / enter your DNS servers<br />
3. naredimo zapis gostitelja &#8211; A zapis strežnika, ki bo gostil storitve / create a HOST or A record for a computer that will host services<br />
4. naredimo psevdonim &#8211; CNAME zapis, ki bo &#8220;kazal&#8221; na gostitelja. / create alias &#8211; CNAME record for aliases that will point to HOST.<br />
5. naredimo MX zapis za domeno company.com / create MX record for domain company.com<br />
6. testiramo delovanje z uporabo / testing:<br />
<em>ping</em><br />
<em>nslookup</em></p>
<p><a rel="nofollow" href="http://www.dnsreport.com/" title="http://www.dnsreport.com" class="external free">http://www.dnsreport.com</a> &#8211; preverite nastavitve svoje domen / check your domain name configuration<br />
<a rel="nofollow" href="http://www.dnsstuff.com/" title="http://www.dnsstuff.com" class="external free">http://www.dnsstuff.com</a> &#8211; dodatna orodja za pregled DNS zapisov / additional tools for checking DNS records</p>
<p> <img border="0" width="20" src="http://luka.manojlovic.net/store/images/Video-small.jpg" height="15" /> <a rel="nofollow" href="http://store.manojlovic.net/videos/Microsoft/DNS/Creating%20forward%20zone%20with%20some%20records.htm" title="http://store.manojlovic.net/videos/Microsoft/DNS/Creating%20forward%20zone%20with%20some%20records.htm" class="external text"><strong>Izdelava forward cone z nekaj zapisi / Creating forward zone with some records</strong></a><br />
<a rel="nofollow" href="http://store.manojlovic.net/videos/Microsoft/DNS/Creating%20forward%20zone%20with%20some%20records.wnk" title="http://store.manojlovic.net/videos/Microsoft/DNS/Creating%20forward%20zone%20with%20some%20records.wnk" class="external text">(wink source)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://luka.manojlovic.net/2007/02/07/konfiguracija-dns-streznika-forward-cona-configuration-of-dns-server-forward-zone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Konfiguracija Exchange 2003 SP2 strežnika za filtriranje proti črnim listam, uporaba Intelligent message filter-ja ter Sender ID procesiranje / Configuration of Exchange 2003 SP2 to filter mail using black lists, usage of Intelligent message filter and Sender ID processing</title>
		<link>http://luka.manojlovic.net/2007/02/06/konfiguracija-exchange-2003-sp2-streznika-za-filtriranje-proti-crnim-listam-uporaba-intelligent-message-filter-ja-ter-sender-id-procesiranje-configuration-of-exchange-2003-sp2-to-filter-mail-using/</link>
		<comments>http://luka.manojlovic.net/2007/02/06/konfiguracija-exchange-2003-sp2-streznika-za-filtriranje-proti-crnim-listam-uporaba-intelligent-message-filter-ja-ter-sender-id-procesiranje-configuration-of-exchange-2003-sp2-to-filter-mail-using/#comments</comments>
		<pubDate>Tue, 06 Feb 2007 16:50:08 +0000</pubDate>
		<dc:creator>manojlovicl</dc:creator>
				<category><![CDATA[MS Exchange server]]></category>
		<category><![CDATA[MS Exchange server 2003]]></category>
		<category><![CDATA[SPF / SenderID]]></category>
		<category><![CDATA[Video tutorials]]></category>
		<category><![CDATA[Block List Service Configuration]]></category>
		<category><![CDATA[Connection Filtering]]></category>
		<category><![CDATA[Gateway Blocking Configuration]]></category>
		<category><![CDATA[Intelligent Message Filtering]]></category>
		<category><![CDATA[Message delivery]]></category>
		<category><![CDATA[Message Delivery Properties]]></category>
		<category><![CDATA[Sender ID Filtering]]></category>
		<category><![CDATA[SMTP configuration]]></category>
		<category><![CDATA[SPF record]]></category>
		<category><![CDATA[Store Junk E-mail Configuration]]></category>

		<guid isPermaLink="false">http://luka.manojlovic.net/2007/02/06/konfiguracija-exchange-2003-sp2-streznika-za-filtriranje-proti-crnim-listam-uporaba-intelligent-message-filter-ja-ter-sender-id-procesiranje-configuration-of-exchange-2003-sp2-to-filter-mail-using/</guid>
		<description><![CDATA[Konfiguracija Exchange 2003 SP2 strežnika za filtriranje proti črnim listam, uporaba Intelligent message filter-ja ter Sender ID procesiranje / Configuration of Exchange 2003 SP2 to filter mail using black lists, usage of Intelligent message filter and Sender ID processing Nekaj zlatih pravil na katere moramo biti pozorni pri konfiguraciji poštnih strežnikov. / Some rules to [...]]]></description>
			<content:encoded><![CDATA[<p><strong><em>Konfiguracija Exchange 2003 SP2 strežnika za filtriranje proti črnim listam, uporaba Intelligent message filter-ja ter Sender ID procesiranje / Configuration of Exchange 2003 SP2 to filter mail using black lists, usage of Intelligent message filter and Sender ID processing</em></strong></p>
<p>Nekaj zlatih pravil na katere moramo biti pozorni pri konfiguraciji poštnih strežnikov. / Some rules to be aware of when configuring mail servers.<br />
<em><strong>DNS nivo / DNS layer</strong></em></p>
<p>1. MX zapis mora obstajati / MX record must exist<br />
Za test lahko v ukazni vrstici vpišete ukaz / For testing you can try to get the MX record using nslookup command:<br />
nslookup<br />
set type=MX<br />
company.com<br />
Kot rezultat bi morali dobiti / As result you should get:<br />
company.com MX preference = 10, mail exchanger = mail.company.com</p>
<p>2. Forward in reverse DNS zapis se morata ujemati / Forward and reverse DNS record must be the same<br />
Primer / Example:<br />
Recimo, da MX zapis za domeno company.com kaže na poddomeno domene company.com in sicer na mail.company.com. V primeru, da izvršimo ukaz ping v ukazni vrstici dobimo rezultat: / Let say, that MX record for domain name company.com points to subdomain of company.com &#8211; mail.company.com. In this case you can check by pinging hostname and get the result:</p>
<p>C:\&gt;ping mail.company.com<br />
Pinging mail.company.com [123.123.123.123] with 32 bytes of data:<br />
Reply from 123.123.123.123: bytes=32 time=119ms TTL=238 &#8230;</p>
<p>Ce pa izvršimo ukaz, ki nam iz IP naslova razreši DNS zapis moramo dobiti rezultat: / If we try to make a reverse lookup we should get the same result:</p>
<p>C:\&gt;ping <strong>-a</strong> 123.123.123.123<br />
Pinging mail.company.com [123.123.123.123] with 32 bytes of data:<br />
Reply from 123.123.123.123: bytes=32 time=111ms TTL=238<br />
&#8230;</p>
<p><em><strong>Nivo poštnega strežnika (SMTP strežnika) / Mail server layer (SMTP server)</strong></em></p>
<p>SMTP strežnik se mora oglasiti z istim imenom, kot je vpisan v MX zapisu &#8211; v našem primeru: mail.company.com. To pa lahko preizkušamo tako, da se z uporabo programa telnet povezemo na poštni strežnik na portu 25. / SMTP server should present with the same name as a name in MX record. In our case this is mail.company.com. This can be tested using telnet program connecting to port 25 of our mail server.<br />
Kot rezultat bi morali dobiti: / As a result you should get:</p>
<p>220 <strong>mail.company.com</strong> Microsoft ESMTP MAIL Service, Version: 6.0.3790.1830 ready at Mon, 5 Feb 2007 23:07:34 +0100</p>
<p><a rel="nofollow" href="http://www.dnsreport.com/" title="http://www.dnsreport.com" class="external free">http://www.dnsreport.com</a> &#8211; preverite nastavitve svoje domen / check your domain name configuration<br />
<a rel="nofollow" href="http://www.dnsstuff.com/" title="http://www.dnsstuff.com" class="external free">http://www.dnsstuff.com</a> &#8211; dodatna orodja za pregled DNS zapisov / additional tools for checking DNS records<br />
<a rel="nofollow" href="http://www.microsoft.com/mscorp/safety/content/technologies/senderid/wizard/" title="http://www.microsoft.com/mscorp/safety/content/technologies/senderid/wizard/" class="external free">http://www.microsoft.com/mscorp/safety/content/technologies/senderid/wizard/</a> &#8211; Sender policy framework &#8211; generator TXT zapisa / Sender policy framework TXT record generator</p>
<p><a href="http://luka.manojlovic.net/index.php/Image:Video-small.jpg" title="Image:Video-small.jpg" class="image"></a> <img border="0" width="20" src="http://luka.manojlovic.net/store/images/Video-small.jpg" height="15" /> <a rel="nofollow" href="http://store.manojlovic.net/videos/Microsoft/Exchange2003SP2/01%20-%20Part%20I%20-%20Message%20delivery%20properties%20-%20General.htm" title="http://store.manojlovic.net/videos/Microsoft/Exchange2003SP2/01%20-%20Part%20I%20-%20Message%20delivery%20properties%20-%20General.htm" class="external text"><strong><font color="#3366bb">I. del / Part I. &#8211; Message delivery properties &#8211; general</font></strong></a><br />
<a rel="nofollow" href="http://store.manojlovic.net/videos/Microsoft/Exchange2003SP2/01%20-%20Part%20I%20-%20Message%20delivery%20properties%20-%20General.wnk" title="http://store.manojlovic.net/videos/Microsoft/Exchange2003SP2/01%20-%20Part%20I%20-%20Message%20delivery%20properties%20-%20General.wnk" class="external text"><font color="#3366bb">(wink source)</font></a> </p>
<p><a href="http://luka.manojlovic.net/index.php/Image:Video-small.jpg" title="Image:Video-small.jpg" class="image"></a><img border="0" width="20" src="http://luka.manojlovic.net/store/images/Video-small.jpg" height="15" /> <a rel="nofollow" href="http://store.manojlovic.net/videos/Microsoft/Exchange2003SP2/02%20-%20Part%20II%20-%20Message%20delivery%20properties%20-%20Connection%20Filtering.htm" title="http://store.manojlovic.net/videos/Microsoft/Exchange2003SP2/02%20-%20Part%20II%20-%20Message%20delivery%20properties%20-%20Connection%20Filtering.htm" class="external text"><strong><font color="#3366bb">II. del / Part II. &#8211; Message delivery properties &#8211; Connection filtering</font></strong></a><br />
<a rel="nofollow" href="http://store.manojlovic.net/videos/Microsoft/Exchange2003SP2/02%20-%20Part%20II%20-%20Message%20delivery%20properties%20-%20Connection%20Filtering.wnk" title="http://store.manojlovic.net/videos/Microsoft/Exchange2003SP2/02%20-%20Part%20II%20-%20Message%20delivery%20properties%20-%20Connection%20Filtering.wnk" class="external text"><font color="#3366bb">(wink source)</font></a> </p>
<p><a href="http://luka.manojlovic.net/index.php/Image:Video-small.jpg" title="Image:Video-small.jpg" class="image"></a><img border="0" width="20" src="http://luka.manojlovic.net/store/images/Video-small.jpg" height="15" /> <a rel="nofollow" href="http://store.manojlovic.net/videos/Microsoft/Exchange2003SP2/03%20-%20Part%20III%20-%20Intelligent%20message%20filter%20and%20Sender%20ID%20Filtering.htm" title="http://store.manojlovic.net/videos/Microsoft/Exchange2003SP2/03%20-%20Part%20III%20-%20Intelligent%20message%20filter%20and%20Sender%20ID%20Filtering.htm" class="external text"><strong><font color="#3366bb">III. del / Part III. &#8211; Message delivery properties &#8211; IMFv2 / Sender ID filtering</font></strong></a><br />
<a rel="nofollow" href="http://store.manojlovic.net/videos/Microsoft/Exchange2003SP2/03%20-%20Part%20III%20-%20Intelligent%20message%20filter%20and%20Sender%20ID%20Filtering.wnk" title="http://store.manojlovic.net/videos/Microsoft/Exchange2003SP2/03%20-%20Part%20III%20-%20Intelligent%20message%20filter%20and%20Sender%20ID%20Filtering.wnk" class="external text"><font color="#3366bb">(wink source)</font></a> </p>
<p><a href="http://luka.manojlovic.net/index.php/Image:Video-small.jpg" title="Image:Video-small.jpg" class="image"></a><img border="0" width="20" src="http://luka.manojlovic.net/store/images/Video-small.jpg" height="15" /> <a rel="nofollow" href="http://store.manojlovic.net/videos/Microsoft/Exchange2003SP2/04%20-%20Part%20IV%20-%20Activate%20filters%20on%20SMTP%20server.htm" title="http://store.manojlovic.net/videos/Microsoft/Exchange2003SP2/04%20-%20Part%20IV%20-%20Activate%20filters%20on%20SMTP%20server.htm" class="external text"><strong><font color="#3366bb">IV. del / Part IV. &#8211; Activate filters on SMTP server</font></strong></a><br />
<a rel="nofollow" href="http://store.manojlovic.net/videos/Microsoft/Exchange2003SP2/04%20-%20Part%20IV%20-%20Activate%20filters%20on%20SMTP%20server.wnk" title="http://store.manojlovic.net/videos/Microsoft/Exchange2003SP2/04%20-%20Part%20IV%20-%20Activate%20filters%20on%20SMTP%20server.wnk" class="external text"><font color="#3366bb">(wink source)</font></a> </p>
<p><a href="http://luka.manojlovic.net/index.php/Image:Video-small.jpg" title="Image:Video-small.jpg" class="image"></a><img border="0" width="20" src="http://luka.manojlovic.net/store/images/Video-small.jpg" height="15" /> <a rel="nofollow" href="http://store.manojlovic.net/videos/Microsoft/Exchange2003SP2/05%20-%20Part%20V%20-%20SMTP%20server%20name.htm" title="http://store.manojlovic.net/videos/Microsoft/Exchange2003SP2/05%20-%20Part%20V%20-%20SMTP%20server%20name.htm" class="external text"><strong><font color="#3366bb">V. del / Part V. &#8211; SMTP server name</font></strong></a></p>
]]></content:encoded>
			<wfw:commentRss>http://luka.manojlovic.net/2007/02/06/konfiguracija-exchange-2003-sp2-streznika-za-filtriranje-proti-crnim-listam-uporaba-intelligent-message-filter-ja-ter-sender-id-procesiranje-configuration-of-exchange-2003-sp2-to-filter-mail-using/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
