Auto-update blog content from Obsidian: 2025-09-17 21:24:37
All checks were successful
Blog Deployment / Check-Rebuild (push) Successful in 6s
Blog Deployment / Build (push) Has been skipped
Blog Deployment / Deploy-Staging (push) Successful in 10s
Blog Deployment / Test-Staging (push) Successful in 3s
Blog Deployment / Merge (push) Successful in 6s
Blog Deployment / Deploy-Production (push) Successful in 11s
Blog Deployment / Test-Production (push) Successful in 2s
Blog Deployment / Clean (push) Has been skipped
Blog Deployment / Notify (push) Successful in 2s

This commit is contained in:
Gitea Actions
2025-09-17 21:24:37 +00:00
parent 41c3a7d7a9
commit 11137262a1
2 changed files with 32 additions and 1 deletions

View File

@@ -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`: 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) ![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
```

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB