要在Linux系统上设置静态IP和DNS,可以按照以下步骤进行操作:
打开终端并使用root权限登录。
打开网络配置文件,可以使用vi或者nano编辑器打开/etc/network/interfaces文件。
在文件中找到你要配置的网络接口,一般是eth0或者enp0s3。
在接口配置中添加以下内容:
iface eth0 inet static
address 192.168.1.100 #设置静态IP地址
netmask 255.255.255.0 #设置子网掩码
gateway 192.168.1.1 #设置网关
dns-nameservers 8.8.8.8 8.8.4.4 #设置DNS服务器
保存文件并退出编辑器。
重启网络服务以使更改生效,可以使用以下命令:
sudo systemctl restart networking
ifconfig
以上就是在Linux系统上设置静态IP和DNS的步骤,根据实际情况进行配置即可。