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 

  • 相关阅读:
    NGINX+uWsgi部署Django项目
    centos7 docker启动服务,无法通过宿主机ip进行访问
    基于docker 搭建Prometheus+Grafana
    centos7安装MySQL5.7
    centos7下安装python7
    loadrunner27257问题解决办法
    学习Python+selenium自动化感想
    find_element和find_elements
    正则表达式
    Jdk自带的Windows性能监控工具JVM
  • 原文地址:https://www.cnblogs.com/lidabo/p/4660220.html
Copyright © 2011-2022 走看看