zoukankan      html  css  js  c++  java
  • iwpriv

    AuthMode             {OPEN,SHARED,WEPAUTO,WPAPSK,WPA2PSK,WPANONE}

                            ::Set Authentication Mode 

    EncrypType           {NONE,WEP,TKIP,AES}          
    ::Set Encryption Type

    DefaultKeyID         {1~4}                              
    ::Set Default Key ID

    Key1                  {5 ascii characters or 10 hex number or 
                          13 ascii characters or 26 hex numbers}
                          ::Set Key1 String                                                                                                                        


    Key2                 {5 ascii characters or 10 hex number or 
                          13 ascii characters or 26 hex numbers}                                                                                                                        
                          ::Set Key2 String
                                    
    Key3                 {5 ascii characters or 10 hex number or 
                          13 ascii characters or 26 hex numbers}                                                                                                                        
    ::Set Key3 String
     
    Key4                 {5 ascii characters or 10 hex number or 
                          13 ascii characters or 26 hex numbers}                                                                                                                        
                            ::Set Key4 String

    WPAPSK               {8~63 ascii or 64 hex characters}  
    ::WPA Pre-Shared Key

    Examples
    ===================================================================
    -------------------------------------------------------------------------------------------------------
    a> Config STA to link with AP which is OPEN/NONE(Authentication/Encryption)
    1. iwpriv ra0 set NetworkType=Infra
    2. iwpriv ra0 set AuthMode=OPEN
    3. iwpriv ra0 set EncrypType=NONE
    4. iwpriv ra0 set SSID="AP's SSID"

    b> Config STA to link with AP which is SHARED/WEP(Authentication/Encryption)
    1. iwpriv ra0 set NetworkType=Infra
    2. iwpriv ra0 set AuthMode=SHARED
    3. iwpriv ra0 set EncrypType=WEP
    4. iwpriv ra0 set DefaultKeyID=1
    5. iwpriv ra0 set Key1="AP's wep key"
    6. iwpriv ra0 set SSID="AP's SSID"

    c> Config STA to link with AP which is WPAPSK/TKIP(Authentication/Encryption)
    1. iwpriv ra0 set NetworkType=Infra
    2. iwpriv ra0 set AuthMode=WPAPSK
    3. iwpriv ra0 set EncrypType=TKIP
    4. iwpriv ra0 set SSID="AP's SSID"
    5. iwpriv ra0 set WPAPSK="AP's wpa-preshared key"
    6. iwpriv ra0 set SSID="AP's SSID"

    d> Config STA to link with AP which is WPAPSK/AES(Authentication/Encryption)
    1. iwpriv ra0 set NetworkType=Infra
    2. iwpriv ra0 set AuthMode=WPAPSK
    3. iwpriv ra0 set EncrypType=AES
    4. iwpriv ra0 set SSID="AP's SSID"
    5. iwpriv ra0 set WPAPSK="AP's wpa-preshared key"
    6. iwpriv ra0 set SSID="AP's SSID"


    e> Config STA to link with AP which is WPA2PSK/TKIP(Authentication/Encryption)
    1. iwpriv ra0 set NetworkType=Infra
    2. iwpriv ra0 set AuthMode=WPA2PSK
    3. iwpriv ra0 set EncrypType=TKIP
    4. iwpriv ra0 set SSID="AP's SSID"
    5. iwpriv ra0 set WPAPSK=12345678
    6. iwpriv ra0 set SSID="AP's SSID"

    f> Config STA to create/link as adhoc mode, which is OPEN/NONE(Authentication/Encryption)
    1. iwpriv ra0 set NetworkType=Adhoc
    2. iwpriv ra0 set AuthMode=OPEN
    3. iwpriv ra0 set EncrypType=NONE
    4. iwpriv ra0 set SSID="Adhoc's SSID"


    g>  Config STA to create/link as adhoc mode, which is WPANONE/TKIP(Authentication/Encryption)
        1. iwpriv ra0 set NetworkType=Adhoc
    2. iwpriv ra0 set AuthMode=WPANONE
    3. iwpriv ra0 set EncrypType=TKIP
    4. iwpriv ra0 set SSID="AP's SSID"
    5. iwpriv ra0 set WPAPSK=12345678
    6. iwpriv ra0 set SSID="AP's SSID"
      
    h> Get site survey 
    usage: iwpriv ra0 get_site_survey

  • 相关阅读:
    极大似然估计理解与应用
    逻辑回归理解及代码实现
    《剑指offer》---数值的整数次方
    线性回归理解及代码实现
    二叉搜索树(BST)---python实现
    《剑指offer》---顺时针打印矩阵
    《剑指offer》---二进制中1的个数
    《剑指offer》---输出链表倒数第k个结点
    版本控制-Git服务器搭建和常用命令使用
    hbase伪分布式平台搭建(centos 6.3)
  • 原文地址:https://www.cnblogs.com/lidabo/p/5893966.html
Copyright © 2011-2022 走看看