diff options
Diffstat (limited to 'src')
-rwxr-xr-x | src/conf_mode/snmp.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/conf_mode/snmp.py b/src/conf_mode/snmp.py index 3b02ffc3b..7623206b4 100755 --- a/src/conf_mode/snmp.py +++ b/src/conf_mode/snmp.py @@ -191,8 +191,13 @@ view {{ v.name }} included .{{ oid.oid }} # context sec.model sec.level match read write notif {% if v3_groups -%} {% for g in v3_groups %} +{% if g.mode == 'ro' %} access {{ g.name }} "" usm {{ g.seclevel }} exact {{ g.view }} none none access {{ g.name }} "" tsm {{ g.seclevel }} exact {{ g.view }} none none +{% elif g.mode == 'rw' %} +access {{ g.name }} "" usm {{ g.seclevel }} exact {{ g.view }} {{ g.view }} none +access {{ g.name }} "" tsm {{ g.seclevel }} exact {{ g.view }} {{ g.view }} none +{% endif %} {% endfor -%} {% endif %} |