You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What "mandatory true" does here is say "if opmode is any of these 3, then this MUST be set to true".
@mike-albano@deecortes the mandatory true means that the leaf is mandatory, not the value. This needs to be changed to a must check, something like:
must "(
(../opmode = 'WPA3_ENTERPRISE' or
../opmode = 'WPA3_2_ENTERPRISE_TRANSITION' or
../opmode = 'WPA3_ENTERPRISE_192_BIT' or
../opmode = 'WPA3_SAE' or
../opmode = 'WPA3_2_SAE_TRANSITION' or
../opmode = 'ENHANCED_OPEN' or
../opmode = 'ENHANCED_OPEN_TRANSITION')
and
(. = 'true')
) or (
// all other opmodes that don't need mfp to be set to true
)
)"
afaik, mfp can be false for all opmodes. It is only mandatory to be true if one wants wifi certification. So i guess it's not needed to be mandatory at all and no further checks are needed?
regarding
mfp
:public/release/models/wifi/openconfig-wifi-mac.yang
Line 399 in 850e572
based on this change: #607 and this comment https://github.com/openconfig/public/pull/607/files#r842092645
@mike-albano @deecortes the
mandatory true
means that the leaf is mandatory, not the value. This needs to be changed to amust
check, something like:afaik,
mfp
can be false for all opmodes. It is only mandatory to betrue
if one wants wifi certification. So i guess it's not needed to be mandatory at all and no further checks are needed?https://www.wi-fi.org/beacon/philipp-ebbecke/protected-management-frames-enhance-wi-fi-network-security
The text was updated successfully, but these errors were encountered: