Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
goSDN
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
danet
goSDN
Merge requests
!91
"Overhaul Architecture"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
"Overhaul Architecture"
67-overhaul-architecture
into
develop
Overview
0
Commits
69
Pipelines
25
Changes
60
Merged
Ghost User
requested to merge
67-overhaul-architecture
into
develop
4 years ago
Overview
0
Commits
69
Pipelines
25
Changes
2
Expand
Closes
#67 (closed)
Edited
4 years ago
by
Ghost User
0
0
Merge request reports
Compare
version 10
version 11
62af76aa
4 years ago
version 10
81620ab8
4 years ago
version 9
2692f73d
4 years ago
version 8
e3045ef7
4 years ago
version 7
7f4d2e92
4 years ago
version 6
567685a5
4 years ago
version 5
34f56b4b
4 years ago
version 4
1b779077
4 years ago
version 3
7f093422
4 years ago
version 2
45692202
4 years ago
version 1
09b42989
4 years ago
develop (base)
and
version 11
latest version
ca5fc556
69 commits,
4 years ago
version 11
62af76aa
37 commits,
4 years ago
version 10
81620ab8
35 commits,
4 years ago
version 9
2692f73d
25 commits,
4 years ago
version 8
e3045ef7
22 commits,
4 years ago
version 7
7f4d2e92
16 commits,
4 years ago
version 6
567685a5
15 commits,
4 years ago
version 5
34f56b4b
13 commits,
4 years ago
version 4
1b779077
8 commits,
4 years ago
version 3
7f093422
6 commits,
4 years ago
version 2
45692202
5 commits,
4 years ago
version 1
09b42989
3 commits,
4 years ago
Show latest version
2 files
+
6
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
cmd/gnmi/gnmi.go
+
3
−
3
Options
@@ -29,16 +29,16 @@ func main() {
transport
:=
&
nucleus
.
Gnmi
{
SetNode
:
sbi
.
SetNode
()}
cfg
:=
&
gnmi
.
Config
{
Addr
:
"
localhost:9339
"
,
Addr
:
"
portainer.danet.fbi.h-da.de:6030
"
,
Username
:
"admin"
,
Password
:
"arista"
,
Encoding
:
gpb
.
Encoding_
PROTO
,
Encoding
:
gpb
.
Encoding_
JSON_IETF
,
}
transport
.
SetConfig
(
cfg
)
device
.
Transport
=
transport
p
:=
[]
string
{
"/interfaces/interface[name=
en0
]/state/name"
}
p
:=
[]
string
{
"/interfaces/interface[name=
*
]/state/name"
}
errors
:=
0
for
_
,
path
:=
range
p
{
err
:=
pnd
.
RequestAll
(
path
)
Loading