This YANG module provides a data model for network interfaces.
Copyright 2017-2023 Rubicon Communications, LLC.
Example URL
Interface configuration parameters.
netgate.interface.InterfacesConfig
Internal error
package main import ( "fmt" "net/http" "io/ioutil" ) func main() { url := "http://hostname/restconf/data/netgate-interface:interfaces-config" req, _ := http.NewRequest("GET", url, nil) res, _ := http.DefaultClient.Do(req) defer res.Body.Close() body, _ := ioutil.ReadAll(res.Body) fmt.Println(res) fmt.Println(string(body)) }