Page 16 of 16 FirstFirst ... 6141516
Results 151 to 153 of 153

Thread: Howto: Setup a DNS server with bind

  1. #151
    Join Date
    May 2014
    Beans
    1

    Re: Howto: Setup a DNS server with bind

    Quote Originally Posted by subscr View Post
    When I try and install bnd9, here is what I get..Any ideas ?

    sudo apt-get install bind9
    Reading package lists... Done
    Building dependency tree... Done
    Some packages could not be installed. This may mean that you have
    requested an impossible situation or if you are using the unstable
    distribution that some required packages have not yet been created
    or been moved out of Incoming.

    Since you only requested a single operation it is extremely likely that
    the package is simply not installable and a bug report against
    that package should be filed.
    The following information may help to resolve the situation:

    The following packages have unmet dependencies:
    bind9: Depends: libdns21 (= 1:9.3.2-2ubuntu1) but 1:9.3.2-2ubuntu1.1 is to be installed
    Depends: libisccfg1 (= 1:9.3.2-2ubuntu1) but 1:9.3.2-2ubuntu1.1 is to be installed
    Depends: libisc11 (= 1:9.3.2-2ubuntu1) but 1:9.3.2-2ubuntu1.1 is to be installed
    Depends: libisccc0 (= 1:9.3.2-2ubuntu1) but 1:9.3.2-2ubuntu1.1 is to be installed
    just simply
    remove all the libraries defined above by the apt-get remove command for example
    apt-get remove libisccfg1
    then simply install the bind9 by the apt-get install bind9 command

  2. #152
    Join Date
    Oct 2011
    Beans
    1

    Re: Howto: Setup a DNS server with bind

    hello all!
    please, help me understand
    Code:
    // replace example.com with your domain name. do not forget the . after the domain name!
    // Also, replace ns1 with the name of your DNS server
    example.com.      IN      SOA     ns1.example.com. admin.example.com. (
    // Do not modify the following lines!
                                                            2006081401
                                                            28800
                                                            3600
                                                            604800
                                                            38400
     )
    
    // Replace the following line as necessary:
    // ns1 = DNS Server name
    // mta = mail server name
    // example.com = domain name
    example.com.      IN      NS              ns1.example.com.
    example.com.      IN      MX     10       mta.example.com.
    
    // Replace the IP address with the right IP addresses.
    www              IN      A       192.168.0.2
    mta              IN      A       192.168.0.3
    ns1              IN      A       192.168.0.1
    What is ns1 nameserver?
    for what i need other nameserver? if i install bind?
    Last edited by Iterhit; December 8th, 2014 at 12:07 AM.

  3. #153
    Join Date
    Jul 2015
    Beans
    1

    Re: Howto: Setup a DNS server with bind

    How to make this work with multiple VirtualHost to same ip : port?

    Code:
    <VirtualHost *:80>...</VirtualHost>
    <VirtualHost *:80>...</VirtualHost>
    ...

Page 16 of 16 FirstFirst ... 6141516

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •