Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Juniper/go-netconf
NETCONF implementation in Go.
https://github.com/Juniper/go-netconf
Last synced: 2 months ago
JSON representation
NETCONF implementation in Go.
- Host: GitHub
- URL: https://github.com/Juniper/go-netconf
- Owner: Juniper
- License: other
- Created: 2013-09-10T04:04:31.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2024-10-15T18:47:43.000Z (3 months ago)
- Last Synced: 2024-11-09T16:06:51.906Z (2 months ago)
- Language: Go
- Size: 403 KB
- Stars: 256
- Watchers: 41
- Forks: 112
- Open Issues: 24
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# netconf
[![GoDoc](https://godoc.org/github.com/Juniper/go-netconf/netconf?status.svg)](https://godoc.org/github.com/Juniper/go-netconf/netconf)
[![Report Card](https://goreportcard.com/badge/github.com/Juniper/go-netconf/netconf)](https://goreportcard.com/report/github.com/Juniper/go-netconf/netconf)
[![Build Status](https://travis-ci.org/Juniper/go-netconf.png)](https://travis-ci.org/Juniper/go-netconf)This library is a simple NETCONF client based on [RFC6241](http://tools.ietf.org/html/rfc6241) and [RFC6242](http://tools.ietf.org/html/rfc6242) (although not fully compliant yet).
> **Note:** This is currently pre-alpha release. API and features may and probably will change. Suggestions and pull requests are welcome.
## Features
* Support for SSH transport using `golang.org/x/crypto/ssh`. (Other transports are planned).
* Built in RPC support (in progress).
* Support for custom RPCs.
* Independent of XML library. Free to choose encoding/xml or another third party library to parse the results.## Install
* Requires Go 1.9 or later!
```bash
$ go get github.com/Juniper/go-netconf/netconf
```## Example
* See examples in `examples/` directory.## Documentation
You can view full API documentation at GoDoc: http://godoc.org/github.com/Juniper/go-netconf/netconf## License
(BSD 2)Copyright © 2013-2018 Juniper Networks, Inc. All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
(1) Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
(2) Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS “AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
The views and conclusions contained in the software and documentation are those of the authors and should not be interpreted as representing official policies, either expressed or implied, of Juniper Networks.
Authors and Contributors
------------------------
* [Brandon Bennett](https://github.com/nemith), Facebook
* [Charl Matthee](https://github.com/charl)
* [Jade Auer](https://github.com/jda)
* [Wayne Tucker](https://github.com/wtucker)
* [Christian Giese](https://github.com/GIC-de), Juniper Networks