snmpchek: http://www.nothink.org/codes/snmpcheck/index.php
262
docker run --rm -ti katta/snmpcheck 192.168.1.1
one command build & run:
cat <<EOF | docker build - -t katta/snmpcheck && docker run -ti --rm katta/snmpcheck 192.168.1.1
FROM ruby
RUN set -x && \
gem install snmp && \
wget http://www.nothink.org/codes/snmpcheck/snmpcheck-1.9.rb -O /snmpcheck && \
chmod +x /snmpcheck
ENTRYPOINT [ "/snmpcheck" ]
EOF
Content type
Image
Digest
Size
329.6 MB
Last updated
about 8 years ago
docker pull katta/snmpcheck