We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
when I use a xml to delete index 2:
<edit-config xmlns:nc="urn:ietf:params:xml:ns:netconf:base:1.0"> <target> <running/> </target> <config> <xacl nc:operation="delete" xmlns="x-acl"> <rule> <index>2</index> </rule> </xacl > </config> </edit-config>
yang is :
module x-acl{ namespace "x-acl; prefix "x-acl"; import ietf-inet-types{ prefix "inet"; } revision 2015-05-18{ description "Initial revision"; } container xacl{ list rule{ key index; leaf index{ type uint32; } leaf xid{ type uint8; }}}
and other index also be deleted, how can I modify this
The text was updated successfully, but these errors were encountered:
Use
<edit-config xmlns:nc="urn:ietf:params:xml:ns:netconf:base:1.0"> <target> <running/> </target> <config> <xacl xmlns="x-acl"> <rule nc:operation="delete"> <index>2</index> </rule> </xacl > </config> </edit-config>
to delete only rule with index 2.
rule
index
2
Sorry, something went wrong.
No branches or pull requests
when I use a xml to delete index 2:
yang is :
and other index also be deleted, how can I modify this
The text was updated successfully, but these errors were encountered: