为什么我的 BIND / Apache 配置不起作用?

为什么我的 BIND / Apache 配置不起作用?

我正在尝试使用 Apache Web 服务器设置 BIND 配置。我想要实现的是使用 URL www.exampler.net 访问可以在我的 Apache Web 服务器的 /var/www/html 文件夹中找到的内容。我在一台 IP 地址为 192.168.1.4 的机器上执行此操作。当我在有线连接开启的情况下挖掘 www.exampler.net 时,它只会找到 Google 的名称服务器,但是当我关闭有线连接时,它会立即找到我的 ns1.exampler.net。这是为什么?此外,通过在浏览器中写入 www.exampler.net,它不会将我重定向到可以在 /var/www/html 中找到的本地网站,但通过写入 192.168.1.4 i 就可以。

/etc/bind/named.conf.local

zone "exampler.net"{
        type master;
        file "/etc/bind/zones/db.exampler.net";
};

/etc/bind/zones/db.exampler.net

;
; exampler.net = domain name
;
$TTL    604800
exampler.net.   IN      SOA     ns1.exampler.net. admin.localhost. (
                              2         ; Serial
                         604800         ; Refresh
                          86400         ; Retry
                        2419200         ; Expire
                         604800 )       ; Negative Cache TTL
; name servers
exampler.net.   IN      NS      ns1.exampler.net.

; ip addresses
ns1     IN      A       192.168.1.4
www     IN      A       192.168.1.4

/etc/apache2/sites-available/000-default.conf

<VirtualHost *:80>
        ServerName exampler.net:80
        ServerAlias www.exampler.net

        ServerAdmin webmaster@localhost
        DocumentRoot /var/www/html

        ErrorLog ${APACHE_LOG_DIR}/error.log
        CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>

我正在使用 Ubuntu 14.04.1。我只想在本地执行此操作,以便我的 LAN 服务器上的主机可以使用给定的域名访问可以在我的 Apache/NS 服务器上找到的网站。提前致谢!

答案1

我还需要将我的 NS 添加到 NetworkManager。

sudo nano /etc/NetworkManager/system-connections/Wired\ Connection\ 1

在文件底部添加以下行:

dns=<your NS' ip address>;

相关内容