sudo apt update
sudo apt install qemu-kvm bridge-utils
# Crear el puente de red:
sudo ip link add name br0 type bridge
# Conectar una interfaz física al puente:
sudo ip link set eth0 master br0
# Asignar una dirección IP al puente:
sudo ip addr add 192.168.1.1/24 dev br0
# Activar el puente:
sudo ip link set br0 up
Last active
October 17, 2024 04:47
-
-
Save nullx5/cfc9da2df01d2ee36b1feb002ec7be72 to your computer and use it in GitHub Desktop.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment