麒麟系统 4 修改静态ip
- 查看网卡名称
ip a
#或
ifconfig
#查看到是 ens18 ,记住它,后面要用到(查出来什么就用什么,不要照敲这个)
- 修改配置文件更改为静态
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
-
修改DNS(可选)
vim /etc/resolv.conf
添加下面的
nameserver 114.114.114.114 nameserver 8.8.8.8 nameserver 192.168.67.1
最后一个根据需求填写(一般是网关)
-
重启网络服务
systemctl restart networking.service