iotedge-lorawan-starterkit/Tools/Eflow
Nora Abi Akar 4cac804297
Clean up EFLOW VM scripts and add readme (#1958)
2022-11-02 16:13:28 +01:00
..
install-hyperv.ps1
provision-eflow.ps1
readme.md

readme.md

Eflow on Windows Server VM

Install Eflow

  1. Create new Windows Server VM.
  2. Connect to the Windows Server VM.
  3. Install hyper-V
    .\install-hyperv.ps1
    
  4. Restart the VM and reconnect
  5. Create VM Switch
    $env:switchName = "EFLOW Switch"
    New-VMSwitch -Name $env:switchName -SwitchType internal
    
  6. Enable Internet Connection Sharing
    • Open the Network Connections window.
    • Find the host VM's network that needs to be shared with EFLOW.
    • Open Properties.
    • Select the Sharing tab.
    • Check the box for "Allow other network users to connect through this computers Internet connection.”
  7. Provision Eflow
    .\provision-eflow -iotEdgeDeviceConnectionString "HostName=****" -switchName $env:switchName
    

Verify Eflow installation

  1. Connect to the eflow VM

    Connect-EflowVm
    
  2. Check the configuration and connection of the VM.

    sudo iotedge check
    
  3. Check that the deployment modules are running on the VM.

    sudo iotedge list
    

Reference

  1. Create and provision an IoT Edge for Linux on Windows