Introduction
A large part of being a system administrator is collecting accurate information about your servers and infrastructure. There are a number of tools and options for gathering and processing this type of information. Many of them are built upon a technology calledSNMP.
SNMP stands for simple network management protocol. It is a way that servers can share information about their current state, and also a channel through which an administer can modify pre-defined values. While the protocol itself is very simple, the structure of programs that implement SNMP can be very complex.
In our last guide, we learned aboutย the basics of the SNMP protocol. In this guide, we will begin to demonstrate how to setup the tools to communicate using SNMP. We will be using two Ubuntu 14.04 servers to demonstrate, but most other systems should be able to follow along with a few modifications.
Install the SNMP Daemon and Utilities
We can begin to explore how SNMP can be implemented on a system by installing the daemon and tools on some Ubuntu systems.
We will use two servers, one will contain the manager portion, while the other server will have the agent. We could choose to install the agent on the manager machine as well, but keeping them separate makes it easier to demonstrate what functionality is provided by each component.
On the first server, update the apt database and install the manager component. Along with this, we will also download another package calledย snmp-mibs-downloader
ย which contains some proprietary information about standard MIBs that allow us to access most of the MIB tree by name:
sudo apt-get update
sudo apt-get install snmp snmp-mibs-downloader
On our second server, the one that we will be interacting with that will run the daemon, we can install the necessary components by typing:
sudo apt-get update
sudo apt-get install snmpd
Now that you have installed these components, we need to configure our setup.
Configuring the SNMP Manager
As we mentioned above, most of the bulk of the work happens in the agent component, so our configuration is actually pretty easy on this machine. We just need to modify one file to make sure that our client can use the extra MIB data we installed.
Open theย /etc/snmp/snmp.conf
ย file in your text editor with sudo privileges:
sudo nano /etc/snmp/snmp.conf
In this file, there are a few comments and a single un-commented line. To allow the manager to import the MIB files, we simply need to comment out theย mibs :
ย line:
#mibs :
Save and close the file when you are finished.
We are now finished configuring the manager portion, but we will still need to use this server to help us configure our agent computer.
Configuring the SNMP Agent Machine
As a true client-server system, the agent computer does not have any of the external tools needed to configure its own SNMP setup. We can modify some configuration files to make some changes, but most of the changes we need to make will be done by connecting to our agent server from our management server.
To get started, on our agent computer, we need to open the daemon’s configuration file with sudo privileges:
sudo nano /etc/snmp/snmpd.conf
Inside, we will have to make a few changes. These will mainly be used to bootstrap our configuration so that we can manage it from our other server.
First, we need to change theย agentAddress
ย directive. Currently, it is set to only allow connections originating from the local computer. We need to comment out the current line, and uncomment the line underneath, which allows all connections (we will be locking this down soon):
# Listen for connections from the local system only
#agentAddress udp:127.0.0.1:161
# Listen for connections on all interfaces (both IPv4 *and* IPv6)
agentAddress udp:161,udp6:[::1]:161
Next, we will need to temporarily insert aย createUser
ย line. These directives are not normally kept in this file, but we will be removing it again in a moment, so it doesn’t matter too much.
The user we are creating will be calledย bootstrap
ย and will be used as a template in which to create our first “real” user. The SNMP packages do this through a process of cloning the user’s properties.
When defining a new user, you must specify the authentication type (MD5 or SHA) as well as supply a passphrase thatย mustย be at least 8 characters. If you plan on using encryption for the transfer, like we are, you also must specify the privacy protocol (DES or AES) and optionally a privacy protocol passphrase. If no privacy protocol passphrase is supplied, the authentication passphrase will be used for the privacy protocol as well.
Our user creation line will look like this:
createUser bootstrap MD5 temp_password DES
Now that we have a new user specified, we need to set up the level of access that this user will have. We will set this up for ourย bootstrap
ย user, and also for the new user we will be creating, calledย demo
. We will allow them read and write access by using therwuser
ย directive (the alternative isย rouser
ย for read-only access).
We will enforce the use of encryption by specifyingย priv
ย after our user. If we wanted to restrict the user to a specific part of the MIB, we could specify the highest-level OID that the user should have access to at the end of the line.
For our purposes, both of our lines will be fairly simple:
rwuser bootstrap priv
rwuser demo priv
When you are finished making these changes, save and close the file.
To implement these changes, restart theย snmpd
ย service:
sudo service snmpd restart
Now, from the machine that you installed the management software on, we can connect to our agent server to create our regular user.
We will do this using theย snmpusm
ย tool, which is used for user management. You will need to know the IP address of your agent server for this to function correctly.
Before we begin, we will talk a bit about the general structure of sending an SNMP command.
The General Structure of SNMP Commands
When using the suite of tools included in theย snmp
ย package (theย net-snmp
ย software suite), you will notice a few patterns in the way you must call the commands.
The first thing you must do is authenticate with the SNMP daemon that you wish to communicate with. This usually involves supplying quite a few pieces of information. The common ones are below:
- -v VERSION: This flag is used to specify the version of the SNMP protocol that you would like to use. We will be using v3 in this guide.
- -c COMMUNITY: This flag is used if you are using SNMP v1 or v2-style community strings for authentication. Since we are using v3-style user-based authentication, we will not be needing this.
- -u USER-NAME: This parameter is used to specify the username that you wish to authenticate as. To read or modify anything using SNMP, you must authenticate with a known username.
- -l LEVEL: This is used to specify the security level that you are connecting with. The possible values areย
noAuthNoPriv
ย for no authentication and no encryption,ยauthNoPriv
for authentication but no encryption, andยauthPriv
ย for authentication and encryption. The username that you are using must be configured to operate at the security level you specify, or else the authentication will not succeed. - -a PROTOCOL: This parameter is used to specify theย authenticationย protocol that is used. The possible values areย
MD5
ย orยSHA
. This must match the information that was specified when the user was created. - -x PROTOCOL: This parameter is used to specify theย encryptionย protocol that is used. The possible values areย
DES
ย orยAES
. This must match the information that was specified when the user was created. This is necessary whenever the user’s privilege specification hasยpriv
ย after it, making encryption mandatory. - -A PASSPHRASE: This is used to give the authentication passphrase that was specified when the user was created.
- -X PASSPHRASE: This is the encryption passphrase that was specified when the user was created. If none was specified but an encryption algorithm was given, the authentication passphrase will be used. This is required when theย
-x
ย parameter is given or whenever a user’s privilege specification has aยpriv
ย after it, requiring encryption.
Using this information, we can begin to construct our commands. Given how we set up our bootstrap user, the commands we will be using with that account will look like this:
snmp_command -u bootstrap -l authPriv -a MD5 -x DES -A temp_password -X temp_password remote_host snmp_sub_command_or_options
For instance, from your management server, you can test to make sure your bootstrap account is available by typing:
snmpget -u bootstrap -l authPriv -a MD5 -x DES -A temp_password -X temp_password remote_host 1.3.6.1.2.1.1.1.0
SNMPv2-MIB::sysDescr.0 = STRING: Linux target 3.13.0-24-generic #46-Ubuntu SMP Thu Apr 10 19:11:08 UTC 2014 x86_64
Theย 1.3.6.1.2.1.1.1.0
ย string is the OID that is responsible for displaying system information. It will basically return the output ofย uname -a
ย on the remote system.
Now that we have verified that we can correctly authenticate to the server running the SNMP daemon, we can continue on to create our regular user account.
Set Up the Regular User Account
Although we have specified the privileges for theย demo
ย user account in ourย snmpd.conf
file, we haven’t actually created this user yet. We are going to use theย bootstrap
ย user as a template for our new user.
On the management server, we can create the user from the template using theย snmpusm
tool and the following general syntax:
snmpusm authentication_info remote_host create new_user existing_user
So, using what we know about the authentication flags we need to pass, and leveraging the user account we already have (bootstrap
), we can make a user that fits the user privileges we have already defined (demo
).
The command will look like this:
snmpusm -u bootstrap -l authPriv -a MD5 -x DES -A temp_password -X temp_password remote_host create demo bootstrap
You should receive the following message:
User successfully created.
We now have a fully functioning user calledย demo
ย on our remote server. However, it is still using the same authentication information as theย bootstrap
ย account. We should change the password to something else. This time, we will use theย demo
ย account to authenticate. Remember, passwordsย mustย be at least 8 characters long:
snmpusm -u demo -l authPriv -a MD5 -x DES -A temp_password -X temp_password remote_host passwd temp_password my_new_password
You should receive the following message back:
SNMPv3 Key(s) successfully changed.
We can test our new credentials and password by asking our remote server how long the SNMP service has been running. We will use theย snmpget
ย command to get a single value from the other machine.
This time, we will take advantage of the extra MIB definitions we downloaded. We can use these to ask for the value by name instead of the OID numeric ID.
snmpget -u demo -l authPriv -a MD5 -x DES -A my_new_password -X my_new_password remote_host sysUpTime.0
You should get back a value that represents the last time that the remote SNMP daemon was restarted:
DISMAN-EVENT-MIB::sysUpTimeInstance = Timeticks: (383018) 1:03:50.18
Creating a Client Configuration File
You have probably noticed by this point that the authentication details for all of your SNMP commands will be fairly static with each request. Rather than typing these in each time, we can create a client-side configuration file that will contain the credentials we are connecting with.
The client configuration file can be placed in two different locations depending on how wide-spread you wish to share it.
If you want to share your login credentials with any valid user on your management machine, you can place your configuration details into the globalย snmp.conf
ย file. You would need to open that file with sudo privileges:
sudo nano /etc/snmp/snmp.conf
If, however, you want to define the authentication credentials for your user alone, you can create a hiddenย .snmp
ย directory within your user’s home directory, and create the file there:
mkdir ~/.snmp
cd ~/.snmp
nano snmp.conf
Regardless of your decision on where to place your configuration, the contents will be the same.
The commands that we are using to authenticate are in the table below. In the right-hand column, you can see the directive names that should be used to set those configuration details within theย snmp.conf
ย file:
Command Flag | Description | Translatedย snmp.conf directive |
---|---|---|
-uUSERNAME | The SNMPv3 username to authenticate as. | defSecurityNameUSERNAME |
-l authPriv | The security level to authenticate with. | defSecurityLevel authPriv |
-a MD5 | The authentication protocol to use. | defAuthType MD5 |
-x DES | The privacy (encryption) protocol to use. | defPrivType DES |
-APASSPHRASE | The authentication passphrase for the supplied username. | defAuthPassphrasePASSPHRASE |
-XPASSPHRASE | The privacy passphrase fro the supplied username. | defPrivPassphrasePASSPHRASE |
Using this information, you can construct an appropriateย snmp.conf
ย file. For our guide, this will look like this:
defSecurityName demo
defSecurityLevel authPriv
defAuthType MD5
defPrivType DES
defAuthPassphrase my_new_password
defPrivPassphrase my_new_password
When you are finished, save and close the file.
Now, you can issue commands without supplying the authentication details. You will only need the SNMP command, the host, and the command arguments.
Instead of typing:
snmpget -u demo -l authPriv -a MD5 -x DES -A my_new_password -X my_new_password remote_host sysUpTime.0
We can simply type:
snmpget remote_host sysUpTime.0
As you can see, this significantly reduces the amount of information we need to supply in each request.
Removing the Bootstrap Account
Now that your regular account is configured correctly, we can remove theย bootstrap
account, since it is fairly insecure.
On your agent server, open theย /etc/snmp/snmpd.conf
ย file again with sudo privileges.
Find and comment out (or remove) both of the lines that we previously added that reference theย bootstrap
ย user:
#createUser bootstrap MD5 temp_password DES
#rwuser demo priv
Save and close the file.
Now, restart the SNMP daemon:
sudo service snmpd restart
This will fulfill the recommendation of not havingย createUser
ย directives in the normalsnmpd.conf
ย file. It will also remove privileges from that temporary user.
If you want to completely remove theย bootstrap
ย user from the usmUserTable, you can do so by issuing this command from the management server:
snmpusm remote_host delete bootstrap
You will receive the following response:
User successfully deleted.
Conclusion
At this point, you should have a fully configured client-server setup what can communicate securely using the SNMP protocol. You can easily add additional daemons on other hosts and configure account access across your entire infrastructure.
In the next guide, we’ll go over some ofย the basic usage of the net-snmp toolsย that we have been working with. We will demonstrate how to retrieve values one-by-one or by bulk and how to modify data.
source:ย Justin Ellingwood/Digital Ocean
Discover more from TechBooky
Subscribe to get the latest posts sent to your email.