# Create SSH Key-Value Pair with Bash

You can run the `ssh-keygen` utility on your local machine to generate an SSH key-value pair.

The `ssh-keygen` utility generates a pair comprising of a public key and private key. The private key is stored in the file `id_rsa` while the public key is stored in the file `id_rsa.pub`.

### Creating a SSH Key Value Pair

To create an SSH key value pair, follow the steps given below.

1\. Launch Bash on your machine.

{% tabs %}
{% tab title="Bash" %}

```bash
ssh-keygen -t rsa -f cloud-key
```

{% endtab %}
{% endtabs %}

2\. Run the following command to generate the SSH key.

3\. Follow the instructions in Bash to create a passphrase which is your private key.

4.Press the `Enter` key.

A public and private key are generated on running the above command.

The `cloud-key` file contains the private key and `id_rsa.pub` contains the public key.

You can copy the content of the public key file `id_rsa.pub` to generate an SSH key-value pair.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.platform9.com/managed-openstack/5.8/authentication-and-authorization/authentication-ssh-key-value-generation.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
