因为的公司的电脑每次开机重启时分配的IP地址都不一样,这导致的很多不方便的事情,所以干脆锁定一个固定的IP地址,下面就是我锁定IP地址的步骤:
1.设置ip地址
vi /etc/network/interfaces
添加如下内容:
# The primary network interface
# enp2s0是你电脑的网卡,不知道自己是什么样的网卡,可以通过命令ifconfig查看
auto enp2s0
iface enp2s0 inet static
# 192.168.2.83是你要固定的ip地址
address 192.168.2.83
# 子网和网关可以通过route -n查看
netmask 255.255.255.0
gateway 192.168.2.1
2.设置dns
vi /etc/resolvconf/resolv.conf.d/base
nameserver 114.114.114.114
nameserver 8.8.8.8
3.刷新配置文件
resolvconf -u
4.重启网络服务
/etc/init.d/networking restart
5.然后关机重启:
使用ifconfig命令就可以看见ip地址已经固定了
时间: 2024-10-01 03:30:49