要在Linux系統(tǒng)上設(shè)置靜態(tài)IP和DNS,可以按照以下步驟進(jìn)行操作:
打開終端并使用root權(quán)限登錄。
打開網(wǎng)絡(luò)配置文件,可以使用vi或者nano編輯器打開/etc/network/interfaces文件。
在文件中找到你要配置的網(wǎng)絡(luò)接口,一般是eth0或者enp0s3。
在接口配置中添加以下內(nèi)容:
iface eth0 inet static
address 192.168.1.100 #設(shè)置靜態(tài)IP地址
netmask 255.255.255.0 #設(shè)置子網(wǎng)掩碼
gateway 192.168.1.1 #設(shè)置網(wǎng)關(guān)
dns-nameservers 8.8.8.8 8.8.4.4 #設(shè)置DNS服務(wù)器
保存文件并退出編輯器。
重啟網(wǎng)絡(luò)服務(wù)以使更改生效,可以使用以下命令:
sudo systemctl restart networking
ifconfig
以上就是在Linux系統(tǒng)上設(shè)置靜態(tài)IP和DNS的步驟,根據(jù)實(shí)際情況進(jìn)行配置即可。