Guest User!

You are not Sophos Staff.

This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Dns + Http

Hi guys,
Can somebody please give me a step by step guild lines to setting up my internal network to go on the net. I have 2 DNS server with private IPs(192.168.x.x). Both are sitting in the DMZ.

Can I link them to my providers DNS?

I am a newbie,thanks
Please help

next

[ 14 January 2002: Message edited by: nextcomng ]

[ 15 January 2002: Message edited by: nextcomng ]



This thread was automatically locked due to age.
Parents
  • Youre DNS-Server have to use a NS for themself. Put in the rules that they are allowed to access these and it shoul work. Which problems do you have? Also they can use your ASL as DNS Proxy. Then you have to enable Proxys->DNS Proxy and define the external NS in there...
Reply
  • Youre DNS-Server have to use a NS for themself. Put in the rules that they are allowed to access these and it shoul work. Which problems do you have? Also they can use your ASL as DNS Proxy. Then you have to enable Proxys->DNS Proxy and define the external NS in there...
Children
  • hi,

    ns-01 has ip 192.168.10.5
    ns-02 has ip 192.168.10.197

    the /etc/resolv.conf (or similar) of your LAN-clients, servers and internal dns-servers should look like:

    ># cat /etc/resolv.conf
    nameserver 192.168.10.5
    nameserver 192.168.10.197

    the dns servers must be configured that way, that they use your ISPs dns-servers as "forwarders". for isc bind your /etc/named.conf should look like:

    options { 
            directory "/var/named/"; 
            forwarders { 1.2.3.4;
                         198.197.196.195; };
    };

    ...
    ...

    hope that helps

    bye,
    michael