<?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>A Technical Guy&#039;s Blog &#187; Nameservers</title>
	<atom:link href="http://www.technicalguy.org/category/nameservers/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.technicalguy.org</link>
	<description>Technical Stuff is boring but Technical Guy is funny</description>
	<lastBuildDate>Wed, 31 Mar 2010 14:49:17 +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>Block DNS Zone Transfers</title>
		<link>http://www.technicalguy.org/2010/01/12/block-dns-zone-transfers/</link>
		<comments>http://www.technicalguy.org/2010/01/12/block-dns-zone-transfers/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 06:09:08 +0000</pubDate>
		<dc:creator>Pin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Nameservers]]></category>

		<guid isPermaLink="false">http://www.technicalguy.org/?p=155</guid>
		<description><![CDATA[How valuable? They can get a list of all your DNS records, which can expose lots of juicy details about your servers. BIND, one of the most popular DNS servers on the Internet, can be found as the default DNS server for many Linux and UNIX distributions. As such, it is important to determine how [...]]]></description>
			<content:encoded><![CDATA[<p>How valuable? They can get a list of all your DNS records, which can expose lots of juicy details about your servers.</p>
<blockquote><p>
BIND, one of the most popular DNS servers on the Internet, can be found as the default DNS server for many Linux and UNIX distributions. As such, it is important to determine how to handle zone transfers on that platform as well.</p>
<p>BIND’sprimary configuration takes places in the /etc/named.conf file for BIND 8 and 9 (/etc/named.boot for BIND 4, which you should consider upgrading if you are still running). This is a text file with a number of directives that control how BIND will respond to various situations. BIND’s default configuration, like Win2K&#8217;s and WinNT&#8217;s, allows a zone transfer to take place from anywhere.</p>
<p>To secure your BIND server, you must open the /etc/named.conf (or /etc/named.boot) file in a text editor and find the line marked &#8220;allow-transfer { any; };&#8221; which indicates that any IP address is allowed to get zone information. In this example, I want to allow zone transfers to take place only between my Red Hat 8 server, my Windows NT server with IP address 192.168.1.4, and another server with IP address 172.16.1.5. Therefore, I will change the allow-transfer line to read like the following:</p>
<p>allow-transfer{192.168.1.4; 172.16.1.5; };
</p></blockquote>
<p>Zoneedit allows you to restrict zone transfers to specific IPs under its Security Settings. This is extremely useful if you do not wish to disclose more information about your pointing.</p>
<div id="attachment_156" class="wp-caption alignnone" style="width: 377px"><a href="http://www.technicalguy.org/wp-content/uploads/2010/01/transfer.png"><img src="http://www.technicalguy.org/wp-content/uploads/2010/01/transfer.png" alt="" title="transfer" width="367" height="252" class="size-full wp-image-156" /></a><p class="wp-caption-text">Zone Transfer</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.technicalguy.org/2010/01/12/block-dns-zone-transfers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>No Sales Leads?</title>
		<link>http://www.technicalguy.org/2008/08/25/no-sales-leads/</link>
		<comments>http://www.technicalguy.org/2008/08/25/no-sales-leads/#comments</comments>
		<pubDate>Mon, 25 Aug 2008 04:08:23 +0000</pubDate>
		<dc:creator>Pin</dc:creator>
				<category><![CDATA[Email]]></category>
		<category><![CDATA[Nameservers]]></category>
		<category><![CDATA[Web Hosting]]></category>

		<guid isPermaLink="false">http://www.technicalguy.org/2008/08/25/no-sales-leads/</guid>
		<description><![CDATA[We use online forms to capture leads, from enquiries to successful sales order. Have you ever wonder what if the delivery mechanism fail and the leads are not delivered to you?

See, submission are sent to you by email. What if the email agent used by your online form is not working as expected? Will you be informed if the email was not sent successfully? As online forms taking care of all the important sales conversion, it is important for you to understand how it works.

<strong>Using built-in SMTP</strong>

If your website is hosted in a Linux server (you can tell if your website ends with .php, in most case), changes you are using Sendmail as the email agent of your online forms. Sendmail do trigger Error message if a message failed to deliver for some reasons. Anyway, the messages will go to the administrator of the server, not you - most of the time.

Another problem with build-in SMTP server is, when your web hosting and email hosting are in the same server. Your web form will most likely 'smart' enough to route the submission of online forms to your mailbox. This will cause problem if you have some changes to your Mail Exchange pointing. 

<strong>Using external SMTP</strong>

Just imagine the online form is now your email clients, such as Outlook Express. Everytime, an enquiry waiting to be delivered to you, your online form will connect to a specified SMTP, authorized as usual, and get the message delivered to you. You will have more control in this case, and your email hosting service provider will most likely provide you some status report for the uptime of your email server.
]]></description>
			<content:encoded><![CDATA[<p>We use online forms to capture leads, from enquiries to successful sales order. Have you ever wonder what if the delivery mechanism fail and the leads are not delivered to you?</p>
<p>See, submission are sent to you by email. What if the email agent used by your online form is not working as expected? Will you be informed if the email was not sent successfully? As online forms taking care of all the important sales conversion, it is important for you to understand how it works.</p>
<p><strong>Using built-in SMTP</strong></p>
<p>If your website is hosted in a Linux server (you can tell if your website ends with .php, in most case), changes you are using Sendmail as the email agent of your online forms. Sendmail do trigger Error message if a message failed to deliver for some reasons. Anyway, the messages will go to the administrator of the server, not you &#8211; most of the time.</p>
<p>Another problem with build-in SMTP server is, when your web hosting and email hosting are in the same server. Your web form will most likely &#8216;smart&#8217; enough to route the submission of online forms to your mailbox. This will cause problem if you have some changes to your Mail Exchange pointing. </p>
<p><strong>Using external SMTP</strong></p>
<p>Just imagine the online form is now your email clients, such as Outlook Express. Everytime, an enquiry waiting to be delivered to you, your online form will connect to a specified SMTP, authorized as usual, and get the message delivered to you. You will have more control in this case, and your email hosting service provider will most likely provide you some status report for the uptime of your email server.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.technicalguy.org/2008/08/25/no-sales-leads/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stop Using TM&#8217;s DNS Servers</title>
		<link>http://www.technicalguy.org/2008/08/13/stop-using-tms-dns-servers/</link>
		<comments>http://www.technicalguy.org/2008/08/13/stop-using-tms-dns-servers/#comments</comments>
		<pubDate>Wed, 13 Aug 2008 13:49:11 +0000</pubDate>
		<dc:creator>Pin</dc:creator>
				<category><![CDATA[Nameservers]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[broadband]]></category>
		<category><![CDATA[celcom]]></category>
		<category><![CDATA[DNS]]></category>
		<category><![CDATA[domain name server]]></category>
		<category><![CDATA[downtime]]></category>
		<category><![CDATA[jaring]]></category>
		<category><![CDATA[maxis]]></category>
		<category><![CDATA[opendns]]></category>
		<category><![CDATA[primary]]></category>
		<category><![CDATA[resolving]]></category>
		<category><![CDATA[secondary]]></category>
		<category><![CDATA[streamyx]]></category>
		<category><![CDATA[timenet]]></category>
		<category><![CDATA[tm]]></category>

		<guid isPermaLink="false">http://www.technicalguy.org/2008/08/13/stop-using-tms-dns-servers/</guid>
		<description><![CDATA[Sorry to have sound a little harsh in the title. Trust me, if there are only two last DNS servers to use, check out <a href="http://www.opendns.com/">OpenDNS</a>. The nameservers are 208.67.222.222 and 208.67.220.220. Forget about our local ISPs' DNS servers. They are geographically near you, but that doesn't mean they are realiable!

DNS is important. A good one log you into your server without delay, resolving your web address in your web browser quicker! Yet, our local ISPs never seem to take care of this seriously. Your router, computers, servers around you require a pair of reliable DNS servers.

Change your DNS now:

<strong>1) In your Router</strong>

<img class='img-shadow' src="http://www.technicalguy.org/wp-content/uploads/2008/08/use-following-dns-server.gif" alt="" />

<a href="http://www.opendns.com/start/">Enable OpenDNS in your router so every computer benefits</a>. The OpenDNS website is kind enough to list every model of router and guide you through the process. Stop using the famous Streamyx's DNS servers (202.188.0.133 &#038; 202.188.1.5).

<strong>2) In your Computer</strong>

<img class='img-shadow' src="http://www.technicalguy.org/wp-content/uploads/2008/08/router-dns.gif" alt="" />

If you're connecting to Internet directly without a router, you can <a href="http://www.opendns.com/start/">enter OpenDNS's DNS servers</a> into your computer, instead of using 'obtain DNS server address automatically'. This also applies to those on Wireless broadband such as Celcom and Maxis 3G, etc.

<strong>3) In your Server</strong>

<img class='img-shadow' src="http://www.technicalguy.org/wp-content/uploads/2008/08/linux-resolv-conf-dns.gif" alt="" />

For example, if you have Linux installed in your server, include OpenDNS's DNS servers to /etc/resolv.conf. I'm using TM's DNS earlier and my <em>dig</em> and <em>host</em> command stop responding when <a href="http://www.security.org.my/index.php?/archives/TMs-DNS-Server-Decided-to-Go-for-Teh-Tarik.html">TM's DNS server decided to go teh tarik...</a>

<strong>About OpenDNS</strong>

From the way how OpenDNS manage their website, <a href="http://system.opendns.com/">showing the uptime of their globally loacated servers</a> - rest assure this is the last time to change your DNS!

]]></description>
			<content:encoded><![CDATA[<p>Sorry to have sound a little harsh in the title. Trust me, if there are only two last DNS servers to use, check out <a href="http://www.opendns.com/">OpenDNS</a>. The nameservers are 208.67.222.222 and 208.67.220.220. Forget about our local ISPs&#8217; DNS servers. They are geographically near you, but that doesn&#8217;t mean they are realiable!</p>
<p>DNS is important. A good one log you into your server without delay, resolving your web address in your web browser quicker! Yet, our local ISPs never seem to take care of this seriously. Your router, computers, servers around you require a pair of reliable DNS servers.</p>
<p>Change your DNS now:</p>
<p><strong>1) In your Router</strong></p>
<p><img class='img-shadow' src="http://www.technicalguy.org/wp-content/uploads/2008/08/use-following-dns-server.gif" alt="" /></p>
<p><a href="http://www.opendns.com/start/">Enable OpenDNS in your router so every computer benefits</a>. The OpenDNS website is kind enough to list every model of router and guide you through the process. Stop using the famous Streamyx&#8217;s DNS servers (202.188.0.133 &#038; 202.188.1.5).</p>
<p><strong>2) In your Computer</strong></p>
<p><img class='img-shadow' src="http://www.technicalguy.org/wp-content/uploads/2008/08/router-dns.gif" alt="" /></p>
<p>If you&#8217;re connecting to Internet directly without a router, you can <a href="http://www.opendns.com/start/">enter OpenDNS&#8217;s DNS servers</a> into your computer, instead of using &#8216;obtain DNS server address automatically&#8217;. This also applies to those on Wireless broadband such as Celcom and Maxis 3G, etc.</p>
<p><strong>3) In your Server</strong></p>
<p><img class='img-shadow' src="http://www.technicalguy.org/wp-content/uploads/2008/08/linux-resolv-conf-dns.gif" alt="" /></p>
<p>For example, if you have Linux installed in your server, include OpenDNS&#8217;s DNS servers to /etc/resolv.conf. I&#8217;m using TM&#8217;s DNS earlier and my <em>dig</em> and <em>host</em> command stop responding when <a href="http://www.security.org.my/index.php?/archives/TMs-DNS-Server-Decided-to-Go-for-Teh-Tarik.html">TM&#8217;s DNS server decided to go teh tarik&#8230;</a></p>
<p><strong>About OpenDNS</strong></p>
<p>From the way how OpenDNS manage their website, <a href="http://system.opendns.com/">showing the uptime of their globally loacated servers</a> &#8211; rest assure this is the last time to change your DNS!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.technicalguy.org/2008/08/13/stop-using-tms-dns-servers/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
