解决Centos8不能上网问题

解决Centos8不能上网问题

  1. ifconfig发现没有en33网卡

    解决Centos8不能上网问题_第1张图片

    解决方案

    # 查看network状态
    nmcli n
    
    #如果现实disabled 则需要开启
    nmcli n on
    
    # 重启systemctl restart NetworkManager
    
    # 检查en33是否生效
    ifconfig
    
  2. 配置静态IP地址

    首先在VM中设置网络参数

    解决Centos8不能上网问题_第2张图片

    ​ 注意子网IP地址不要和宿主机冲突

    ​ 然后修改centos网卡配置

    vim /etc/sysconfig/network-scripts/ifcfg-ens33 
    
    #BOOTPROTO改为静态的
    BOOTPROTO=static
    
    #添加 就是刚才配置配置的
    GATEWAY=192.168.44.2
    IPADDR=192.168.44.133
    NETMASK=255.255.255.0
    
    

你可能感兴趣的:(开发工具,centos,linux,运维)