美文网首页
Linux连接WPA-PSK加密的WIFI

Linux连接WPA-PSK加密的WIFI

作者: leeyaf | 来源:发表于2019-06-05 12:16 被阅读0次

    1.查看网卡标识
    ip addr

    网卡标识为wlp1s0

    2.扫描无线网
    iwlist wlp1s0 scan | grep ESSID

    正文

    1.新建一个wpa.conf,放在/etc目录下

    network={
      ssid="Tenda_XX"
      proto=RSN
      key_mgmt=WPA-PSK
      pairwise=CCMP TKIP
      group=CCMP TKIP
      psk="Password1234"
    }
    

    2.打开配置文件
    /etc/network/interfaces

    3.输入以下内容

    # The wlan network interface
    auto wlp1s0
    iface wlp1s0 inet dhcp
    wpa-conf /etc/wpa.conf
    

    4.重启网络
    /etc/init.d/networking restart

    相关文章

      网友评论

          本文标题:Linux连接WPA-PSK加密的WIFI

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