首页 > 系统相关 >Ubuntu 22.04.2 LTS 修改 DNS

Ubuntu 22.04.2 LTS 修改 DNS

时间:2025-01-15 23:45:32浏览次数:1  
标签:LTS head DNS resolvconf resolv etc tail 22.04 conf

Ubuntu 22.04.2 LTS 使用的 resolvconf 管理 dns

 

检查

systemctl status resolvconf
cat /etc/resolv.conf

 

临时修改,重启失效

vim /etc/resolv.conf

 

持久化修改

vim /etc/resolvconf/resolv.conf.d/head

点击查看代码
# Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
#     DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
# 127.0.0.53 is the systemd-resolved stub resolver.
# run "systemd-resolve --status" to see details about the actual nameservers.

nameserver 114.114.114.114

resolvconf -u

 

/etc/resolvconf/resolv.conf.d/ 下几个文件的说明
目录中可能包含“base”、“head”、“original”和“tail”文件。所有文件均为 resolv.conf 格式。默认仅为 base 和 head。
base: 用于在无法找到其他数据时使用
head: 用于 resolv.conf 的头部,可以用于确保 DNS 服务器始终在列表中的第一个
original:仅仅是在安装 resolvconf 时备份的 resolv.conf 文件
tail: tail 中的任何条目都会附加到生成的 resolv.conf 的末尾。

 

参考

Make nameserver in /etc/resolv.conf persistent

标签:LTS,head,DNS,resolvconf,resolv,etc,tail,22.04,conf
From: https://www.cnblogs.com/xaoc/p/18673916

相关文章

  • java 反序列化 URLDNS 链
    常用于探测反序列化漏洞是否存在的一条链,之前调过cc6,这条应该比较简单,自己随便调调就行.URL直接来看hashCode方法publicsynchronizedinthashCode(){if(hashCode!=-1)returnhashCode;hashCode=handler.hashCode(this);re......
  • 【项目实战】如何在不同操作系统中更改DNS解析器的简要指南
    如何在不同操作系统中更改DNS解析器的简要指南:一、Windows操作系统中更改DNS解析器打开控制面板>网络和互联网>网络和共享中心。点击您正在使用的网络连接旁边的属性。选择Internet协议版本4(TCP/IPv4)或Internet协议版本6(TCP/IPv6),然后点击属性。......
  • window10 powsershell 安装ubuntu22.04
     参考  https://learn.microsoft.com/en-us/windows/wsl/basic-commands#install      https://learn.microsoft.com/en-us/windows/wsl/install ListavailableLinuxdistributions  wsl--list--online以下是可安装的有效分发的列表。使默认分发用......
  • ubuntu22.04系统Docker安装
    1、配置docker源#AddDocker'sofficialGPGkey:apt-getupdateapt-getinstallca-certificatescurlinstall-m0755-d/etc/apt/keyringscurl-fsSLhttps://download.docker.com/linux/ubuntu/gpg-o/etc/apt/keyrings/docker.ascchmoda+r/etc/apt/keyrings......
  • 计算机网络之---DNS协议
    DNS协议DNS(DomainNameSystem,域名系统)协议是互联网中用于将域名转换为IP地址的系统。因为人类更容易记住域名(如www.example.com),而计算机和网络设备则通过IP地址(如192.168.1.1)来进行通信,DNS协议充当了二者之间的桥梁,允许我们通过输入友好的域名访问网站、服务或其他资源。......
  • Ubuntu22.04 解决 E: 无法定位软件包 yum
    1、修改sudovim/etc/apt/sources.list的内容,将下文内容增加至该文件中:debhttp://archive.ubuntu.com/ubuntu/trustymainuniverserestrictedmultiverse#默认注释了源码镜像以提高aptupdate速度,如有需要可自行取消注释debhttps://mirrors.tuna.tsinghua.edu.cn/ubu......
  • 【DNS攻防】深入探讨DNS数据包注入与DNS中毒攻击检测 (C/C++代码实现)
    DNS数据包注入和DNS中毒攻击是网络安全领域中的两个重要主题。DNS(域名系统)是互联网中的一项核心服务,负责将域名转换为与之相对应的IP地址。DNS数据包注入是指攻击者通过篡改或伪造DNS请求或响应数据包来干扰或破坏DNS服务的过程。攻击者可通过注入恶意数据包来改变DNS解析结果,将......
  • Ubuntu 22.04LTS版本二进制部署K8S 1.30+版本
    Ubuntu22.04LTS版本二进制部署K8S1.30+版本 目录一.K8S集群各主机环境准备1.环境准备2.所有节点安装常用的软件包3.k8s-master01节点免密钥登录集群并同步数据4.所有节点Linux基础环境优化5.所有节点安装ipvsadm以实现kube-proxy的负载均衡二.安装containerd组......
  • Some kinds of vertex colorings and some results
    Wewillintroducesomekindsofvertexcolorings,whicharemymainresearchtopicsoverthepastfiveyears.propervertexcoloringofgraphs.AcyclicColoringSomeexamplesofpropercoloringandacycliccoloringaregivenasfollows.ListCo......
  • 什么是域名,网址,DNS,IP
    什么是域名,网址,DNS,IP域名、网址、DNS和IP是互联网中常用的几个关键概念,它们在互联网资源的定位、访问和管理中起着重要作用。以下是这四个概念的详细解释:一、域名(DomainName)定义:域名是互联网上的一个标识符,用于唯一地标识和定位一个网站或网络服务。它由一串字符和数字组成,中......