-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathNETCONF-example.xml
More file actions
47 lines (46 loc) · 1.66 KB
/
NETCONF-example.xml
File metadata and controls
47 lines (46 loc) · 1.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<rpc message-id="101"
xmlns="urn:ietf:params:xml:ns:netconf:base:1.0">
<get-data xmlns="urn:ietf:params:xml:ns:yang:ietf-netconf-nmda"
xmlns:sysds="urn:ietf:params:xml:ns:yang:ietf-system-datastore">
<datastore>sysds:system</datastore>
<subtree-filter>
<user-groups xmlns="urn:example:user-group"/>
</subtree-filter>
<with-immutability/>
</get-data>
</rpc>
<rpc-reply message-id="101"
xmlns="urn:ietf:params:xml:ns:netconf:base:1.0">
<data xmlns="urn:ietf:params:xml:ns:yang:ietf-netconf-nmda">
<user-groups xmlns="urn:example:user-group"
xmlns:imma="urn:ietf:params:xml:ns:yang:ietf-immutable-annotation"
imma:immutable="false">
<group imma:immutable="true">
<name>administrator</name>
<description imma:immutable="false">administrator group</description>
<access-level>admin</access-level>
<user>
<name>ex-username-1</name>
<password>$5$rounds=10000$mysalt123456789$l4BjA1p/8q.qCYJ.2pLqjR5mCJf2bP7cLpYWmnC7Hq8</password>
</user>
<user imma:immutable="false">
<name>ex-username-2</name>
<password>$1$/h1234q$abcdef1234567890abcdef</password>
</user>
<tag>system</tag>
<tag>non-editable</tag>
</group>
<group imma:immutable="false">
<name>power-users</name>
<description>Power user group</description>
<access-level>power</access-level>
<user>
<name>ex-username-3</name>
<password>$1$/h4567q$abcdef2345678901abcdef</password>
</user>
<tag>system</tag>
<tag>editable</tag>
</group>
</user-groups>
</data>
</rpc-reply>