|
| 1 | +# Example |
| 2 | + |
| 3 | +# Client & Server requests |
| 4 | + |
| 5 | +On this example we are going to see the Certificate Authority running, as well |
| 6 | +as a simple Server using TLS and a simple client doing TLS requests to the |
| 7 | +server. |
| 8 | + |
| 9 | +The examples directory already contains a sample pki configuration with the |
| 10 | +password `password` hardcoded, but you can create your own using `step ca init`. |
| 11 | + |
| 12 | +First we will start the certificate authority: |
| 13 | +``` |
| 14 | +certificates $ bin/step-ca examples/pki/config/ca.json |
| 15 | +2018/11/02 18:29:25 Serving HTTPS on :9000 ... |
| 16 | +``` |
| 17 | + |
| 18 | +We will start the server and we will type `password` when step asks for the |
| 19 | +provisioner password: |
| 20 | +``` |
| 21 | +certificates $ export STEPPATH=examples/pki |
| 22 | +certificates $ export STEP_CA_URL=https://localhost:9000 |
| 23 | +certificates $ go run examples/server.go $(step ca new-token localhost)) |
| 24 | +✔ Key ID: DmAtZt2EhmZr_iTJJ387fr4Md2NbzMXGdXQNW1UWPXk (mariano@smallstep.com) |
| 25 | +Please enter the password to decrypt the provisioner key: |
| 26 | +Listening on :8443 ... |
| 27 | +``` |
| 28 | + |
| 29 | +We try that using cURL with the system certificates it will return an error: |
| 30 | +``` |
| 31 | +certificates $ curl https://localhost:8443 |
| 32 | +curl: (60) SSL certificate problem: unable to get local issuer certificate |
| 33 | +More details here: https://curl.haxx.se/docs/sslcerts.html |
| 34 | +
|
| 35 | +curl performs SSL certificate verification by default, using a "bundle" |
| 36 | + of Certificate Authority (CA) public keys (CA certs). If the default |
| 37 | + bundle file isn't adequate, you can specify an alternate file |
| 38 | + using the --cacert option. |
| 39 | +If this HTTPS server uses a certificate signed by a CA represented in |
| 40 | + the bundle, the certificate verification probably failed due to a |
| 41 | + problem with the certificate (it might be expired, or the name might |
| 42 | + not match the domain name in the URL). |
| 43 | +If you'd like to turn off curl's verification of the certificate, use |
| 44 | + the -k (or --insecure) option. |
| 45 | +HTTPS-proxy has similar options --proxy-cacert and --proxy-insecure. |
| 46 | +``` |
| 47 | + |
| 48 | +But if we use the root certificate it will properly work: |
| 49 | +``` |
| 50 | +certificates $ curl --cacert examples/pki/secrets/root_ca.crt https://localhost:8443 |
| 51 | +Hello nobody at 2018-11-03 01:49:25.66912 +0000 UTC!!! |
| 52 | +``` |
| 53 | + |
| 54 | +Notice that in the response we see `nobody`, this is because the server didn't |
| 55 | +detected a TLS client configuration. |
| 56 | + |
| 57 | +But if we the client with the certificate name Mike we'll see: |
| 58 | +``` |
| 59 | +certificates $ export STEPPATH=examples/pki |
| 60 | +certificates $ export STEP_CA_URL=https://localhost:9000 |
| 61 | +certificates $ go run examples/client.go $(step ca new-token Mike) |
| 62 | +✔ Key ID: DmAtZt2EhmZr_iTJJ387fr4Md2NbzMXGdXQNW1UWPXk (mariano@smallstep.com) |
| 63 | +Please enter the password to decrypt the provisioner key: |
| 64 | +Server responded: Hello Mike at 2018-11-03 01:52:52.678215 +0000 UTC!!! |
| 65 | +Server responded: Hello Mike at 2018-11-03 01:52:53.681563 +0000 UTC!!! |
| 66 | +Server responded: Hello Mike at 2018-11-03 01:52:54.682787 +0000 UTC!!! |
| 67 | +... |
| 68 | +``` |
0 commit comments