无法将本地域名绑定到我的系统

无法将本地域名绑定到我的系统

我在 /etc/named.conf 中添加了一个新区域,如下所示:

zone "mysite.local" IN {
  type master;
  file "mysite.local.zone";
  allow-update { none; };
};

另外,区域文件如下:

;File name: mysite.local.zone

$TTL    604800
@       IN      SOA     ns1.mysite.local. admin.mysite.local. (
                  3       ; Serial
             604800     ; Refresh
              86400     ; Retry
            2419200     ; Expire
             604800 )   ; Negative Cache TTL
;
; name servers - NS records
     IN      NS      ns1.mysite.local.
;     IN      NS      ns2.nyc3.example.com.

; name servers - A records
ns1.mysite.local.          IN      A      192.168.6.30
;ns2.nyc3.example.com.          IN      A       10.128.20.12

; 10.128.0.0/16 - A records
;host1.mysite_local.com.        IN      A      10.128.100.101
;host2.nyc3.example.com.        IN      A      10.128.200.102

指定服务启动没有问题,但当我使用 nslookup 和 ping\ 检查时,系统无法解析 mysite.local

另外,我无法通过浏览器访问我在 httpd.conf 中创建为 VirtualHost 的域名,如下所示:

<VirtualHost 127.0.0.1:80>
  ServerName mysite.local
  ServerAlias www.mysite.local
  DocumentRoot "/var/www/html"
  SetEnv APPLICATION_ENV "development"
 <Directory "/var/www/html/public_html">
  DirectoryIndex index.php
  Order allow,deny
  AllowOverride All
  Require all granted
 </Directory>
</VirtualHost>

最后,这是我的 ifcfg-eno1 文件:

TYPE=Ethernet
BOOTPROTO=static
NAME=eno1
DEVICE=eno1
UUID=9a375715-f0d7-3fa8-8494-6a5d10946f16
ONBOOT=yes
DEVICE=eno1
IPADDR=192.168.6.30
NETMASK=255.255.255.0
GATEWAY=192.168.6.1
PREFIX=24
DNS1=192.168.6.30
DNS2=8.8.8.8
DEFROUTE=yes

我在这上面花了很多时间但没有成功。我之前在具有静态 IP 的 VPS 服务器上完成过此操作并且它有效,但在我的本地网络上却无效。有人能告诉我哪里把事情搞砸了吗?

相关内容