Documentation ¶
Overview ¶
Packet netlink provide access to low level Netlink sockets and messages.
Actual implementations are in: netlink_linux.go netlink_darwin.go
Index ¶
- Variables
- func AddDefaultGw(ip, device string) error
- func AddRoute(destination, source, gateway, device string) error
- func AddToBridge(iface, master *net.Interface) error
- func CreateBridge(name string, setMacAddr bool) error
- func DeleteBridge(name string) error
- func NetworkChangeName(iface *net.Interface, newName string) error
- func NetworkCreateVethPair(name1, name2 string, txQueueLen int) error
- func NetworkLinkAdd(name string, linkType string) error
- func NetworkLinkAddIp(iface *net.Interface, ip net.IP, ipNet *net.IPNet) error
- func NetworkLinkDel(name string) error
- func NetworkLinkDelIp(iface *net.Interface, ip net.IP, ipNet *net.IPNet) error
- func NetworkLinkDown(iface *net.Interface) error
- func NetworkLinkUp(iface *net.Interface) error
- func NetworkSetMTU(iface *net.Interface, mtu int) error
- func NetworkSetMaster(iface, master *net.Interface) error
- func NetworkSetNsFd(iface *net.Interface, fd int) error
- func NetworkSetNsPid(iface *net.Interface, nspid int) error
- func NetworkSetTxQueueLen(iface *net.Interface, txQueueLen int) error
- type IfAddr
- type Route
Constants ¶
This section is empty.
Variables ¶
View Source
var ( ErrWrongSockType = errors.New("Wrong socket type") ErrShortResponse = errors.New("Got short response from netlink") ErrInterfaceExists = errors.New("Network interface already exists") )
View Source
var (
ErrNotImplemented = errors.New("not implemented")
)
Functions ¶
func AddDefaultGw ¶
func AddToBridge ¶
func CreateBridge ¶
func DeleteBridge ¶
func NetworkCreateVethPair ¶
func NetworkLinkAdd ¶
func NetworkLinkAddIp ¶
func NetworkLinkDel ¶
func NetworkLinkDelIp ¶
func NetworkLinkDown ¶
func NetworkLinkUp ¶
func NetworkSetMaster ¶
Types ¶
Click to show internal directories.
Click to hide internal directories.