
Upload fm-subagent and fm-trap-subagent to our snmp armada application integrated with armada plugin. Change-Id: I2c7b3a65f2e97c147068d0c3c41c52e814bb0e2e Story: 2008132 Task: 41227 Signed-off-by: Gonzalo Gallardo <gonzalo.gallardo@windriver.com>
13 lines
214 B
Docker
Executable File
13 lines
214 B
Docker
Executable File
FROM centos:8
|
|
RUN yum -y update
|
|
RUN yum -y install\
|
|
net-snmp \
|
|
net-snmp-utils \
|
|
net-snmp-libs
|
|
|
|
COPY ./mibs/* /usr/share/snmp/mibs/
|
|
EXPOSE 161/udp
|
|
EXPOSE 162/udp
|
|
EXPOSE 705/tcp
|
|
CMD [ "/usr/sbin/snmpd", "-f"]
|