Uproot(uprt) is a multi-platform (Windows, MacOs, and Linux) command line utility written in Dart to convert a router's DHCP IP Reservations between routers

Related tags

Utilities uproot
Overview

UPROOT

Uproot(uprt) is a multi-platform (Windows, MacOs, and Linux) command line utility written in Dart to convert a router's DHCP IP Reservations between routers. DHCP Reservations are also sometimes referred to as static mappings (and throughout this documentation they are typically referred to as static leases).

For example, uprt can be used to help move static leases from DD-Wrt to OpenWrt, or from OpenWrt to pfSense, or back and forth between various other router formats. Uprt avoids errors on import by verifying and enforcing required network ranges, eliminating duplicate leases, and validating Ip and Mac addresses.

In addition, uprt can merge existing lists of static leases using the merge command.

ip6 static leases are not supported.

DOWNLOAD

Download Windows, Mac, and X86 Linux binaries

Like this project ? Please click the star at the top right corner of this page.

Why Do I Need Uproot ?

Many network administrators often have long lists of DHCP reservations specified in their router. Those who do a lot of home automation, for example may have many devices for which IPs have been statically assigned, making upgrading to a different type of router painful. Many times the IP reservations along with the associated Mac Addresses need to be manually re-entered into the new router's software. As long as the router formats are supported, Uproot allows one to export the list of DHCP Reservations from one router, and easily convert the list to a format of another supported type. In addition to straight import, Uproot can merge and validate the static leases from both the old and the new router, eliminating duplicates.

Current router/firewall software supported

  • DD-WRT
  • Mikrotik RouterOS
  • OPNSense
  • OpenWrt
  • pfSense

Also supports the following file formats:

  • json
  • csv

If you have a target device that is supported, but an unsupported source device (e.g., you are migrating from Google Wifi to OpenWrt), see Unsupported Routers - Creating A CSV File of Network Devices Using Nmap.

Features

  • Detection of input format based on extension (can also manually specify the format)
  • Converts to multiple formats simultaneously
  • Merges static leases from one file into another
  • Optionally sorts static leases by IP addresses
  • Validates lease to avoid import errors:
    • Validates all generated files against expected output type
    • Enforces IP range (optional)
    • Excludes unnecessary duplicates from output
    • Excludes invalid ip4 and Mac addresses from output
  • Example input files available in source for testing

Limitations

  • Mikrotik RouterOS format does not yet support hostnames for Mikrotik leases (i.e., all output rsc files are generated without hostnames)
  • Does not support ip6 leases

Installing

Binaries are included for macOS, Linux, and Windows for the latest releases. Simply download to your respective platform and put in your path.

Compiling

If you choose to compile yourself:

  1. Open a terminal.

  2. Install the latest version of Dart for your operating system.

  3. Clone the repository (you'll need a personal access token if by https).

    Example:

    git clone https://github.com/GeekVisit/uproot.git
  4. Pull down the dependencies:

      cd uproot
      dart pub get
  5. Run all tests (optional):

      dart test
  6. Change into the bin directory and compile:

    cd bin
    dart compile exe uprt.dart -o uprt   [or -o uprt.exe on windows]
  7. If on Linux or Mac, set permission and copy into bin directory in path:

       sudo chmod 700 ./uprt      
       sudo cp ./uprt  /usr/local/bin/uprt
       sudo chown $(whoami) /usr/local/bin/uprt
  8. If on Windows, make sure uprt.exe is in a folder that is in your PATH environmental variable. If not, move it to the appropriate path or add the directory.

  9. Test the binary with included test files:

      cd .. [so you are in the uproot folder]
      uprt test/test-data/lease-list-infile.csv -g cdjmnop -d test/test-output
    

Use

For a complete list of options, type uprt or uprt -h

Below is the latest help:

uprt (2021.10.001 running on macos 10.15.7)


A tool to migrate static leases between DD-WRT, OpenWrt, OPNsense, Mikrotik, and pfSense routers. Also supports csv and json.

Usage:
-a, --append                              Used when --merge and --sort are given.  If this flag is given, the merged file
                                          will have the sorted leases from the source file appended to the end of the
                                          target file leases rather than integrated with the merge file.
-b, --base-name                           Specify Base Name of Output Files (default uses basename of input file)
-d, --directory-out                       Directory to write files to, defaults to same directory as input file.
-h, --help                                Help
-t, --input-type                          Input file type:   c (csv), d (ddwrt), j (json),
                                          m (Mikrotik RouterOS), n (OPNsense), o (OpenWrt), p (pfsense)
                                          If this option is not used, uprt will try to determine file
                                          type based on the following extensions: .csv, .ddwrt,
                                          .json, .rsc (mikrotik), .xml (for opnsense and pfsense,
                                          distinguishing by searching for 
    in file)
-g, --generate-type                       Required. Generated types may be multiple. Valid values include:
                                          c (csv), d (DD-WRT), j (json),
                                          m (Mikrotik RouterOS), n (OPNsense), o (OpenWrt), p (pfsense)
-L, --ip-low-address                      Enforced Lowest Ip of Network Range, Excludes Addresses Lower Than This From Target File
-H, --ip-high-address                     Enforced Highest Ip of Network Range, Excludes Addresses Higher Than This From Target File
-l, --log                                 Creates Log file, if -P not set, then location is in temp folder
-P, --log-file-path                       Full file path to log file.
-m, --merge                               Merge to file. Specify path to file to merge converted output.
                                          Used to add static leases to an existing output file.
-S, --server                              Name to designate in output file for Mikrotik dhcp server.
                                          (defaults to "defconf")
-r, --replace-duplicates-in-merge-file    Applies only when using --merge. If this option is set and the source file
                                          has a static lease which has the same mac address, ip or hostname as a lease in
                                          the merge file, the lease or leases in the merge file that have any of the
                                          duplicate components will be discarded and the input lease will be used.
                                          By default, this is set to false so any lease in the input file that has the
                                          same ip, hostname, or mac address as one in the merge file is discarded.
-s, --[no-]sort                           Leases in resulting output file are sorted by Ip address.
                                          (defaults to on)
-v, --verbose                             Verbosity - additional messages
-z, --verbose-debug                       Verbosity - debug level verbosity
-V, --version                             Gives Version
-w, --write-over                          Overwrites output files, if left out, will not overwrite

Examples:

Convert a csv file to all formats (csv, json, DD-WRT, Mikrotik, OpenWrt, OPNsense, pfSense):

  uprt test/test-data/lease-list-infile.csv -g cdjmnop -d test/test-output

Convert multiple csv files to PfSense and save output to a specified directory:

  uprt test/test-data/*.csv -g p -d test/test-output

Convert a csv file to all formats, stripping out leases not in range and saving output to specified directory:

  uprt test/test-data/lease-list-infile.csv -g cdjmnop -L 192.168.0.1 -H 192.168.0.254 -d test/test-output

Merging leases in a CSV file with an existing DDWRT file and generating an OpnSense file:

    uprt test/test-data/lease-list-infile.csv -m test/test-merge/lease-list-infile-merge.ddwrt -g n -b example-merge-output -d test/test-output

Make a full backup of your router/firewall before importing any files generated by uprt. Use of uprt and files generated by uprt is entirely at user's risk.

Test Data Included

To test uprt yourself, there are test input files are located under the test/test-data folder in the repository. Cd into the uproot directory and apply the examples given in uprt -h on the test files.

Video Demo

Below is a demonstration done on Mac Catalina showing the conversion from a .csv file to all formats. After the conversion the demo scrolls through the resulting files.

Exporting amd Importing Static Leases

To use Uproot, you'll need to export and import static leases to the respective routers.

Below are the export/import steps for each router/firewall type that is supported by Uproot.

Supported Routers and Firewall Software

The following router and firewall software are supported:

  • DD-WRT
  • Mikrotik RouterOS
  • OPNSense
  • OpenWrt
  • pfSense

If you have a target device that is supported, but an unsupported source device (e.g., you are migrating from Google Wifi to OpenWrt), see Unsupported Routers - Creating A CSV File of Network Devices Using Nmap.

DD-WRT

DD-WRT - Export

  1. Ssh into your router and enter the following on the command line to export static leases to a file:

    nvram get static_leases > static_leases.ddwrt
  2. Download the static_lease.ddwrt file from the router by using WinScp or a similar utility. If you do use WinScp, use the SCP protocol.

  3. Alternatively you can simply execute nvram get static_leases and copy the output from the terminal, paste it into a text file and save it locally.

  4. Now use the exported file as an input file to Uproot and convert to your required format.

    Example:

    Converting from DD-WRT format to OpenWrt format, with static leases having range of 192.168.0.1 to 192.168.0.254:

    uprt static_leases.ddwrt -g o -L 192.168.0.1 -H 192.168.0.254  

DD-WRT - Import

  1. NOTE: Always Make a backup of your DD-WRT software configuration before importing (via backup tab in the Web interface). All imports will REPLACE your existing static leases. To add leases to an existing file, use the --merge option. **

  2. Using WinSCP (if on Windows) or a similar utility, login to your router and upload the static_leases.ddwrt file to the router.

  3. Using Putty if on Windows, or other ssh command line client, type the following, and press Enter,replacing "X" with the number of static leases you are importing.

    nvram set static_leasenum=X
  4. Type the following and press Enter. Note that the quotes are important:

    nvram set static_leases="$(cat static_leases.ddwrt)"
    nvram commit
  5. Reboot the router. Your static leases should appear under the Services tab in the browser interface.

  6. TIP: If you have any issues with the above, log in using your browser to your router and view the changes as you make them. For instance, you can click on the Services tab and view the static leases after you set the nvram variable. If the nvram commit doesn't work try clicking "Save" and then "Apply Settings" in the browser interface.

Video Demo of DD-WRT Import

Youtube Demo of DD-WRT Import

OpenWrt

OpenWrt - Export

  1. Using Putty if on Windows, or other ssh command line client, log into your router and type the following which will extract the static leases to a separate file for download:

    static_leases.openwrt ">
        grep -hnr -A3 "config host" /etc/config/dhcp > static_leases.openwrt

    If this gives an error (e.g., if your version of OpenWrt does not have grep installed), just use copy (uprt will still be able to ignore the extra configuration information and extract the lease information from the raw dhcp file):

        cp /etc/config/dhcp static_leases.openwrt
  2. Verify that the resulting file contains the static lease information:

      cat static_leases.openwrt
  3. Using scp or WinScp if on Windows, download the static_leases.openwrt file.

  4. Use the exported file as an input file to Uproot and convert to your required format.

    Examples:

    Converting DD-WRT to a json file

      uprt static_leases.ddwrt -g j -L 192.168.0.1 -H 192.168.0.254  

    Converting DD-WRT to a Mikrotik RouterOS import script

      uprt static_leases.ddwrt -g m -L 192.168.0.1 -H 192.168.0.254 -s defconf 

OpenWrt - Import

  1. NOTE: Always Make a backup of your Openwrt Router Files before importing! All imports will REPLACE your existing static leases. To add leases to an existing file, use the --merge option.

  2. Using WinSCP (if on Windows) or a similar scp utility, login to your router and upload the file to be imported to the router (static_leases.openwrt in the Open-WRT export example).

  3. Using Putty or other ssh command line client, enter the following two lines:

        cp /etc/config/dhcp /etc/config/dhcp.original
        cat *infile.openwrt >> /etc/config/dhcp

    WARNING: Be sure that there are two >>, otherwise the dhcp file will be overwritten instead of appended. Thus the recommended backup! To merge [will remove duplicates] instead of append, see step 4.

  4. ALTERNATIVELY, you can download the dhcp file to your local computer, merge the import file using uprt, then upload the resulting dhcp.openwrt file with the resulting merged file (you'll need to rename the output file to dhcp). The advantage of this is you'll be able to sort the static leases by IP address and uprt will also automatically take care of duplicates (please see uprt -h for sorting and append options). Example:

    1. On local computer:

          uprt infile.openwrt -g o -m dhcp -b dhcp
    2. Upload dhcp.openwrt to your router, remove the "openwrt" and replace /etc/config/dhcp.

      cp /etc/config/dhcp /etc/config/dhcp.original
      cp /etc/config/dhcp.openwrt /etc/config/dhcp
  5. Reboot the router. Your static leases should appear under the Services tab in the browser interface.

  6. TIP: If you have any issues with the above, login using your browser to your router. Static leases should appear in Network->DHCP and DNS->Static Lease. If you don't see the imported leases, repeat steps, viewing the browser window as you make them. After the static leases appear, click Save & Apply on theDHCP and DNS web page.

Video Demo of Open-WRT import

Youtube Demo of OpenWrt Import

OPNsense

OPNsense - Export

  1. Log in to your OPNsense router and navigate to System->Configuration->Backups.

  2. Click on the big "Download configuration" button and download the file.

    Backups Menu

  3. The backup file you've downloaded contains ALL backup data for the router. As of this writing, the OPNSense configuration does not allow partial backups of data (although it does allow partial restores). Since you only need the data in the static map tags and their parents and related closing tags, you can delete all tags unrelated to the static lease export. Preserve the static map tags and the other tags shown in the below example, but delete all others:

    Backup File Revised to Contain Only Static Map Tags

  4. Use the exported file as an input file to Uproot and convert to your required format.

    Example:

    Converting OPNSense to pfSense

      uprt static_leases-opn.xml -g p -L 192.168.0.1 -H 192.168.0.254  

OPNsense - Import

  1. NOTE: Always make a backup of your OPNsense configuration before importing !

  2. Importing REPLACES any static leases your router currently has. If you are adding leases to an existing configuration, follow these steps for merging .

  3. To start your import, log in to your OPNsense router and navigate to System->Configuration->Backups.

  4. Click on the big "Download configuration" button and download the file.

    Backups Menu

  5. In the Restore section under the Restore Area click on the drop down arrow and change All to DHCP Server. Click on Browse ... and select the file to be imported. Then click "Restore configuration".

    Backups Menu

  6. OPNSense should respond with a "Successful" message.

  7. To view the imported leases, navigate to Services->DHCPv4->[LAN].

  8. Scroll down and verify the static leases have been imported.

    Imported Static Leases

OpnSense - Merging Leases With An Existing Configuration

If you are ADDING leases to an existing OpnSense configuration, you'll need to use the --merge option, merging the import file into a backup file of your existing configuration. Download to your local computer a backup from your existing configuration, then merge with the file to be imported:

    uprt static_leases-to-import-opn.xml -m static-lease-backup.xml -g o -b merge-output 

This will output a "merge-output-opn.xml" file. Import this into your OpnSense router.

pfSense

pfSense - Export

  1. Log into pfSense using your browser and navigate to Diagnostics->Backup & Restore:

    pfSense Backup and Restore

  2. Scroll down to Backup Configuration and set Backup area to DHCP Server. Click Download configuration as XML.

    Backing up static leases

  3. Use the exported file as an input file to Uproot and convert to your required format.

    Example

    Convert pfSense to OPNsense:

    uprt static_leases-pfs.xml -g p -L 192.168.0.1 -H 192.168.0.254  
    

pfSense - Import

  1. NOTE: Always make a backup of your pfSense configuration before importing !

  2. Importing REPLACES any static leases you currently have. If you are adding leases to an existing configuration, follow these steps for merging .

  3. Log into pfSense using your browser and navigate to Diagnostics->Backup & Restore:

    pfSense Backup and Restore

  4. In the Restore section under the Restore Area click on the drop down arrow and change All to DHCP Server.

  5. Click on `Browse ..." and select the file to be imported. Then click "Restore Configuration".

    Backups Menu

  6. pfSense should respond with a "The configuration area has been restored. The firewall may need to be rebooted."

  7. To verify the leases have been imported, navigate to Services->DHCP Server. Click on the LAN tab and scroll down to the "DHCP Static Mappings for this Interface" section where your imported leases should appear:

    Navigate to Lan Static Lease Menu

pfSense - Merging Leases With An Existing Configuration

If you are ADDING leases to an existing pfSense configuration, you'll need to use the --merge option, merging the import file into a backup file of your existing configuration.

Download to your local computer a backup from your existing configuration, then merge with the file to be imported:

    uprt static_leases-to-import-pfs.xml -m static-lease-backup.xml -g p -b merge-output

This will output a "merge-output-pfs.xml" file. Import this file into your pfSense router.

Mikrotik

Mikrotik - Export

  1. Open Winbox or the Webfig url.

  2. Open New Terminal from the menu in Winbox, or in Webfig click on the Terminal button on the top.

  3. Execute the following:

    /ip dhcp-server lease export file=dhcp-static-leases.rsc
  4. This exports a file called "dhcp-static-leases.rsc" which will appear in Files.

    alt)

  5. Click on the Files menu item.

    alt)

  6. Download the dhcp-static-leases.rsc to your computer.

    alt

  7. Use the exported file as an input file to Uproot and convert to your required format.

    Example: Convert Mikrotik RouterOS file to pfSense

      uprt dhcp-static_leases.rsc -g p -L 192.168.0.1 -H 192.168.0.254  

Mikrotik - Import

  1. Open Winbox or the Webfig url.

  2. Select Files from the menu and upload your input file (or just drag and drop your file if using Winbox).

    alt

  3. Open New Terminal from the menu in Winbox, or in Webfig click on the Terminal button on the top.

  4. Execute the following, changing the name of the input file as needed:

    /import file=dhcp-static-leases.rsc
  5. The terminal should respond "Script file loaded and executed successfully".

    Importing Mikrotik Leases

  6. Common Error Messages:

    • "Already have a static lease for this client" - Edit the input file to delete the lease, or alternatively use the --merge option - see above.**
    • "input does not match any value of server" - Most likely the DHCP server named in your input file is different from your Mikrotik RouterOS configuration. Either change the name of the DHCP Server (in Winbox, IP->DHCP Server->DHCP and click on server), or edit the input file. Uprt also has a "-s" option to set the server name when converting to Mikrotik RouterOS files.
  7. Verify all leases are imported by navigating to IP->DHCP Server and clicking the Leases tab.

    Showing All Imported Mikrotik Leases

    Or, alternatively, by using the terminal:

    /ip dhcp-server lease print

Mikrotik - Merging Static Leases with an Existing Configuration

  1. If you are ADDING leases to an existing Mikrotik configuration, you'll want to use the --merge option, merging the import file into a backup file of your existing configuration.

  2. Download to your local computer a backup from your existing configuration, then merge with the file to be imported:

        uprt dhcp-static-leases.rsc -m dhcp-static-leases-export.rsc -g m -b merge-output
  3. This will output a "merge-output.rsc" file. Upload the file to your Mikrotik router and follow the steps for importing.

Unsupported Routers - Creating A CSV File of Network Devices Using Nmap

If Uproot does not support your existing router and you wish to generate a list of the devices on your network to be used as a source file for uprt, you can use nmap and awk to generate a CSV file containing all online devices. You will need to edit the file to delete any devices you don't want to assign a static lease, or add any devices which were offline during the scan.

  1. Install nmap and awk if not already installed.

    • Open a terminal and check if nmap is installed, if not install.

    • Do the same for awk. awk is usually installed by default for Mac and Linux. gawk will work.

    • To install awk on Windows, if you have chocolatey installed, at an Administrator command prompt, enter choco install nmap and choco install gawk. If you aren't using chocolatey, download and install nmap and awk.

  2. The following command will generate the CSV file ip_list.csv containing the leases of your online devices. The versions for the different operating systems differ slightly.

Windows :

ip_list.csv ">
           nmap -sn X.X.X.X/X| awk "BEGIN { printf \"host-name,mac-address,address\n\";}/Nmap scan report for/{host = (NF == 6) ? $5 : \"\"; ip = (NF==6) ? $6 : $5; gsub(/\(/,\"\",ip);gsub(/\)/,\"\",ip);}/MAC Address:/{mac=$3; printf host\",\"mac\",\"ip\"\n\";}" > ip_list.csv

Linux and Mac :

ip_list.csv ">
        sudo nmap -sn X.X.X.X/X| awk 'BEGIN { printf "host-name,mac-address,address\r\n";}/Nmap scan report for/{host = (NF == 6) ? $5 : ""; ip = (NF==6) ? $6 : $5;  gsub(/\(/,"",ip); gsub(/\)/,"",ip);}/MAC Address:/{mac=$3; printf host","mac","ip"\n";}' > ip_list.csv

Replace "X.X.X.X/X" with your network's gateway and applicable CIDR (e.g., 192.168.1.1/24 if your network gateway is 192.168.1.1 using the typical home network CIDR of 24).

On Linux and Mac you must use sudo. Otherwise nmap will not be able to detect the mac addresses. The only difference between the above two statements, other than the removal of sudo for Windows is the different use of quotations. Windows requires quotes to be escaped and double quotes surrounding the awk statement.

What is a Static Lease/DHCP Reservation ?

A static lease or DHCP Reservation forces your router to assign the same IP address to a particular device on the network. By default, your router's DHCP server will dynamically assign IP addresses randomly to your network devices. By reserving an IP address for a particular device (e.g., 192.168.0.10 for a Raspberry Pi running piHole) the DHCP server is reserving a specified IP address for that device only, resulting in the same lease being assigned each time the device comes online (so such lease is static rather than dynamic), making it much easier for other devices to communicate with it. This can be particularly helpful for configuring home automation devices or setting up port forwarding.

You might also like...

Contains utility functions and classes in the style of dart:collection to make working with collections easier

The collection package for Dart contains a number of separate libraries with utility functions and classes that makes working with collections easier.

Dec 27, 2022

A Dart testing utility for asserting that some code emits a compilation error.

A Dart testing utility for asserting that some code emits a compilation error.

Dec 11, 2022

A Pure Dart Utility library that checks for an Active Internet connection

This Code comes from https://github.com/komapeb/data_connection_checker * 🌍 Internet Connection Checker A Pure Dart Utility library that checks for a

Nov 25, 2022

A CLI for syncing Dart dependency versions between pubspec.yaml and pubspec.lock files.

lockpick A CLI for syncing Dart dependency versions between pubspec.yaml and pubspec.lock files. 🔒 Usage # Activate lockpick pub global activate lock

Oct 17, 2022

Provides simple conversion between Dart classes and Protobuf / Fixnum classes used in gRPC.

grpc_protobuf_convert Provides simple conversion between Dart classes and Protobuf / Fixnum classes used in gRPC. Using the library Add the repo to yo

Nov 1, 2022

A flutter utility to easily create flavors in your flutter application

Flutter Flavorizr A flutter utility to easily create flavors in your flutter application Getting Started Let's start by setting up our environment in

Jan 1, 2023

CLI utility to manage MC Server installations

CLI utility to manage MC server installations. Features Install required JDKs Download server files Generate start scripts (with optimized JVM flags)

Nov 18, 2022

Utility to process H264 profile-level-id values

h264_profile_level_id Dart utility to process H264 profile-level-id values based on Google's libwebrtc C++ code. API import 'package:h264_profile_leve

Apr 22, 2022

A utility library to automate mobile emulators.

emulators A utility library to automate mobile emulators. Can be used to automate screenshots on multiple devices. Example project https://github.com/

Nov 13, 2022
Comments
  • README.md - OpenWRT Export Description Incorrect

    README.md - OpenWRT Export Description Incorrect

    Great software!

    Using the example REAME.md writeup to export & convert the static leases for an OpenWRT router caused the utility to exit abnormally with error messages.

    Incorrect syntax: grep -hnr -A3 "config host" /etc/config/dhcp > static_leases.openwrt

    Suggest to change this to: cat /etc/config/dhcp > static_leases.openwrt

    opened by preikschat 2
  • Option to allow leases without FQDN ?

    Option to allow leases without FQDN ?

    Just found your great tool.. wondering if it would be easy to add an option that doesn't require a fully qualified host name (with domain).

    eg don't reject "router" and only accept "router.domain.com"

    opened by andrewwong2000 0
  • Not all OpenWRT versions use 3 lines for host definitions

    Not all OpenWRT versions use 3 lines for host definitions

    Keeping 3 lines after config host is not enough for some versions of OpenWRT. For OpenWrt SNAPSHOT r12235-49caf9f98a, /etc/config/dhcp contains at least 4 lines for each host config. As a result, OpenWRT export instructions don't work for these configurations. Changing 3 to 4 fixes the issue in my case, but I'm not sure if this will work for everybody:

    grep -hnr -A4 "config host" /etc/config/dhcp > static_leases.openwrt
    
    opened by akhuraskin 0
  • Presence of DUID field crashes uproot

    Presence of DUID field crashes uproot

    Version:

    uprt (2021.10.001 running on windows "Windows 10 Pro" 10.0 (Build 19043))
    

    I exported openwrt leases using

    grep -hnr -A4 "config host" /etc/config/dhcp
    

    My configuration contains entries with duid in addition to mac such as this one:

    115:config host
    116-    option mac 'FC:44:82:AA:AA:AA'
    117-    option dns '1'
    118-    option duid '000100012774439a540xxxxxxxxx'
    119-    option ip '192.168.1.244'
    

    They crash uproot. If I remove these entries, export finishes fine. Error output:

    > .\uprt.exe .\duid.openwrt -g j
    Uprt converting files ...
    Scanning duid.openwrt...
    Error:#0      _GrowableList.[] (dart:core-patch/growable_array.dart:254)
    #1      ValidateLeases.removeBadLeases (package:uprt/src/validate_leases.dart:175)
    #2      OpenWrt.getLeaseMap (package:uprt/src/open_wrt.dart:124)
    #3      Converter.getSourceLeaseMap (package:uprt/src/converter.dart:228)
    #4      Converter.toJson (package:uprt/src/converter.dart:260)
    #5      Converter.toOutput (package:uprt/src/converter.dart:70)
    #6      Converter.convertFileList (package:uprt/src/converter.dart:29)
    #7      main (file:///g:/users/david/documents/mega/projects/dart/convert-ddwrt/cli/bin/uprt.dart:74)
    #8      _delayEntrypointInvocation.<anonymous closure> (dart:isolate-patch/isolate_patch.dart:281)
    #9      _RawReceivePortImpl._handleMessage (dart:isolate-patch/isolate_patch.dart:184)
    
    opened by akhuraskin 0
Releases(v2021-10-001-beta)
  • v2021-10-001-beta(Oct 7, 2021)

    This is the initial beta release. All comments and issues are welcome. Please open an issue if you encounter problems, have questions, or have a feature request. Also please feel free to submit a pull request. Binaries for Windows, Mac, and Linux (x86) are provided below. The binaries are stand-alone executables that contain the dart runtime, no need for external dependencies. The Mac and Linux binaries have been compiled and tested on virtual machines. For other architectures, you will need to compile yourself - see the Readme file for details. Detailed usage instructions are in the Readme.

    Source code(tar.gz)
    Source code(zip)
    uprt-win_2021_10_001.zip(2.40 MB)
    uprt_linux_x86_2021_10_001.tar.gz(2.64 MB)
    uprt_mac_2021_10_001.zip(2.31 MB)
Owner
GeekVisit
GeekVisit
Easy to use cross-platform regex replace command line util

replace Easy to use cross-platform regex replace command line util. Can't remember the arguments to the find command? or how xargs works? Maybe sed is

Rob Becker 3 Feb 1, 2022
A Very Good Command Line Interface for Dart created by Very Good Ventures 🦄

Very Good CLI Developed with ?? by Very Good Ventures ?? A Very Good Command Line Interface for Dart. Installing $ dart pub global activate very_good_

Very Good Open Source 1.8k Jan 8, 2023
Arissounddart - a Command-line SoundSprite generator for Dart

SoundDart SoundDart is a Command-line SoundSprite generator for Dart. It require

Behruz Hurramov 1 Jan 9, 2022
A simple command-line application to generate simple folder and file structure for Flutter Applications

Kanza_cli is a simple command line tool to generate folder and file structure for your Flutter apps. To use it, you should do the followings: 1. First

Kanan Yusubov 9 Dec 16, 2022
A simple shortcut, command line interface (CLI) for a lazy (a.k.a effective) Flutter developer in order to increase productivity and happiness.

f A simple shortcut, command line interface (CLI) for a lazy (a.k.a effective) Flutter developer in order to increase productivity and happiness. Inst

Salman S 27 Nov 22, 2022
A command-line interface for Ultroid

UltroidCli Welcome to the UltroidCli project built for The Ultroid. This Project is actively maintained by Akash Pattnaik. All kinds of contributions

AkashPattanaik 38 Nov 13, 2022
Command-line tool to provide null-safety percentage info of a project. Track your migration progress on mixed-version programs that execute with unsound null safety.

null_safety_percentage Command-line tool to provide null-safety percentage info of a project. Track your migration progress on mixed-version programs

dartside.dev 8 Mar 27, 2022
Command-line Interface (CLI) for any_icon_maker.

makeanyicon Command-line Interface (CLI) for any_icon_maker. makeanyicon Quick Start Installation Usage License Quick Start Installation dart pub glob

MakeAnyIcon 6 Nov 4, 2022
Quiver is a set of utility libraries for Dart that makes using many Dart libraries easier and more convenient, or adds additional functionality.

Quiver is a set of utility libraries for Dart that makes using many Dart libraries easier and more convenient, or adds additional functionality.

Google 905 Jan 2, 2023
A simple Flutter / Dart Utility class for converting complex objects to uri and query string

A simple Flutter / Dart Utility class for converting complex or nested objects to uri and query strings you can follow the the article on how this cla

Opata Joshua 5 Sep 7, 2022