FIRO Masternodes monitor
The following script, creates an HTML file, to be presented by any webserver #!/bin/bash # --- Configuration --- OUTPUT_FILE="/path_to_output_file/firo_nodes.html" # Define your nodes in the format: "Alias:IP_Address:SSH_User" NODES=( "SRV5:aa.bb.xx.xx:user" "Big1:xxx.zz.xxx.aa:user" "Big2:yyy.bb.yyy.tt:user" ) FIRO_CLI="/usr/local/bin/firo-cli" # ---------------------…