DEV Community

Cover image for Building a Configuration Generator for Mikrotiks Using Wails and React
Nathan Summers
Nathan Summers

Posted on

Building a Configuration Generator for Mikrotiks Using Wails and React

I work at an Internet Service Provider (ISP) in Idaho, and we use Mikrotiks extensively for fiber and fixed wireless deployments. Configuring routers by hand was a common cause of errors on our network. The high number of unique configurations drastically increased the troubleshooting complexity of support calls.

This project began as a simple python script to automate the on-premises configuration of every Mikrotik that we deploy. The project requirements kept increasing until the terminal application became unwieldy and confusing. The script's primary users have little terminal experience, so it was not the best medium for them. The wireless technicians are frequently in areas without internet or cellular reception, so a web app would not be possible. I started development of a simple desktop application that replaced the terminal application.

Switching to the compiled language "Go" proved to be an easy migration from the scripting and compiling with pyinstaller in the old terminal solution. And, learning to code in Go was not difficult. Go's templating library made generating the configurations a breeze. Using the new "embed" package allowed including all of my templates directly into the final binary. Here's an example template that adds a DHCP Client to ether1:

{{define "dhcpClient"}}
### DHCP Client ###
{
/ip dhcp-client add interface=ether1 use-peer-dns=yes add-default-route=yes dhcp-options=hostname,clientid disabled=no
/log info message=“DHCP client Configured”
}
{{- end}}
Enter fullscreen mode Exit fullscreen mode

Before attempting to build a solution in "Wails," I created a GUI using Fyne. Fyne was easy to build with, and I could make all of the desktop components using Go. Unfortunately, The legacy laptops I have to support don't have a recent graphics driver that would work with OpenGL, so I had to find another solution. Wails is that solution. Wails is a cross-platform desktop application framework that uses a web-view and web technologies to create a User Interface (UI). Now I can use React, the most popular framework for building UIs, and not rely on Go's fledgling GUI support. The fact that Wails uses mshtml, a win32 API that hasn't seen an update since Internet Explorer version 11 (IE11), was a feature in my case.

Building with Wails is as simple as binding a function to the front-end:

app.Bind(builder.BuildRouter)
Enter fullscreen mode Exit fullscreen mode

And calling the function using Javascript/Typescript. In the below example, I'm passing a Javascript object, which gets converted to map[string]interface{} on the Go side.

var myRouter = {
    Username: this.state.username,
  Password: this.state.password,
  Installation: this.state.selectedInstall,
  DisableWiFi: this.state.disableWiFi,
  SSID: this.state.ssid,
  WPA2: this.state.wpa2,
  Bridge: this.state.bridged,
  LTE: false
}

window.backend.BuildRouter(myRouter)
Enter fullscreen mode Exit fullscreen mode

After passing the map to the backend, it is converted to a struct, as shown below.

  var router model.Router

  err := mapstructure.Decode(data, &router)
  if err != nil {
    log.Println(Error decoding map to struct: , err)
  }
Enter fullscreen mode Exit fullscreen mode

The struct is then passed to the corresponding template to be executed, where it writes the executed template to the clipboard and a file in the current directory.

The UI is a simple form with two radio groups for selections, a row of checkboxes, and three to five input fields for the installer to fill in, depending on the choices selected. Each field has validation, and the generate button is enabled when all of the visible fields are valid. Clicking the generate button passes the form data to the backend, as shown above. The installer then pastes the configuration file into the Mikrotik through a terminal and lets the configuration script work its magic.

Alt Text

Wails made it simple to create a front-end for my application. I'd be willing to use it again for desktop development. Although, for future projects, I am considering another path using Tauri.

Latest comments (1)

Collapse
 
netpapglobal profile image
netpapglobal

Great tool.Have you considered using an ACS Server?