Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions examples/aws/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -380,6 +380,17 @@ To enable SSH access to CF instances running on Diego, generate a host key and f

```bash
ssh-keygen -f $DEPLOYMENT_DIR/keypair/ssh-proxy-host-key.pem
```

If you're running at least OSX 10.11 El Capitan or Ubuntu 16.04 Xenial Xerus then you may generate your MD5 fingerprint with:

```bash
ssh-keygen -lf $DEPLOYMENT_DIR/keypair/ssh-proxy-host-key.pem.pub -E md5 | cut -d ' ' -f2 | sed 's/MD5://g' > $DEPLOYMENT_DIR/keypair/ssh-proxy-host-key-fingerprint
```

Otherwise you may generate your MD5 fingerprint with:

```bash
ssh-keygen -lf $DEPLOYMENT_DIR/keypair/ssh-proxy-host-key.pem.pub | cut -d ' ' -f2 > $DEPLOYMENT_DIR/keypair/ssh-proxy-host-key-fingerprint
```

Expand Down