Posts

Showing posts from August, 2017

NBC: Number Base Converter

Image
This application needs JavaScript Number Base Converter from to SWITCH NBC How to Use Type/paste the number input. Change the input number base (the from input box) if needed. Minimum 2 (binary, base-2), maximum 62 (sixtytwoy, base-62). Sixtytwoy is sixty two and -y suffix. It's not actually negative why. Change the output number base (the to input box) to certain number base you wanna convert to. Same limit applies. The calculation result will be automatically displayed. Details Only accepts integer . The minimum base is 2 , with maximum of 62 . The characters used here are: Default sequence: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, ...

IPv4 CIDR Calculator

Image
This application needs JavaScript Type your input below. This will automatically do the calculation. CIDR stands for Classless Inter-Domain Routing. IPv4 CIDR notation: [IPv4 network address]/[host identifier] . For example: 192.168.0.1/24 Calculation Let's calculate this: 192.168.0.1/24 Break it down, we have two parts: 192.168.0.1 and /24 . The 192.168.0.1 is an IPv4 dot-decimal notation. The network address. The /24 is the subnet mask as a host identifier (to denote its own network). This is a neat explanation . This is the mainline of how the tool above does the calculation. Steps: Convert the IPv4 dot-decimal notation to dot-binary notation. 192.168.0.1 ► 11000000.10101000.00000000.00000001 Translate the subnet mask suffix, in above example: /24 , into dot-binary notation . The total length of the notation is 32 bits (32 of 0's and/or...