File tree 1 file changed +28
-0
lines changed
1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -196,4 +196,32 @@ Server responded: Hello Mike at 2018-11-03 01:52:52.678215 +0000 UTC!!!
196
196
Server responded: Hello Mike at 2018-11-03 01:52:53.681563 +0000 UTC!!!
197
197
Server responded: Hello Mike at 2018-11-03 01:52:54.682787 +0000 UTC!!!
198
198
...
199
+ ```
200
+
201
+ ## Certificate rotation
202
+
203
+ We can use the bootstrap-server to demonstrate the certificate rotation. We've
204
+ added second provisioner to to the ca with the name of ` mike@smallstep.com ` ,
205
+ this provisioner is configured with a default certificate duration of 2 minutes.
206
+ If we run the server, and inspect the used certificate, we can verify how it
207
+ rotates after approximately two thirds of the duration has passed.
208
+
209
+ ```
210
+ certificates $ export STEPPATH=examples/pki
211
+ certificates $ export STEP_CA_URL=https://localhost:9000
212
+ certificates $ go run examples/bootstrap-server/server.go $(step ca new-token localhost))
213
+ ✔ Key ID: YYNxZ0rq0WsT2MlqLCWvgme3jszkmt99KjoGEJJwAKs (mike@smallstep.com)
214
+ Please enter the password to decrypt the provisioner key:
215
+ Listening on :8443 ...
216
+ ```
217
+
218
+ In this specific case, the the rotation will happen after 74-80 seconds have
219
+ passed, the exact formula is 120-120/3-rand(120/20), where rand will return a
220
+ number between 0 and 6.
221
+
222
+ We can use the following command to check the certificate expiration and to make
223
+ sure the certificate changes after 74-80 seconds.
224
+
225
+ ```
226
+ certificates $ step certificate inspect --insecure https://localhost:8443
199
227
```
You can’t perform that action at this time.
0 commit comments