Giter Club home page Giter Club logo

cidr's Introduction

CIDR

基于Golang net包封装了CIDR网段和IP的常用处理方法

import "github.com/3th1nk/cidr"

举个栗子

c, _ := cidr.ParseCIDR("192.168.1.0/24")
fmt.Println(c.Network())
fmt.Println(c.Broadcast())

start, end := c.IPRange()
fmt.Println(c.IPCount(), start, end)

if err := c.ForEachIP(func(ip string) error {
    // do something
    return nil
}); err != nil {
    fmt.Println(err)
}

网段裂解

# 基于子网数量划分子网段
cs, _ := c.SubNetting(cidr.SUBNETTING_METHOD_SUBNET_NUM, 4)
for _, c := range cs {
    fmt.Println(c.CIDR())
}

# 基于主机数量划分子网段
cs, _ := c.SubNetting(cidr.SUBNETTING_METHOD_HOST_NUM, 64)
for _, c := range cs {
    fmt.Println(c.CIDR())
}

网段合并

c, _ := cidr.SuperNetting([]string{
    "2001:db8::/66",
    "2001:db8:0:0:8000::/66",
    "2001:db8:0:0:4000::/66",
    "2001:db8:0:0:c000::/66",
})
fmt.Println(c.CIDR())

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.