注册
|
登录
发帖
热搜
活动
交友
discuz
论坛
BBS
翼度工具
翼度网址导航
开发工具
Linux命令速查
网页设计配色表
在线制作icon
颜色代码选取器
翼度科技
»
论坛
›
云主机
›
LINUX
›
查看内容
返回列表
发新帖
DNS/DHCP 服务器
黄聪波
黄聪波
当前离线
积分
12
4
主题
4
帖子
12
积分
新手上路
新手上路, 积分 12, 距离下一级还需 38 积分
新手上路, 积分 12, 距离下一级还需 38 积分
积分
12
发消息
显示全部楼层
DNS/DHCP 服务器(Dnsmasq)
(01)安装Dnsmasq
Dnsmasq:安装
安装 Dnsmasq,它是轻量级的 DNS 转发器和 DHCP 服务器软件。
[1] 安装 Dnsmasq。
root@dlp:~# apt -y install dnsmasq
复制代码
[2] 配置 Dnsmasq。
root@dlp:~# vi /etc/dnsmasq.conf
# line 19 : uncomment
# never forward plain names
domain-needed
# line 21 : uncomment
# never forward addresses in the non-routed address spaces
bogus-priv
# line 53 : uncomment
# query with each server strictly in the order in resolv.conf
strict-order
# line 67 : add if you need
# query the specific domain name to the specific DNS server
# the example follows means query [server.education] domain to the [10.0.0.10] server
server=/server.education/10.0.0.10
# line 116 : uncomment and specify network interfaces to bind
interface=enp1s0
# line 134 : uncomment
bind-interfaces
# line 145 : uncomment to add domain name on hostname automatically
expand-hosts
# line 155 : add to set domain name
domain=srv.world
# change the link according to man page of systemd-resolved in order to avoid conflicting on 53
root@dlp:~# ln -fs /run/systemd/resolve/resolv.conf /etc/resolv.conf
root@dlp:~# systemctl restart dnsmasq systemd-resolved
复制代码
[3] 对于 DNS 记录,请将其添加到 [/etc/hosts] 中。然后,Dnsmasq 将回答客户的查询。
root@dlp:~# vi /etc/hosts
# add DNS entries
10.0.0.30 dlp.srv.world dlp
10.0.0.31 www.srv.world www
root@dlp:~# systemctl reload dnsmasq
复制代码
[4] 验证网络中客户端主机的名称或地址解析。
root@desktop:~#
vi
/etc/netplan/01-netcfg.yaml# change DNS setting to refer to Dnsmasq Server
nameservers:
addresses: [10.0.0.30]
复制代码
root@desktop:~# netplan apply
root@desktop:~#
grep
nameserver /run/systemd/resolve/resolv.conf
nameserver 10.0.0.30root@desktop:~#
dig
dlp.srv.world.
root@desktop:~#
dig
-x 10.0.0.30[code]; DiG 9.18.24-0ubuntu5-Ubuntu dlp.srv.world.;; global options: +cmd;; Got answer:;; ->>HEADERHEADER
上一篇:
Linux基础-02:Linux目录操作命令
下一篇:
NTP/SSH 服务器
发表于 2024-5-7 19:24:57
举报
回复
使用道具
分享
返回列表
发新帖
本版积分规则
高级模式
B
Color
Image
Link
Quote
Code
Smilies
您需要登录后才可以回帖
登录
|
立即注册
快速回复
快速回复
返回顶部
返回顶部
返回列表
返回列表