美文网首页
1.Centos配置IP

1.Centos配置IP

作者: bb3a1595c3c0 | 来源:发表于2016-12-13 15:40 被阅读0次

    注意:绿色版VMware,需要重置网络服务

    1.在net网络模式下,通过DHCP获取ip(NET模式下成功)

    dhclient

    并修改ifcfg-eth0 让其开机启动

    vim /etc/sysconfig/network-scripts/ifcfg-eth0

    将onboot改为yes

    2.自定义ip(桥接模式下成功)

    [root@king ~]# vim /etc/sysconfig/network-scripts/ifcfg-eth0

    DEVICE=eth0

    HWADDR=00:0C:29:6E:6D:24

    TYPE=Ethernet

    UUID=c35f5d24-6b86-4075-8ae8-b7a20ba9a162

    ONBOOT=yes

    NM_CONTROLLED=yes

    BOOTPROTO=static

    IPADDR=192.168.31.166

    NETMASK=255.255.255.0

    GATEWAY=192.168.31.1

    DNS1=8.8.8.8

    DNS2=114.114.114.114

    3.重启网卡

    service network restart

    测试是否联网:

    ifconfig

    ping

    4.扩展:

    lo是回环地址,内部通信用的

    etho 网卡

    wlan0 无线网卡

    ifconfig -a 查看所有网卡信息

    ifdown eth0  停掉网卡

    ifup eth0 开启网卡

    相关文章

      网友评论

          本文标题:1.Centos配置IP

          本文链接:https://www.haomeiwen.com/subject/vdhbmttx.html