vocore使用方法總結

2021-07-02 07:03:43 字數 1570 閱讀 5633

如何連線:

ssid:vocore 

無線密碼為空

使用者名稱:

root

密碼:vocore

登陸方式:

ssh ip:

192.168.61.1

1.使用電池供電方法,見連線:

2.使用usb線方法,連線:

上電後。5350會迅速發燙,此時正常現象。led偶爾閃爍

配置ap+sta模式:

1. add two lines at end of /etc/config/network

在/etc/config/network 末尾新增這兩個配置。主要支援無線dhcpc

config inte***ce wwan

option proto 'dhcp'

2. add the following config at end of /etc/config/wireless
在/etc/config/wireless中新增中繼的配置如下
config wifi-iface

option device radio0

option network wwan

option mode sta

option ssid [your rounter ssid]

option encryption psk2

option key [your rounter password]

this config is for wpa2 encryption.

3. change file /etc/config/firewall

在/etc/config/firewall 中新增規則。允許中繼

add one line to firewall.

config zone

option name             wan

list   network          'wan'

list   network          'wan6'

+     list   network          'wwan'

option input            reject

option output           accept

option forward          reject

重啟機器後。硬體連線上網路。並工作在ap模式。可以當乙個中繼器用~~

對ap新增密碼:

config wifi-iface

option device   radio0

option network  lan

option mode     ap

option ssid     vocore

#       option encryption none  #去除這一項 新增以下兩項

+       option encryption psk2

+      option key 12345678

開啟第二串列埠方法:

交叉編譯器:

使用方法總結

變數賦值 name xiaoming 程式互動 name input 請輸入你的名字 sum int input 請輸入你的名字 變成數字型,和數字比較 type 查詢資料型別的方法 a 2 print a,type a 結果 123 格式化輸出 msg 是佔位符 s 數字型 bit length ...

Const 使用方法總結

const 使用方法總結 const限定符的特點在於 強制最低訪問權原則。用這個原則正確的設計軟體可大大減少除錯時間和不良 並且能夠使程式易於修改和除錯。給函式傳遞的指標有如下四種情況 指向非常量資料的非常量指標 指向非常量資料的常量指標 指向常量資料的非常量指標 指向常量資料的常量指標 1 如果傳...

extern使用方法總結

include stdafx.h extern print char p int main int argc,char argv 內容如下 include stdafx.h include stdio.h print char s 結果程式可以正常執行,輸出結果。如果把 extern 去掉,程式依然...