美文网首页
ubuntu 16.04配置802.1X认证

ubuntu 16.04配置802.1X认证

作者: 闯爷 | 来源:发表于2016-07-05 20:49 被阅读581次

    配置文件1:/etc/network/interfaces

    auto lo

    iface lo inet loopback

    auto eth0

    iface eth0 inet static

    netmask 255.255.255.0

    gateway 10.9.3.254

    address 10.9.3.xxx

    dns-nameservers 10.9.0.140

    wpa-driver wired

    wpa-conf /etc/wpa_supplicant/wpa_wired.conf


    配置文件2:/etc/wpa_supplicant/wpa_wired.conf

    network={

    key_mgmt=IEEE8021X

    eap=PEAP

    phase2="auth=MACHAPV2"

    identity="xxx"

    password="xxx"

    }


    sudo  service networking restart

    sudo service NetworkManager restart

    相关文章

      网友评论

          本文标题:ubuntu 16.04配置802.1X认证

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