-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Proactively rekey #36
Conversation
Signed-off-by: Ze Gan <[email protected]>
f02e881
to
9044c64
Compare
src/pae/ieee802_1x_kay.h
Outdated
@@ -222,6 +222,8 @@ struct ieee802_1x_kay { | |||
u8 dist_an; | |||
time_t dist_time; | |||
|
|||
int macsec_rekey_period; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it's better to call this mka_rekey_period. It's not really a macsec attribute, since it is not used by macsec driver.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Make sense ~ Renamed it.
Signed-off-by: Ze Gan <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good
Signed-off-by: Ze Gan <[email protected]> 986a835153b3df3a37492fbd3a83fc8e38a40c10 Proactively rekey sonic-net/sonic-wpa-supplicant#36 b84dd21ac7b76686caf53f2e9a2c8eb80519ab31 Fix azurepieline download sonic swss common deb pakcage sonic-net/sonic-wpa-supplicant#37 66002de9d5e3165ccdbed40451db86ae0a8b3944 [macsec_sonic] driver support for macsec_include_sci sonic-net/sonic-wpa-supplicant#35 dae8f59cb54c90bc9011bd675806a75dd0808d27 MACsec XPN changes sonic-net/sonic-wpa-supplicant#34 c2271b2879ed157718edb51e842a3e33debeab7f Move SSCI from SC to SA and change packet number field name to adapt sai 1.7.1 sonic-net/sonic-wpa-supplicant#26 1bbc8f1ef463dd21428ce80b72da107f3bd2f3f0 Fix for CP state machine issues sonic-net/sonic-wpa-supplicant#33
Add a new configuration instruction
macsec_rekey_period
to indicate the period of proactively refresh SAK.e.g.
macsec_rekey_period=1800
, which means the macsec SA will be refreshed proactively every 1800 seconds.Signed-off-by: Ze Gan [email protected]