1.CentOS配置方法如下:
用vi打开配置文件
[[email protected] ~]# vi /etc/sysconfig/network-scripts/ifcfg-eth0
写入以下配置
DEVICE=eth0
TYPE=Ethernet
ONBOOT=yes
BOOTPROTO=static
IPADDR=192.168.1.8
NETMASK=255.255.255.0
GATEWAY=192.168.1.1
DNS1=10.36.15.3
:wq 保存退出
2.Ubuntu下配置方法:
用vi 打开配置文件
sudo vi/etc/network/interfaces
写入以下配置
auto eth0
iface eth0 inet static
address 192.168.1.8
netmask 255.255.255.0
gateway 192.168.1.1
dns-nameservers 10.36.15.3
:wq 保存退出
p { margin-bottom: 0.25cm; line-height: 120% }
重启后生效
原文地址:https://www.cnblogs.com/happybaymax/p/10351738.html
时间: 2024-10-28 05:38:30