<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://www.wiki.mohid.com/index.php?action=history&amp;feed=atom&amp;title=Bind</id>
		<title>Bind - Revision history</title>
		<link rel="self" type="application/atom+xml" href="http://www.wiki.mohid.com/index.php?action=history&amp;feed=atom&amp;title=Bind"/>
		<link rel="alternate" type="text/html" href="http://www.wiki.mohid.com/index.php?title=Bind&amp;action=history"/>
		<updated>2026-04-05T01:39:18Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.28.0</generator>

	<entry>
		<id>http://www.wiki.mohid.com/index.php?title=Bind&amp;diff=65&amp;oldid=prev</id>
		<title>Guillaume: 1 revision</title>
		<link rel="alternate" type="text/html" href="http://www.wiki.mohid.com/index.php?title=Bind&amp;diff=65&amp;oldid=prev"/>
				<updated>2008-12-03T10:26:57Z</updated>
		
		<summary type="html">&lt;p&gt;1 revision&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr style='vertical-align: top;' lang='en'&gt;
				&lt;td colspan='1' style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan='1' style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;Revision as of 10:26, 3 December 2008&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan='2' style='text-align: center;' lang='en'&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(No difference)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Guillaume</name></author>	</entry>

	<entry>
		<id>http://www.wiki.mohid.com/index.php?title=Bind&amp;diff=64&amp;oldid=prev</id>
		<title>192.168.20.177: /* CentOs configuration */</title>
		<link rel="alternate" type="text/html" href="http://www.wiki.mohid.com/index.php?title=Bind&amp;diff=64&amp;oldid=prev"/>
				<updated>2008-03-11T11:41:31Z</updated>
		
		<summary type="html">&lt;p&gt;‎&lt;span dir=&quot;auto&quot;&gt;&lt;span class=&quot;autocomment&quot;&gt;CentOs configuration&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;[[Bind]] allows to configure the junction between an IP and a domain name via a domain name server.&lt;br /&gt;
&lt;br /&gt;
==CentOs configuration==&lt;br /&gt;
Configure the ''named.conf'' and add a ''zone &amp;quot;point.pt&amp;quot;''&lt;br /&gt;
&lt;br /&gt;
 /etc/named.conf&lt;br /&gt;
 options {&lt;br /&gt;
         directory &amp;quot;/etc&amp;quot;;&lt;br /&gt;
         pid-file &amp;quot;/var/run/named/named.pid&amp;quot;;&lt;br /&gt;
         listen-on {&lt;br /&gt;
                 128.177.28.198;&lt;br /&gt;
                 127.0.0.1;&lt;br /&gt;
         };&lt;br /&gt;
 &lt;br /&gt;
         allow-query {&lt;br /&gt;
                 localhost;&lt;br /&gt;
         };&lt;br /&gt;
         allow-transfer {&lt;br /&gt;
                localhost;&lt;br /&gt;
         };&lt;br /&gt;
 &lt;br /&gt;
         check-names     master          warn;&lt;br /&gt;
         check-names     slave           warn;&lt;br /&gt;
         check-names     response        warn;&lt;br /&gt;
         };&lt;br /&gt;
 &lt;br /&gt;
 zone &amp;quot;.&amp;quot; {&lt;br /&gt;
         type hint;&lt;br /&gt;
         file &amp;quot;/etc/db.cache&amp;quot;;&lt;br /&gt;
         };&lt;br /&gt;
 &lt;br /&gt;
 zone &amp;quot;point.pt&amp;quot; {&lt;br /&gt;
         type master;&lt;br /&gt;
         file &amp;quot;/var/named/point.pt.hosts&amp;quot;;&lt;br /&gt;
         allow-transfer {&lt;br /&gt;
                 207.126.122.215;&lt;br /&gt;
                 66.249.3.204;&lt;br /&gt;
                 };&lt;br /&gt;
         };&lt;br /&gt;
&lt;br /&gt;
Then create and edit the ''/var/named/point.pt.hosts'' file:&lt;br /&gt;
 @	IN	SOA	pointpt.user.openhosting.com. mr.hugo.gomes.gmail.com. (198254559	10800	3600	604800	38400 )&lt;br /&gt;
 &lt;br /&gt;
 @            IN   NS      dns.point.pt. &lt;br /&gt;
 @            IN   NS      ns1.openhosting.com. &lt;br /&gt;
 @            IN   NS      ns2.openhosting.com. &lt;br /&gt;
 &lt;br /&gt;
 @            IN   MX   10   mail &lt;br /&gt;
       &lt;br /&gt;
 @            IN   A      128.177.28.198&lt;br /&gt;
 &lt;br /&gt;
 dns.point.pt.          IN   A      128.177.28.198 &lt;br /&gt;
 ns1.openhosting.com.   IN   A        207.126.122.215&lt;br /&gt;
 ns2.openhosting.com.   IN   A        66.249.3.204&lt;br /&gt;
 &lt;br /&gt;
 www.point.pt.      IN   CNAME      dns &lt;br /&gt;
 mail.point.pt.      IN   CNAME      dns &lt;br /&gt;
 test.point.pt.      IN   CNAME      dns &lt;br /&gt;
 &lt;br /&gt;
 128.177.28.198.point.pt.   IN   PTR      dns&lt;br /&gt;
 207.126.122.215.openhosting.com.   IN   PTR      ns1&lt;br /&gt;
 66.249.3.204.openhosting.com.   IN   PTR      ns2&lt;br /&gt;
&lt;br /&gt;
Then add the ''/var/named/point.pt.hosts'' file in the secondary dns servers as well. We asked to Openhosting to do it, and they kindly did.&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
*[http://forums.openhosting.com/viewtopic.php?t=279&amp;amp;highlight=bind openhosting forum]&lt;br /&gt;
&lt;br /&gt;
[[Category:linux]]&lt;/div&gt;</summary>
		<author><name>192.168.20.177</name></author>	</entry>

	</feed>
<script>
  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  })(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
  ga('create', 'UA-56589921-5', 'auto');
  ga('send', 'pageview');
</script>