Skip to content

Commit 6d867ea

Browse files
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:91
1 parent 3d5c754 commit 6d867ea

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

infrastructure/cpython/Vagrantfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,8 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
8787
# NETWORK CONFIGURATION
8888
# =================================================================
8989

90-
# Private network with DHCP (no port forwarding needed for build VM)
91-
config.vm.network "private_network", type: "dhcp"
90+
# Private network with static IP (avoids DHCP conflicts)
91+
config.vm.network "private_network", ip: "192.168.56.10"
9292

9393
# =================================================================
9494
# SYNCED FOLDERS WITH UTF-8 ENCODING

0 commit comments

Comments
 (0)