赞
踩
首先查看我们有什么网卡
nmcli connection modify ens33 ipv4.method manual ipv4.addresses 192.168.10.1/24 autoconnect yes #使用nmcli命令可以配置IP地址 nmcli connection reload #重启网卡 nmcli connection up ens33 #开启ens33网卡
vim /etc/sysconfig/network-scripts/ifcfg-ens33
TYPE=Ethernet #网卡类型为以太网类型 PROXY_METHOD=none BROWSER_ONLY=no BOOTPROTO=none #网卡设置为none DEFROUTE=yes IPV4_FAILURE_FATAL=no IPV6INIT=yes IPV6_AUTOCONF=yes IPV6_DEFROUTE=yes IPV6_FAILURE_FATAL=no NAME=ens33 UUID=1651f482-5841-4579-b91c-75eac2756096 DEVICE=ens33 ONBOOT=yes #加入到开机自启 IPADDR=192.168.10.1 #配置IP地址 PREFIX=24 #子网掩码为24位
systemctl restart network-online.target #重启网络
ip add #查看IP地址
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。