25 lines
420 B
Go
25 lines
420 B
Go
|
package dsnet
|
||
|
|
||
|
import (
|
||
|
"github.com/vishvananda/netlink"
|
||
|
)
|
||
|
|
||
|
func Down() {
|
||
|
conf := MustLoadDsnetConfig()
|
||
|
DelLink(conf)
|
||
|
}
|
||
|
|
||
|
func DelLink(conf *DsnetConfig) {
|
||
|
linkAttrs := netlink.NewLinkAttrs()
|
||
|
linkAttrs.Name = conf.InterfaceName
|
||
|
|
||
|
link := &netlink.GenericLink{
|
||
|
LinkAttrs: linkAttrs,
|
||
|
}
|
||
|
|
||
|
err := netlink.LinkDel(link)
|
||
|
if err != nil {
|
||
|
ExitFail("Could not delete interface '%s' (%v)", conf.InterfaceName, err)
|
||
|
}
|
||
|
}
|