zoukankan      html  css  js  c++  java
  • wpa_cli和wpa_supplicant使用,配置无线AP名和密码,静态ip地址

    配置静态ip方法分享:
    通过串口命令行输入如下命令:     

    1. 添加无线网络接入点(AP) 及其 密码:
    # wpa_cli -p /data/misc/wpa_supplicant
    wpa_cli v0.5.11
    Copyright (c) 2004-2008, Jouni Malinen and contributors              
                                                                                   
    This program is free software. You can distribute it and/or modify it          
    under the terms of the GNU General Public License version 2.                   
                                                                                   
    Alternatively, this software may be distributed under the terms of the         
    BSD license. See README and COPYING for more details.                          
                                                                                   
                                                                                   
    Selected interface 'eth0'                                                      
                                                                                   
    Interactive mode


    > add_network
    0
    > set_network 0 ssid "camct_backup"
    OK
    > set_network 0 key_mgmt NONE
    OK
    >                           
    >
    > set_network 0 wep_key0 12345678901234567890123456
    OK
    > binder: release 1142:1142 transaction 2748 out, still active
    select_network 0
    OK
    <2>CTRL-EVENT-STATE-CHANGE id=-1 state=2
    >status                                                                          
    bssid=00:00:00:00:00:00                                                        
    ssid=camct_backup                                                              
    id=0                                                                           
    pairwise_cipher=WEP-104                                                        
    group_cipher=WEP-104                                                           
    key_mgmt=NONE                                                                  
    wpa_state=COMPLETED           
          
    2. 配置ip地址:

    #wpa_supplicant -Dwext -ieth0 -c /data/misc/wifi/wpa_supplicant.conf -B
    命令解释:
            参数-B代表后台运行,-ieth0代表使用设备eth0,-Dwex代表网卡芯片是wex,-c指定配置文件。

    查看配置
    #wpa_cli -p /data/misc/wpa_supplicant
    >status                                                                   bssid=00:00:00:00:00:00                                                         ssid=camct_backup                                                               id=0                                                                            pairwise_cipher=WEP-104                                                         group_cipher=WEP-104                                                           
    key_mgmt=NONE   
    wpa_state=COMPLETED 
    配置ip:
    #ifconfig eth0 192.168.177.33
    之后再查看配置会看到 ip_address=192.168.177.33 

  • 相关阅读:
    ios qq 分享 失败
    Collections在sort()简单分析法源
    C# char[]与string之间的相互转换
    uva 10837
    良好的互联网站点
    SVN库迁移
    Android 它们的定义View它BounceProgressBar
    #AOS应用基础平台# 添加了用户自己定义快捷菜单在平铺布局下的用户自己定义排序管理
    android 逆向project smail 语法学习
    Linux内核-系统调用
  • 原文地址:https://www.cnblogs.com/lidabo/p/4660220.html
Copyright © 2011-2022 走看看