-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patherror.xml
More file actions
31 lines (30 loc) · 887 Bytes
/
error.xml
File metadata and controls
31 lines (30 loc) · 887 Bytes
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
<rpc message-id="102"
xmlns="urn:ietf:params:xml:ns:netconf:base:1.0">
<edit-config>
<target>
<running/>
</target>
<config>
<user-groups xmlns="urn:example:user-group">
<group>
<name>administrator</name>
<access-level>guest</access-level>
</group>
</user-groups>
</config>
</edit-config>
</rpc>
<rpc-reply message-id="102"
xmlns="urn:ietf:params:xml:ns:netconf:base:1.0">
<rpc-error>
<error-type>application</error-type>
<error-tag>invalid-value</error-tag>
<error-severity>error</error-severity>
<error-path xmlns="urn:example:user-group">
/user-groups/group[name="administrator"]/access-level
</error-path>
<error-message xml:lang="en">
Invalid access-level value due to the target node is marked as immutable
</error-message>
</rpc-error>
</rpc-reply>