# Setting a Static IP on Ubuntu

Config the Static IP at /etc/netplan/00-installer-config.yaml

```yaml
network:
  ethernets:
    enp0s8:
      dhcp4: no
      addresses: [192.168.202.10/24]
  version: 2
```

Apply the new changes

```bash
sudo netplan try
```
