rtnetlink/example_link_setdown_test.go
Jeroen Simonetti 1da9fc1b8c
doc: Update README and add examples (#39)
Signed-off-by: Jeroen Simonetti <jeroen@simonetti.nl>
2019-04-12 12:47:11 +02:00

45 lines
863 B
Go

package rtnetlink_test
import (
"log"
"net"
"github.com/jsimonetti/rtnetlink"
)
// Set the operational state an interface to Down
func Example_setLinkDown() {
// Gather the interface Index
iface, _ := net.InterfaceByName("dummy0")
// Dial a connection to the rtnetlink socket
conn, err := rtnetlink.Dial(nil)
if err != nil {
log.Fatal(err)
}
defer conn.Close()
// Request the details of the interface
msg, err := conn.Link.Get(uint32(iface.Index))
if err != nil {
log.Fatal(err)
}
state := msg.Attributes.OperationalState
// If the link is already down, return immediately
if state == rtnetlink.OperStateDown {
return
}
// Set the interface operationally Down
err = conn.Link.Set(&rtnetlink.LinkMessage{
Family: msg.Family,
Type: msg.Type,
Index: uint32(iface.Index),
Flags: 0x0,
Change: 0x1,
})
log.Fatal(err)
}