How to define an exact rule in aaa_init.xml?
And what does the name tag do ?
I have defined as below, but still it shows access denied for the group
<rule-list>
<name>group3</name>
<group>group3</group>
<rule>
<name>any-access</name>
<path>/<module-name>/<container-name></path>
<access-operations>create update delete read</access-operations>
<action>permit</action>
</rule>
<rule>
<name><container-name>-access</name>
<path>/<module>/<container-info></path>
<access-operations>read</access-operations>
<action>deny</action>
</rule>
<rule>
<name>read-access</name>
<path>/</path>
<access-operations>read exec</access-operations>
<action>permit</action>
</rule>
<rule>
<name>write-access</name>
<path>/</path>
<access-operations>create update delete</access-operations>
<action>deny</action>
</rule>
</rule-list>
How to define a rule to allow the read and edit on a particular container defined in the yang file?