Raspberry Pi 上的家庭 DNS

Raspberry Pi 上的家庭 DNS

我对从家里或办公室设置 DNS 有一些疑问。澄清一下,我正在尝试托管自己的 DNS

1) 我正在浏览另一个网站(抱歉,似乎无法重新定位它)关于从家里设置 DNS,他们谈到除了托管 Web 服务器的机器之外,还需要两台具有静态 IP 地址的计算机。

a) Is there another option for this?

b) If there is not another option how do I go about setting up a static IP?

2) 我正在考虑使用两个 Raspberry Pi Zero 作为静态 IP DNS,并使用原始 Raspberry 型号 B 作为网络服务器。

a) Will this even work?

b) like I asked above is there another way of doing this? (ie: software or a specific type of hardware)

3) 有人知道时代华纳有线电视公司或世纪互联公司是否允许在家中使用 DNS 吗?

(我具体在做什么:我正尝试在原装 Raspberry Pi 型号 B 上设置一个 Web 服务器,并使用两个 Raspberry Pi Zero 作为 DNS。我计划在一家小型企业的办公楼中运行一个轻量级的 4 到 5 页的网站)

答案1

要在运行 raspian 的 Pi 上配置静态 IP 地址,您需要编辑/etc/network/interfaces。例如,如果您的企业有地址块 210.5.5.0/24,并且您想将 210.5.5.10 用于其中一个 DNS 服务器,则可以修改文件以包含以下行

iface eth0 inet static
    address 210.5.5.10
    netmask 255.255.255.0
    gateway 210.5.5.1

然后通过sudo service networking restart或电源循环重新启动网络。

相关内容