Skip to content

Commit

Permalink
Merge pull request #219 from mirceaulinic/CF-SNMP
Browse files Browse the repository at this point in the history
Add get_snmp_information() to JunOS, IOS-XR, NXOS & EOS
  • Loading branch information
dbarrosop committed Mar 4, 2016
2 parents c2293f9 + 3b394ab commit 6972e25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion napalm/pluribus.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ def get_snmp_information(self):
for snmp_line in snmp_lines:
snmp_line_details = snmp_line.split(';')
snmp_community = unicode(snmp_line_details[1])
snmp_mode = _SNMP_MODE_MAP_.get(snmp_line_details[1])
snmp_mode = _SNMP_MODE_MAP_.get(snmp_line_details[2], u'ro')
snmp_acl = u''
snmp_information['community'][snmp_community] = {
'acl' : snmp_acl,
Expand Down

0 comments on commit 6972e25

Please sign in to comment.