Source Code: https://github.com/scrapli/scrapligo
Examples: https://github.com/scrapli/scrapligo/tree/master/examples
scrapligo -- scrap(e c)li (but in go!) -- is a Go library focused on connecting to devices, specifically network devices (routers/switches/firewalls/etc.) via SSH and NETCONF.
NOTE this is a work in progress, use with caution!
- Easy: It's easy to get going with scrapligo -- if you are familiar with go and/or scrapli you are already most of the way there! Check out the examples linked above to get started!
- Fast: Do you like to go fast? Of course you do! All of scrapli is built with speed in mind, but this port of scrapli to go is of course even faster than its python sibling!
- But wait, there's more!: Have NETCONF devices in your environment, but love the speed and simplicity of scrapli? You're in luck! NETCONF support is built right into scrapligo!
You need Go 1.16+ installed. Clone the repo and go run
any of the examples in the examples folder.
$ go run examples/base_driver/main.go
found prompt:
csr1000v-1#
sent command 'show version', output received:
Cisco IOS XE Software, Version 16.09.03
Cisco IOS Software [Fuji], Virtual XE Software (X86_64_LINUX_IOSD-UNIVERSALK9-M), Version 16.9.3, RELEASE SOFTWARE (fc2)
Technical Support: http://www.cisco.com/techsupport
Copyright (c) 1986-2019 by Cisco Systems, Inc.
Compiled Wed 20-Mar-19 07:56 by mcpre
...
For more details, check out Network automation options in Go with scrapligo.
$ go run examples/network_driver/textfsm/main.go
Hostname: csr1000v-1
SW Version: 16.9.3
Uptime: 18 minutes
package main
import (
"fmt"
"github.com/scrapli/scrapligo/driver/base"
"github.com/scrapli/scrapligo/driver/core"
)
func main() {
d, err := core.NewCoreDriver(
"localhost",
"cisco_iosxe",
base.WithPort(21022),
base.WithAuthStrictKey(false),
base.WithAuthUsername("vrnetlab"),
base.WithAuthPassword("VR-netlab9"),
base.WithAuthSecondary("VR-netlab9"),
)
if err != nil {
fmt.Printf("failed to create driver; error: %+v\n", err)
return
}
err = d.Open()
if err != nil {
fmt.Printf("failed to open driver; error: %+v\n", err)
return
}
defer d.Close()
// send some configs
configs := []string{
"interface loopback0",
"interface loopback0 description tacocat",
"no interface loopback0",
}
_, err = d.SendConfigs(configs)
if err != nil {
fmt.Printf("failed to send configs; error: %+v\n", err)
return
}
}
* gopher artwork by @egonelbre