麒麟系统 4 修改为静态ip

麒麟系统 4 修改静态ip

  1. 查看网卡名称
ip a
#或
ifconfig
#查看到是 ens18 ,记住它,后面要用到(查出来什么就用什么,不要照敲这个)

image-20230424181428345 image-20230424181442656

  1. 修改配置文件更改为静态ip
vim /etc/network/interfaces

文件内 source 前面加 # ,注释掉dhcp获取的ip,添加红圈内的内容,ip信息根据需求填写

auto enp4s3
iface enp4s3 inet static
address 192.168.0.20
netmask 255.255.255.0
gateway 192.168.0.1
image-20230424182029521
  1. 修改DNS(可选)

    vim /etc/resolv.conf
    

    添加下面的

    nameserver 114.114.114.114
    nameserver 8.8.8.8
    nameserver 192.168.67.1
    

    最后一个根据需求填写(一般是网关)

  2. 重启网络服务

    systemctl restart networking.service
    
posted @ 2023-04-24 18:24  Firlsy  阅读(2450)  评论(0编辑  收藏  举报