Created
November 6, 2017 20:08
-
-
Save blockloop/136fd1046d3974b5d5e246bda911c3b3 to your computer and use it in GitHub Desktop.
Humanize a netmask
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
) | |
func main() { | |
for _, nm := range []uint64{24, 8} { | |
fmt.Printf("%d => %v\n", nm, humanizeNetmask(nm)) | |
} | |
} | |
// Found this on the internet somewhere and fixed it | |
func humanizeNetmask(netmask uint64) []uint64 { | |
var mask uint64 = (0xFFFFFFFF << (32 - netmask)) & 0xFFFFFFFF //24 is the netmask | |
var dmask uint64 = 32 | |
localmask := make([]uint64, 0, 4) | |
var i uint64 | |
for i = 1; i <= 4; i++ { | |
tmp := mask >> (dmask - 8) & 0xFF | |
localmask = append(localmask, tmp) | |
dmask -= 8 | |
} | |
return localmask | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment