Linux Debian 设置静态ip

配置IP和网关

以以下信息举例:

IP地址:192.168.159.100
子网掩码:255.255.255.0
网关:192.168.159.1

查看本机网卡

ip addr

以下图说明本机网卡名称为:ens33 (lo是本地回环网卡)

注意,网卡名称不一定叫这个,比如 Debian 系统可能叫 enp3s0

修改配置文件:/etc/network/interfaces

vim /etc/network/interfaces
# 开机自动连接网络
auto ens33
# 将lo接口设置为本地回环(loopback)地址
iface lo inet loopback
# 热拔插启动接口
allow-hotplug ens33
# static 表示使用固定 ip,dhcp 表示使用动态 ip
iface ens33 inet static
	# ip
    address 192.168.159.10
    # 子网掩码
    netmask 255.255.255.0
    # 网关
    gateway 192.168.159.2

配置DNS服务器

修改配置文件:/etc/resolv.conf

vim /etc/resolv.conf

DNS:223.5.5.5 223.6.6.6

最后编辑时间:2023年2月9日23:10:05

posted @ 2023-02-09 23:25  tothk  阅读(693)  评论(0编辑  收藏  举报