如何在我的Ubuntu服务器18.04上配置802.1X设置吗?
下面是来自Windows 10:
- authentication method : PEAP
- verify the servers identity by validating the certificates : Uncheck
- username : sadegh.k@atu.com
- password : abcdef
发布于 2018-06-12 10:14:29
你可以使用NetworkManager进行设置,应该包含该选项。
https://major.io/2016/05/03/802-1x-networkmanager-using-nmcli/
代码:
# nmcli con edit CONNECTION_NAME
nmcli> set ipv4.method auto
nmcli> set 802-1x.eap peap
nmcli> set 802-1x.identity sadegh.k@atu.com
nmcli> set 802-1x.phase2-auth mschapv2
nmcli> save
nmcli> quit
https://stackoverflow.com/questions/-100001665
复制相似问题