# Setup SSH  Passwordless Login

### 1. Create ssh-keygen keys
```bash
$ ssh-keygen -t rsa
```

### 2. Copy the ssh key using `ssh-copy-id` command
```bash
$ ssh-copy-id user@192.168.10.10
```

### 3. If there's a prompt password, you need to enter the password
```bash
$ ssh-copy-id user@192.168.10.10
$ user@192.168.10.10's password: 
```

### 4. Logged in.
```bash
user@192.168.10.10:~$
```
