Gargoyle - czy da się zmierzyć siłę sygnału
|
domgl |
Dodano 18-06-2009 09:48
|
Power User
Posty: 275
Dołączył: 19/03/2006 00:25
|
Witam!
Od paru dni mam Fonerę (FON2201) z oprogramowaniem Gargoyle. Jest to mój pierwszy kontakt z OpenWRT, dlatego niewiele umiem tam zrobić (oprócz skonfigurowania funkcji dostępnych przez GUI), dotychczas używałem DD-WRT.
Czy da się zmierzyć siłę sygnały do klienta oraz zobaczyć informacje o pakietach wireless (odebrane, transmisja i ile błędów w transmisji) tak jak to jest w DD-WRT? |
|
|
|
obsy |
Dodano 18-06-2009 10:19
|
VIP
Posty: 5775
Dołączył: 31/10/2006 20:06
|
athstats?
|
|
|
|
domgl |
Dodano 18-06-2009 10:41
|
Power User
Posty: 275
Dołączył: 19/03/2006 00:25
|
dzięki |
|
|
|
domgl |
Dodano 10-12-2009 14:13
|
Power User
Posty: 275
Dołączył: 19/03/2006 00:25
|
Komenda athstats pokazuje następujące dane:
root@FON2201:~# athstats
1929 tx management frames
279 tx failed due to too many retries
4649 long on-chip tx retries
6097 tx frames with no ack marked
6426 tx frames with short preamble
110 tx frames with an alternate rate
12842 rx failed due to bad CRC
574 PHY errors
1 transmit override receive
573 CCK restart
22415 beacons transmitted
458 periodic calibrations
22953 rate control checks
rssi of last ack: 36
rssi of last rcv: 36
554 switched default/rx antenna
Antenna profile:
[1] tx 4078 rx 52808
[2] tx 8576 rx 7570
Czy jest możliwość wyświetlenia aktualnie podłączonych klientów przez radio oraz siły sygnału (tak jak to jest w DD-WRT)?
Edytowany przez domgl dnia 10-12-2009 14:20
|
|
|
|
obsy |
Dodano 10-12-2009 15:24
|
VIP
Posty: 5775
Dołączył: 31/10/2006 20:06
|
wlanconfig ath0 list sta ?
|
|
|
|
domgl |
Dodano 10-12-2009 22:20
|
Power User
Posty: 275
Dołączył: 19/03/2006 00:25
|
Dzięki za odpowiedź. Wynikiem komendy są następujące dane:
root@FON2201:~# wlanconfig ath0 list sta
ADDR AID CHAN RATE RSSI DBM IDLE TXSEQ TXFRAG RXSEQ RXFRAG CAPS ACAPS ERP STATE MODE
00:14:a5:xx:xx:xx 3 7 36M 29 -66 0 900 3 19 0 EPSs 0 7 Normal WPA WME
00:16:44:xx:xx:xx 2 7 36M 9 -86 45 0 6 1434 0 EPSs 0 4 Normal WPA
00:18:de:xx:xx:xx 1 7 36M 22 -73 15 80 15 2856 0 EPSs 0 7 Normal WPA WME
Co to są parametry: IDLE, RXSEC RXFRAG, CAPS, ACAPS, ERP, STATE, MODE (co to jest WPA WME)?
Edytowany przez domgl dnia 10-12-2009 22:23
|
|
|
|
obsy |
Dodano 10-12-2009 22:41
|
VIP
Posty: 5775
Dołączył: 31/10/2006 20:06
|
Parametry wg struktury:
struct ieee80211req_sta_info {
u_int16_t isi_len; /* length (mult of 4) */
u_int16_t isi_freq; /* MHz */
u_int16_t isi_flags; /* channel flags */
u_int16_t isi_state; /* state flags */
u_int8_t isi_authmode; /* authentication algorithm */
u_int8_t isi_rssi;
u_int16_t isi_capinfo; /* capabilities */
u_int8_t isi_athflags; /* Atheros capabilities */
u_int8_t isi_erp; /* ERP element */
u_int8_t isi_macaddr[IEEE80211_ADDR_LEN];
u_int8_t isi_nrates; /* negotiated rates */
u_int8_t isi_rates[IEEE80211_RATE_MAXSIZE];
u_int8_t isi_txrate; /* index to isi_rates[] */
u_int16_t isi_ie_len; /* IE length */
u_int16_t isi_associd; /* assoc response */
u_int16_t isi_txpower; /* current tx power */
u_int16_t isi_vlan; /* vlan tag */
u_int16_t isi_txseqs[17]; /* seq to be transmitted */
u_int16_t isi_rxseqs[17]; /* seq previous for qos frames*/
u_int16_t isi_inact; /* inactivity timer */
u_int8_t isi_uapsd; /* UAPSD queues */
u_int8_t isi_opmode; /* sta operating mode */
/* XXX frag state? */
/* variable length IE data */
};
po kolei: inactivity timer,seq previous for qos frame,apabilities,Atheros capabilities,erp nie wiem czym jest, state flags i sta operating mode
|
|
|
|
obsy |
Dodano 10-12-2009 22:41
|
VIP
Posty: 5775
Dołączył: 31/10/2006 20:06
|
PS. to struktura z drivera madwifi
|
|
|