You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Display the number of "port sets" that are created for each BMR
I've seen this displayed in other tools, but I don't know who would really want or need this
Display the number of excluded ports for each BMR (total ports = 65,535 - number of excluded ports) - DONE
Add "Generate DHCP Options" function - DONE
Add "Messages" error text field to button column for "new example" instructions - DONE
"Example" errors currently appear in bottom of "Source Port Index" column
Add a popup window or link to webpage with MAP-T protocol explanation
Added an overview to the README in github. A page with a full explanation would still be good
Display entire IPv6 source address in binary, including embedded source IPv4 address - DONE
Display IPv6 destination address for a given destination and DMR rule
Consider refactoring to use tkinter directly
Compare the shorter and simpler, but somewhat restricted PySimpleGUI (PSG) code to tkinter code to see if there is any additional functionality that would benefit the app. Keep in mind that it is possible to call some tkinter functions directly from PSG. Also check the PSG page because features are added regularly.
PySimpleGUI v5 just went closed source and pay for license for use in applications for commercial use. No more development for previous versions.
Consider moving to FreeSimpleGUI. It is an open-source fork of PySimpleGUI, and is being actively developed (and cleaned up).
The text was updated successfully, but these errors were encountered:
Make UPD value slider, and let it increase and decrease the PD.
I'm pulling from a generator object, so to decrease, it will either
need to be converted to a list, or recreated when we want to go down.
What ports are valid for a BMR and UDP?
Generate DHCPv6 Option values
Show user IPv6 source address without IPv4 & PSID embedded??? Why?
Show CPE IPv4 address index? Can be different than host bits if prefix is != 24
Clarify what Port Index is
Increment PSID?? Already being done with "Next User PD"
Popup Explanatory Window. "Help" or possibly per function
Find CPE with IPv4 and Port??? Needs list of UDP prefixes (BMRs)
Re: Make UPD value slider ... increase/decrease method:
Another method is:
For increasing - call "next" value from existing generator (next iterator index)
For decreasing - recreate generator and call "next" value x times (x = current index - 1 for previous entry)
The text was updated successfully, but these errors were encountered: