Linux设置固定IP
Redhat
位置: /etc/sysconfig/network-scripts/
编辑网卡:
TYPE=Ethernet
BOOTPROTO=static #启用静态IP地址 若是dhcp 则是动态获取ip
NAME=enp0s3
ONBOOT=yes #开启自动启用网络连接
IPADDR=地址
NETMASK=掩码
GATEWAY=网关
DNS1=你的DNS
重启服务
Debian
位置:
配置IP和网关:/etc/network/interfaces
auto eth0 #开机自动连接网络
iface lo inet loopback
allow-hotplug eth0
iface eth0 inet static #static表示使用固定ip,dhcp表述使用动态ip
address 10.10.10.155 #设置ip地址
netmask 255.255.255.0 #设置子网掩码
gateway 10.10.10.2 #设置网关
配置DNS服务器: /etc/resolv.conf
nameserver 10.10.10.2 #设置首选dns
nameserver 114.114.114.114 #设置备用dns
重启服务