Home
last modified time | relevance | path

Searched refs:mib (Results 1 – 10 of 10) sorted by relevance

/hostap-3.6.0/tests/hwsim/
Dtest_ieee8021x.py188 mib = hapd.get_sta(addr0, info="eapol")
189 if mib['auth_pae_state'] != 'AUTHENTICATING':
190 raise Exception("Unexpected Auth PAE state: " + mib['auth_pae_state'])
437 mib = hapd.get_sta(addr0, info="eapol")
438 if mib[mibparam] != val:
439 raise Exception("Unexpected %s value: %s (expected %s)" % (param, mib[mibparam], val))
479 mib = hapd.get_sta(addr0, info="eapol")
480 val = int(mib['aWhile'])
489 mib = hapd.get_sta(addr0, info="eapol")
490 val = int(mib['aWhile'])
Dtest_hapd_ctrl.py732 mib = hapd.request("MIB")
733 if len(mib) != 0:
734 raise Exception("Unexpected MIB response: " + mib)
736 mib = hapd.request("MIB radius_server")
737 if len(mib) != 0:
738 raise Exception("Unexpected 'MIB radius_server' response: " + mib)
745 mib = hapd.request("MIB")
746 if "FAIL" in mib:
747 raise Exception("Unexpected MIB response: " + mib)
749 mib = hapd.request("MIB radius_server")
[all …]
Dtest_radius.py43 mib = hapd.get_mib()
44 if "radiusAuthClientAccessRequests" not in mib:
46 if int(mib["radiusAuthClientAccessRetransmissions"]) < 1:
48 if int(mib["radiusAuthClientPendingRequests"]) < 1:
65 mib = hapd.get_mib()
66 if "radiusAuthClientAccessRequests" not in mib:
68 …logger.info("radiusAuthClientAccessRetransmissions: " + mib["radiusAuthClientAccessRetransmissions…
98 mib = hapd.get_mib()
99 if "radiusAccClientRetransmissions" not in mib:
101 if int(mib["radiusAccClientRetransmissions"]) < 2:
[all …]
Dtest_wpas_ctrl.py772 mib = dev[0].get_mib()
773 if "dot11RSNAOptionImplemented" not in mib:
775 if mib["dot11RSNAOptionImplemented"] != "TRUE":
Dtest_ap_psk.py29 mib = dev.get_mib()
31 if mib[v[0]] != v[1]:
32 raise Exception("Unexpected {} = {} (expected {})".format(v[0], mib[v[0]], v[1]))
/hostap-3.6.0/src/l2_packet/
Dl2_packet_freebsd.c194 int mib[] = { CTL_NET, AF_ROUTE, 0, AF_LINK, NET_RT_IFLIST, 0 }; in eth_get()
196 if (sysctl(mib, 6, NULL, &len, NULL, 0) < 0) in eth_get()
200 if (sysctl(mib, 6, buf, &len, NULL, 0) < 0) { in eth_get()
/hostap-3.6.0/src/wps/
Dwps_upnp.c876 int mib[] = { CTL_NET, AF_ROUTE, 0, AF_LINK, NET_RT_IFLIST, 0 }; in eth_get() local
878 if (sysctl(mib, 6, NULL, &len, NULL, 0) < 0) in eth_get()
882 if (sysctl(mib, 6, buf, &len, NULL, 0) < 0) { in eth_get()
/hostap-3.6.0/wpa_supplicant/doc/docbook/
Dwpa_cli.sgml206 <term>mib</term>
/hostap-3.6.0/wpa_supplicant/
DREADME749 mib = get MIB variables (dot1x, dot11)
/hostap-3.6.0/hostapd/
DChangeLog1226 * started adding dot11, dot1x, radius MIBs ('hostapd_cli mib',