Ludus Installation (GOAD-LIGHT)

Current page is still under update and documentation will be published soon. This installation will not cover - how to install proxmox & how to install ludus. This will only focus on GOAD-Light .

goad-light-config.yml

ludus:
  - vm_name: "{{ range_id }}-LIGHT-DC01"
    hostname: "{{ range_id }}-dc01"
    template: win2019-server-x64-template
    vlan: 10
    ip_last_octet: 40
    ram_gb: 4
    cpus: 2
    windows:
      sysprep: true
  - vm_name: "{{ range_id }}-LIGHT-SRV2"
    hostname: "{{ range_id }}-srv02"
    template: win2019-server-x64-template
    vlan: 10
    ip_last_octet: 44
    ram_gb: 4
    cpus: 2
    windows:
      sysprep: true
  - vm_name: "{{ range_id }}-LIGHT-DC02"
    hostname: "{{ range_id }}-dc02"
    template: win2019-server-x64-template
    vlan: 10
    ip_last_octet: 41
    ram_gb: 4
    cpus: 2
    windows:
      sysprep: true

inventory

Common Issues:

Unreachable IP:

Work around:

DHCP is not assigning the correct IP for the packaged VMs

Windows VM obtain the self assigned IP 169.x.x 255.255.0.0

Work around:

  1. If dnsmasq does not work properly (For all mighty your luck run out!) then you might need to remove it and install another dhcp server provider.

  2. Using isc-dhcp-server (on your proxmox shell)

Reference:

isc-dhcp-server config
dhcp.conf example

Last updated