snmp_agent_uptime
Purpose of the assignment
???
Quick instructions
Set up three virtual computers, SimpleArbiter with the disk image
simpleArbiterDhcp, SNMPServer and SNMPClient. Write a program
called upminutes. This program should output the uptime of the
computer in minutes. Set it up on SNMPClient in the home directory
of the user test with the password test.
Make sure that the SNMP server reports it's uptime in seconds
over SNMP under NET-SNMP-EXTEND-MIB::nsExtendOutput2Table.
Write a script called beri.sh that reads the value from the
OID 1.3.6.1.4.1.8072.1.3.2.4.1.4. on SNMPServer. Set it up on
SNMPClient in the home directory of the user test.
Instructions
Set up of VM VirtualBox
-
Download the following virtual images (*.vid) from the directory
with images of virtual computers:
-
simpleArbiterDhcp.vdi
-
some-bash-console.vdi – twice, one for SNMPServer
and second for SNMPClient
-
VM VirtualBox WARNING! If you want to use one same virtual image
(some-bash-console.vdi) for two virtual computers
(SNMPServer and SNMPClient), you must change UUID
of one image.
-
Use this command
vboxmanage internalcommands sethduuid name-of-disk.vdi
to change UUID (hint).
-
Final view of sets VM VirtualBox machines.
Set up of SNMPServer
-
a
-
aa
-
aaa
Set up of SNMPClient
-
a
-
aa
-
aaa
- Create the user test with password test
-
command adduser test
- Login as user test and create program upminutes
in the home directory. This program should output the uptime of the
computer in minutes.
-
command nano upminutes (you can use different editor)
-
add the source code:
#!/bin/bash
echo $(awk '{print $1}' /proc/uptime) / 60 | bc
exit 0
-
don't forget to make the program runtable:
command chmod +x /home/test/upminutes
-
test the program (it should output the uptime of the
computer in minutes)
command /home/test/upminutes