> For the complete documentation index, see [llms.txt](https://jackmeister.gitbook.io/jackmeister-playbook/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://jackmeister.gitbook.io/jackmeister-playbook/network-pentest/port-forwarding/playground-setup.md).

# Playground Setup

```bash
systemctl start ssh
sudo nano /etc/network/interfaces
```

config for pivot-machine-1

```bash
auto eth0

iface eth0 inet static
    address 10.4.194.215
    netmask 255.255.255.0


iface eth0 inet static
    address 172.16.194.254
    netmask 255.255.255.0

sudo systemctl restart networking
```

config for pivot-machine-2

```bash
auto eth0

iface eth0 inet static
    address 192.168.194.63
    netmask 255.255.255.0
    gateway <gateway_address>

iface eth0 inet static
    address 10.4.194.63
    netmask 255.255.255.0

sudo systemctl restart networking
```
