calmh / node-snmp-native

Native Javascript SNMP library for Node.js
MIT License
252 stars 65 forks source link

Support SNMPv1 #18

Closed gregmac closed 10 years ago

gregmac commented 10 years ago

Adds support for SNMPv1. Specify version in options, eg:

var session = new snmp.Session({ host: '127.0.0.1', port: 161, community: 'public', version:0 });

gregmac commented 10 years ago

Note: updated travis-ci to use node 0.10 due to changes in upstream devDependencies (see https://travis-ci.org/calmh/node-snmp-native/jobs/31058708 to see failures when using node 0.8 or 0.6).

calmh commented 10 years ago

Thanks, looks good to me!