bind9 DNS 服务器和虚拟主机 apache2:开始运行多个虚拟主机,如 foo.myenterprise.com

bind9 DNS 服务器和虚拟主机 apache2:开始运行多个虚拟主机,如 foo.myenterprise.com

我的目标是在我企业局域网(Debian 9 服务器)中的 apache 网络服务器上托管各种站点(本地虚拟主机)。

以便:

  • openproject.myenterprise.local => /opt/openproject
  • wiki.myenterprise.local => /var/www/location/wiki
  • ETC。

我在 apache2 网络服务器上配置了虚拟主机

  • /etc/apache2/sites-available/openproject.confServerName openproject.myenterprise.local
  • /etc/apache2/sites-available/000-main-static-site.confServerName vmDebDevSrv1.myenterprise.local ServerAlias salado.myenterprise.local
  • /etc/apache2/sites-available/001-wiki.confServerName wiki.myenterprise.local

现在它正在使用本地配置/etc/hosts

172.16.12.171 openproject.myenterprise.local
172.16.12.171 wiki.myenterprise.local

当我添加使用 bind9 进行 DNS 解析它不再起作用了。我猜是因为我的服务器无法中继我使用的 FQDN。

  • 当我 ping 或将 URL 放入浏览器时,wiki它可以工作,但会给我提供我的网络服务器的主目录,而不是 wiki 虚拟主机

编辑:ping wiki给我:

ws1: ~$ ping wiki
PING ns1.myenterprise.local (172.16.10.174): 56 data bytes
64 bytes from 172.16.10.174: icmp_seq=0 ttl=64 time=0.282 ms
^C--- ns1.myenterprise.local ping statistics ---
2 packets transmitted, 2 packets received, 0% packet loss
round-trip min/avg/max/stddev = 0.282/0.325/0.368/0.043 ms

/编辑

  • 当我 ping wiki.myenterprise.local 时,它不起作用ping: unknown host编辑:nslookup 与 FQDN 配合使用/编辑

我的 /etc/resolv.conf

domain myenterprise.local
search myenterprise.local
nameserver 172.16.12.174
nameserver 172.16.12.1
nameserver ...

/etc/bind/db.myenterprise.local

$TTL|   604800
@|      IN|     SOA|    ns1.myenterprise.local. root.vmDebDevSrv1.myenterprise.local. (
|       |       |       20181129|       ; Serial
|       |       |        604800||       ; Refresh
|       |       |         86400||       ; Retry
|       |       |       2419200||       ; Expire
|       |       |        604800 )|      ; Negative Cache TTL

;Name server information
@|      IN|     NS|     ns1.myenterprise.local.

;IP Address of Domain Name Server(DNS) setted on line above
ns1|    IN|     A|      172.16.12.174

;CNAME Records
vmDebDevSrv1|   IN|     CNAME|  ns1.myenterprise.local.
wiki|   IN|     CNAME|  vmDebDevSrv1.myenterprise.local.
openproject|    IN|     CNAME|  vmDebDevSrv1.myenterprise.local.

;tried too with 
;wiki|   IN|     A  172.16.12.174
;openproject|   IN|     A  172.16.12.174

我错过了什么?!!!我以为路径是short-name=>DNS=>FQDN=>Apache2=>well page returned

所以我猜不可能得到

答案1

当我 ping 或将 url 放入我的浏览器 wiki 时,它可以工作,但显示的是我的网络服务器的主目录,而不是 wiki 虚拟主机。

当您仅wiki在浏览器窗口中输入时,我想说,即使操作系统在尝试执行 DNS 查找时添加了搜索域,HostHTTP 请求中发送的标头也只是您在浏览器窗口中输入的内容,即。要使其工作,请在您的 Apache 配置中Host: wiki输入。ServerAlias wiki

当我 ping wiki.myenterprise.local 时,它不起作用。

你能粘贴 ping 命令的输出吗?需要考虑的一些故障排除步骤:

  • 您能解析您的 FQDN 吗?请提供您可以解析的证据。
  • 您能否仅使用主机名进行解析,即搜索域是否正确应用于您的 DNS 查询?请提供您可以这样做的证据。
  • 它们都解析到正确的 IP 地址吗?请提供证明。
  • 如果不起作用,请检查您的路由和防火墙规则。

相关内容