Debian 配置网络

发布于 2023-11-25  1 次阅读


有时候 VPS DD 重装完后,会丢失 IPV6 的配置,或者 IPV4 的配置也不对了,这里记录下修改的地方,划个水~

编辑 /etc/network/interfaces 文件,这里给个样例,按照如下改就行了:

allow-hotplug ens18 # 将网络接口设置为热插拔模式
iface ens18 inet static # 设置接口为静态 IP 地址
        address x.x.x.x/24 # 这里是 ipv4 地址
        gateway x.x.x.1 # 网关地址
        # dns-* options are implemented by the resolvconf package, if installed
        dns-nameservers 8.8.8.8 8.8.4.4 # DNS 地址

iface ens18 inet6 static
        address ::/64
        gateway ::1
        # dns-* options are implemented by the resolvconf package, if installed
        dns-nameservers 2001:4860:4860::8888 2001:4860:4860::8844

修改好后保存,然后重启下网络即可:

/etc/init.d/networking restart