<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Problems with DNS-Configuration in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/problems-with-dns-configuration/m-p/2658018#M89847</link>
    <description>Hello,&lt;BR /&gt;&lt;BR /&gt;Vincent and Bill gave you what I think is the right solution :&lt;BR /&gt;   -&amp;gt; Use Masquerading (NAT) because your local IP addresses are not valid on the Internet&lt;BR /&gt;   -&amp;gt; Set up your Linux box to allow traffic on TCP port 53 (DNS).&lt;BR /&gt;&lt;BR /&gt;I would just add a comment on the second point : I would suggest you to configure your Linux router to act as caching-only name server.&lt;BR /&gt;To do so, edit /etc/named.conf as follows :&lt;BR /&gt;&lt;BR /&gt;options {&lt;BR /&gt;        directory "/var/named";&lt;BR /&gt;};&lt;BR /&gt;&lt;BR /&gt;zone "." IN {&lt;BR /&gt; type hint;&lt;BR /&gt; file "db.cache";&lt;BR /&gt;};&lt;BR /&gt;&lt;BR /&gt;zone "localhost." IN {&lt;BR /&gt;        type master;&lt;BR /&gt;        file "db.local";&lt;BR /&gt;        allow-update { none; };&lt;BR /&gt;};&lt;BR /&gt;&lt;BR /&gt;zone "127.in-addr.arpa." IN {&lt;BR /&gt;        type master;&lt;BR /&gt;        file "db.127";&lt;BR /&gt;        allow-update { none; };&lt;BR /&gt;};&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Some distributions of BIND use other names for /var/named/db.cache, db.local or db.127 :&lt;BR /&gt;&lt;BR /&gt;   -&amp;gt; named.ca / localhost.zone / named.local&lt;BR /&gt;   -&amp;gt; root.hint / localhost.zone / 127.0.0.zone&lt;BR /&gt;   -&amp;gt; etc...&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Make your "named" automatically started at boot using chkconfig on RedHat, or manually adding symlinks from /etc/rc.d/rc[2345].d/S99named to /etc/rc.d/init.d/named.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;At the end, configure the win98 boxes to use your Linux router as DNS server.&lt;BR /&gt;&lt;BR /&gt;Good luck.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Kodjo&lt;BR /&gt;</description>
    <pubDate>Mon, 18 Feb 2002 21:06:38 GMT</pubDate>
    <dc:creator>Kodjo Agbenu</dc:creator>
    <dc:date>2002-02-18T21:06:38Z</dc:date>
    <item>
      <title>Problems with DNS-Configuration</title>
      <link>https://community.hpe.com/t5/operating-system-linux/problems-with-dns-configuration/m-p/2658015#M89844</link>
      <description>Hi all,&lt;BR /&gt;I have a problem with the setup of DNS-Entries on my Linux-router or Clients&lt;BR /&gt;The router is on SuSE Linux 7.3, and it is used as Internetgateway for two Win98-Clients.&lt;BR /&gt;So I have given the clients the IP's from the Nameserver of my Provider. The result is, that the clients regular to the internet, to get some local Network informations.&lt;BR /&gt;I have tried to start the Nameserverdaemon on the linux router, but it is not possible to connect to the internet.&lt;BR /&gt;with netstat -nr, I can see, that when the client attempts to connect to the internet, the router connects to the nameserver of the provider, but didn't establish the connection.&lt;BR /&gt;I have started the Nameserverdaemon with YAST and the IP from the router is given as DNS in Win98 Networking properties.&lt;BR /&gt;&lt;BR /&gt;What is the right DNS setup for the Win98 client?&lt;BR /&gt;What to setup on the router?&lt;BR /&gt;&lt;BR /&gt;The router has IP 192.168.15.1, and the clients 192.168.15.2 ....&lt;BR /&gt;&lt;BR /&gt;Thanks for all help&lt;BR /&gt;&lt;BR /&gt;Best Regards&lt;BR /&gt;Daniel :-)</description>
      <pubDate>Mon, 04 Feb 2002 08:22:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/problems-with-dns-configuration/m-p/2658015#M89844</guid>
      <dc:creator>Daniel Schneider</dc:creator>
      <dc:date>2002-02-04T08:22:12Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with DNS-Configuration</title>
      <link>https://community.hpe.com/t5/operating-system-linux/problems-with-dns-configuration/m-p/2658016#M89845</link>
      <description>Hi Daniel,&lt;BR /&gt;&lt;BR /&gt;Here are a few options.&lt;BR /&gt;&lt;BR /&gt;LOCAL LAN:&lt;BR /&gt;&lt;BR /&gt;You can either set up the name server daemon on your router to serve the 192.168.15 zone, or you can create a hosts file for all machines in your LAN and copy it to C:\WINDOWS\SYSTEM32\DRIVERS\ETC on your WIN98 clients.&lt;BR /&gt;&lt;BR /&gt;INTERNET:&lt;BR /&gt;&lt;BR /&gt;A. Configure the name server daemon on your router to forward all DNS requests to your ISP's name servers.&lt;BR /&gt;In that case, you need to set your router as the primary DNS server on the clients.&lt;BR /&gt;&lt;BR /&gt;B. Setup firewalling, ip masquerading and/or NAT and allow connections to port 53(?) of your ISP's name servers. The clients will connect through your router to the name servers of your ISP. NAT / ip masquerading will prevent your local ip addresses from being exposed to the internet.&lt;BR /&gt;If you choose this type of configuration, you have to set the ISP's name servers as DNS servers on the clients.&lt;BR /&gt;&lt;BR /&gt;This can be a bitch to set up, so you might want to look into using FreeSCO -- &lt;A href="http://www.freesco.org" target="_blank"&gt;http://www.freesco.org&lt;/A&gt; . It's specifically designed to be used as a router.&lt;BR /&gt;&lt;BR /&gt;Hope this helps.&lt;BR /&gt;&lt;BR /&gt;Vincent</description>
      <pubDate>Mon, 04 Feb 2002 10:51:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/problems-with-dns-configuration/m-p/2658016#M89845</guid>
      <dc:creator>Vincent Stedema</dc:creator>
      <dc:date>2002-02-04T10:51:26Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with DNS-Configuration</title>
      <link>https://community.hpe.com/t5/operating-system-linux/problems-with-dns-configuration/m-p/2658017#M89846</link>
      <description>Your IP addresses aren't valid on the network so, you must to setup NAT (network address translation) also known as masquerading.&lt;BR /&gt;&lt;BR /&gt;If you have a firewall setup you also need to allow connections out to port 53 on both UDP and TCP protocols.  This should be from unprivileged ports only.&lt;BR /&gt;&lt;BR /&gt;If you setup DNS you will need the to set-up several files  including a file for the root servers.  Check out the BIND howto at &lt;A href="http://www.linuxdoc.org," target="_blank"&gt;www.linuxdoc.org,&lt;/A&gt; or under /usr/docs on you server.</description>
      <pubDate>Wed, 13 Feb 2002 20:01:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/problems-with-dns-configuration/m-p/2658017#M89846</guid>
      <dc:creator>Bill Thorsteinson</dc:creator>
      <dc:date>2002-02-13T20:01:27Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with DNS-Configuration</title>
      <link>https://community.hpe.com/t5/operating-system-linux/problems-with-dns-configuration/m-p/2658018#M89847</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;Vincent and Bill gave you what I think is the right solution :&lt;BR /&gt;   -&amp;gt; Use Masquerading (NAT) because your local IP addresses are not valid on the Internet&lt;BR /&gt;   -&amp;gt; Set up your Linux box to allow traffic on TCP port 53 (DNS).&lt;BR /&gt;&lt;BR /&gt;I would just add a comment on the second point : I would suggest you to configure your Linux router to act as caching-only name server.&lt;BR /&gt;To do so, edit /etc/named.conf as follows :&lt;BR /&gt;&lt;BR /&gt;options {&lt;BR /&gt;        directory "/var/named";&lt;BR /&gt;};&lt;BR /&gt;&lt;BR /&gt;zone "." IN {&lt;BR /&gt; type hint;&lt;BR /&gt; file "db.cache";&lt;BR /&gt;};&lt;BR /&gt;&lt;BR /&gt;zone "localhost." IN {&lt;BR /&gt;        type master;&lt;BR /&gt;        file "db.local";&lt;BR /&gt;        allow-update { none; };&lt;BR /&gt;};&lt;BR /&gt;&lt;BR /&gt;zone "127.in-addr.arpa." IN {&lt;BR /&gt;        type master;&lt;BR /&gt;        file "db.127";&lt;BR /&gt;        allow-update { none; };&lt;BR /&gt;};&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Some distributions of BIND use other names for /var/named/db.cache, db.local or db.127 :&lt;BR /&gt;&lt;BR /&gt;   -&amp;gt; named.ca / localhost.zone / named.local&lt;BR /&gt;   -&amp;gt; root.hint / localhost.zone / 127.0.0.zone&lt;BR /&gt;   -&amp;gt; etc...&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Make your "named" automatically started at boot using chkconfig on RedHat, or manually adding symlinks from /etc/rc.d/rc[2345].d/S99named to /etc/rc.d/init.d/named.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;At the end, configure the win98 boxes to use your Linux router as DNS server.&lt;BR /&gt;&lt;BR /&gt;Good luck.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Kodjo&lt;BR /&gt;</description>
      <pubDate>Mon, 18 Feb 2002 21:06:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/problems-with-dns-configuration/m-p/2658018#M89847</guid>
      <dc:creator>Kodjo Agbenu</dc:creator>
      <dc:date>2002-02-18T21:06:38Z</dc:date>
    </item>
  </channel>
</rss>

