无法在我的 ubuntu 服务器无线路由器上进行身份验证

无法在我的 ubuntu 服务器无线路由器上进行身份验证

我安装了 ubuntu 17.10 服务器版作为路由器。一切运行正常。我遇到的唯一问题是设置路由器的无线部分。我可以在客户端计算机和移动设备上看到 AP,但无法进行身份验证。客户端一直说存在身份验证问题。

当我没有为 AP 设置密码时,一切都正常,但我的 AP 当然没有加密,这是我不想要的。我的设备获得一个 IP 并可以访问 LAN 和 WAN。我已经使用 netplan 配置了网络。

这是我的 netplan 配置文件

  network:
  version: 2
  renderer: NetworkManager
  ethernets:
    #wan interface
    ens17:
     dhcp4: no
     dhcp6: yes
     addresses: [192.168.1.2/24]
     gateway4: 192.168.1.1
     nameservers:
      addresses: [195.130.130.3,195.130.131.3]
    #lan interface
    ens18:
     dhcp4: no
     dhcp6: no
     addresses: [192.168.0.1/24]
    #interface for wifi bridge
    ens19:
     dhcp4: true

  wifis:
    #wifi-lan interface
    wls16:
     access-points:
      "Valhalla":
        mode: ap
        password: "ImTestingThis"

  bridges:
    #virtual bridge for wifi-ethernet connection
    br0:
      interfaces: [wls16, ens19]
      dhcp4: true

以下是 AP 显示的截图并且我使用的密码是正确的;)

消息称无法连接到网络

希望有人能帮助我。

相关内容