Skip to content

Versatile tool designed for network administration, providing a wide range of useful calculations.

License

Notifications You must be signed in to change notification settings

franckferman/SysAdminToolbox

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

4 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

Contributors Forks Stargazers Issues License

SysAdminToolbox Logo

๐ŸŒ SysAdminToolbox

Versatile tool designed for network administration, providing a wide range of useful calculations.
Network Calculations and Conversions Tool.

๐Ÿ“˜ Explore the full documentation ยท ๐Ÿž Report Bug ยท ๐Ÿ› ๏ธ Request Feature

๐Ÿ“œ Table of Contents

Click to collapse/expand
  1. ๐Ÿ“– About
  2. ๐Ÿ› ๏ธ Installation
  3. ๐ŸŽฎ Usage
  4. โ— Troubleshooting
  5. ๐Ÿค Contributing
  6. ๐ŸŒ  Star Evolution
  7. ๐Ÿ“œ License
  8. ๐Ÿ“ž Contact

๐Ÿ“– About

SysAdminToolbox: Versatile tool designed for network administration, providing a wide range of useful calculations.

The ultimate goal of the SysAdminToolbox is to save time and streamline the network administration process. By consolidating multiple tools into a single, locally-hosted application, users can quickly and easily perform a wide range of network calculations without the need for external resources.

Whether you are an experienced network administrator or just getting started in the field, the SysAdminToolbox offers a convenient and powerful solution for all your network calculation needs.

โœจ List of features

    • Convert decimal to binary (--dectobin, --dec2bin, --d2b)
    • Convert binary to decimal (--bintodec, --bin2dec, --b2d)
    • Convert decimal to hexadecimal (--dectohex, --dec2hex, --d2h)
    • Convert hexadecimal to decimal (--hextodec, --hex2dec, --h2d)
    • Convert binary to hexadecimal (--bintohex, --bin2hex, --b2h)
    • Convert hexadecimal to binary (--hextobin, --hex2bin, --h2b)
    • Convert IP address to binary (--iptobin, --ip2bin, --i2b)
    • Convert binary to IP address (--bintoip, --bin2ip, --b2i)
    • Convert subnet mask to binary (--masktobin, --mask2bin, --m2b)
    • Convert binary to subnet mask (--bintomask, --bin2mask, --b2m)
    • Convert subnet mask to CIDR (--masktocidr, --mask2cidr, --m2c)
    • Convert CIDR to subnet mask (--cidrtomask, --cidr2mask, --c2m)
    • Convert subnet mask to wildcard (--masktowildcard, --mask2wildcard, --m2w)
    • Convert wildcard to subnet mask (--wildcardtomask, --wildcard2mask, --w2m)
    • Convert CIDR to wildcard (--cidrtowildcard, --cidr2wildcard, --c2w)
    • Convert wildcard to CIDR (--wildcardtocidr, --wildcard2cidr, --w2c)
    • Convert address (and optional mask) to binary (--addrtobin, --addr2bin, --a2b)
    • Convert binary to address or mask (--bintoaddr, --bin2addr, --b2a)
    • Calculate subnet details (--subnetcalc, --subnet, --sc)
    • Calculate advanced subnet details (--advancedsubnetcalc, --asc)
    • Calculate VLSM details for a network with required hosts (--vlsmcalc, --vlsm)
    • Perform a DNS lookup on a dostable name (--dnslookup)
    • Provide VLAN creation command help (--vlanhelper)
    • Provide ACL creation command help (--aclhelper)
    • Display VLAN cheat sheet (--vlancheatsheet)
    • Display ACL cheat sheet (--aclcheatsheet)

SysAdminToolbox Demo Screenshot

(๐Ÿ”ผ Back to top)

๐Ÿš€ Installation

Before diving into the installation process, ensure you meet the following prerequisites.

Prerequisites

Python 3: Ensure Python 3 is installed on your system before initiating the installation process.

โš ๏ธ Note: SysAdminToolbox has been rigorously tested with Python 3.11.2 on Linux (Debian) Windows (11). While it may function with other versions, compatibility is guaranteed only with these specific configurations.

Installation methods

Git clone the repository:

git clone https://github.com/franckferman/SysAdminToolbox.git

(๐Ÿ”ผ Back to top)

๐ŸŽฎ Usage

Ensure you adapt your command according to how you've set up SysAdminToolbox.

Getting started

Kick off with the built-in help to explore SysAdminToolbox's functionalities:

python3 src/SysAdminToolbox/SysAdminToolbox.py -h

Command examples

๐Ÿ”ข Binary and Hexadecimal Conversions:

Task Command
Convert decimal to binary python3 src/SysAdminToolbox/SysAdminToolbox.py --dectobin 42
Convert binary to decimal python3 src/SysAdminToolbox/SysAdminToolbox.py --bintodec 101010
Convert decimal to hexadecimal python3 src/SysAdminToolbox/SysAdminToolbox.py --dectohex 255
Convert hexadecimal to decimal python3 src/SysAdminToolbox/SysAdminToolbox.py --hextodec ff
Convert binary to hexadecimal python3 src/SysAdminToolbox/SysAdminToolbox.py --bintohex 101010
Convert hexadecimal to binary python3 src/SysAdminToolbox/SysAdminToolbox.py --hextobin ff
Convert IP address to binary python3 src/SysAdminToolbox/SysAdminToolbox.py --iptobin 192.168.1.1
Convert binary to IP address python3 src/SysAdminToolbox/SysAdminToolbox.py --bintoip 11000000.10101000.00000001.00000001
Convert subnet mask to binary python3 src/SysAdminToolbox/SysAdminToolbox.py --masktobin 255.255.255.0
Convert binary to subnet mask python3 src/SysAdminToolbox/SysAdminToolbox.py --bintomask 11111111.11111111.11111111.00000000
Convert address (and optional mask) to binary python3 src/SysAdminToolbox/SysAdminToolbox.py --addrtobin 192.168.0.1 255.255.255.0
Convert binary to address or mask python3 src/SysAdminToolbox/SysAdminToolbox.py --bintoaddr 11000000.10101000.00000001.00000001

๐Ÿงฎ Network Conversions:

Task Command
Convert subnet mask to CIDR python3 src/SysAdminToolbox/SysAdminToolbox.py --masktocidr 255.255.255.0
Convert CIDR to subnet mask python3 src/SysAdminToolbox/SysAdminToolbox.py --cidrtomask 24
Convert subnet mask to wildcard python3 src/SysAdminToolbox/SysAdminToolbox.py --masktowildcard 255.255.255.0
Convert wildcard to subnet mask python3 src/SysAdminToolbox/SysAdminToolbox.py --wildcardtomask 0.0.0.255
Convert CIDR to wildcard python3 src/SysAdminToolbox/SysAdminToolbox.py --cidrtowildcard 24
Convert wildcard to CIDR python3 src/SysAdminToolbox/SysAdminToolbox.py --wildcardtocidr 0.0.0.255

๐ŸŒ Network and Subnet Calculations:

Task Command
Calculate subnet details python3 src/SysAdminToolbox/SysAdminToolbox.py --subnetcalc 192.168.0.1 255.255.255.0
Calculate advanced subnet details python3 src/SysAdminToolbox/SysAdminToolbox.py --advancedsubnetcalc 192.168.0.1/24 26
Calculate VLSM details for a network with required hosts python3 src/SysAdminToolbox/SysAdminToolbox.py --vlsmcalc 192.168.0.0/24 50 30 10 5

๐Ÿ” Networking tools:

Task Command
Perform a DNS lookup on a dostable name python3 src/SysAdminToolbox/SysAdminToolbox.py --dnslookup example.com

๐Ÿ•ต๏ธ Configuration Helpers:

Task Command
Provide VLAN creation command help python3 src/SysAdminToolbox/SysAdminToolbox.py --vlanhelper cisco 10 Engineering Gi0/1-15
Provide ACL creation command help python3 src/SysAdminToolbox/SysAdminToolbox.py --aclhelper cisco ACL_NAME permit tcp 192.168.1.0/24 any

๐Ÿ“ Cheat Sheets:

Task Command
Display VLAN cheat sheet python3 src/SysAdminToolbox/SysAdminToolbox.py --vlancheatsheet trunk
Display ACL cheat sheet python3 src/SysAdminToolbox/SysAdminToolbox.py --aclcheatsheet creation

(๐Ÿ”ผ Back to top)

๐Ÿ”ง Troubleshooting

Encountering issues? Don't worry. If you come across any problems or have questions, please don't hesitate to submit a ticket for assistance: Submit an issue on GitHub

(๐Ÿ”ผ Back to top)

๐Ÿค Contributing

We truly appreciate and welcome community involvement. Your contributions, feedback, and suggestions play a crucial role in improving the project for everyone. If you're interested in contributing or have ideas for enhancements, please feel free to open an issue or submit a pull request on our GitHub repository. Every contribution, no matter how big or small, is highly valued and greatly appreciated!

(๐Ÿ”ผ Back to top)

๐ŸŒ  Star Evolution

Explore the star history of this project and see how it has evolved over time:

Star History Chart

Your support is greatly appreciated. We're grateful for every star! Your backing fuels our passion. โœจ

๐Ÿ“š License

This project is licensed under the GNU Affero General Public License, Version 3.0. For more details, please refer to the LICENSE file in the repository: Read the license on GitHub

(๐Ÿ”ผ Back to top)

๐Ÿ“ž Contact

ProtonMail LinkedIn Twitter

(๐Ÿ”ผ Back to top)