# Kill SSH Port Forwarding

If you are using Linux you can kill the process by:

```
ps aux | grep ssh
```

and then use

```
kill <id>
```

To kill the process. If the kill command is not successful you can try

```
kill -9 <id>
```
