Commit 6d867ea
committed
fix(vagrant): cambiar DHCP a IP estatica para evitar conflictos
Solucion al error de VirtualBox sobre adaptadores host-only
conflictivos con DHCP. Cambiado a IP estatica 192.168.56.10.
- Reemplaza: config.vm.network "private_network", type: "dhcp"
- Por: config.vm.network "private_network", ip: "192.168.56.10"
Esto evita el error:
"A host only network interface you're attempting to configure
via DHCP already has a conflicting host only adapter with DHCP
enabled."
Referencias: infrastructure/cpython/Vagrantfile:911 parent 3d5c754 commit 6d867ea
1 file changed
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
87 | 87 | | |
88 | 88 | | |
89 | 89 | | |
90 | | - | |
91 | | - | |
| 90 | + | |
| 91 | + | |
92 | 92 | | |
93 | 93 | | |
94 | 94 | | |
| |||
0 commit comments