diff --git a/content/post/opnsense-virtualizaton-highly-available.md b/content/post/opnsense-virtualizaton-highly-available.md index f2fd0b1..bb55749 100644 --- a/content/post/opnsense-virtualizaton-highly-available.md +++ b/content/post/opnsense-virtualizaton-highly-available.md @@ -63,4 +63,35 @@ For this experiment, I add extra VLANs: In the Proxmox UI, I navigate to `Datacenter` > `SDN` > `VNets` and I click `Create`: ![Create POC VLANs in the Proxmox SDN](img/proxmox-sdn-create-poc-vlans.png) -Once the 3 new VLAN have been created, I apply the configuratipn +Once the 3 new VLAN have been created, I apply the configuration. + +### Create Fake ISP Box VM + + +![Pasted_image_20250917205522.png](img/Pasted_image_20250917205522.png) + +```yaml +network: + version: 2 + ethernets: + eth0: + addresses: + - 10.101.0.254/24 + enp6s19: + dhcp4: true +``` + +```bash +echo "net.ipv4.ip_forward=1" | sudo tee -a /etc/sysctl.conf +sudo sysctl -p +``` + +Install dnsmasq + +```bash +sudo apt install dnsmasq -y +``` + +```bash +sudo systemctl restart dnsmasq +``` \ No newline at end of file diff --git a/static/img/Pasted_image_20250917205522.png b/static/img/Pasted_image_20250917205522.png new file mode 100644 index 0000000..0ab1d92 Binary files /dev/null and b/static/img/Pasted_image_20250917205522.png differ