Discussion:
SNMPv3 Help - Problems with user accounts. Trying to snmpwalk
Daniel Stewart
2008-04-02 14:16:53 UTC
Permalink
I have opted to go for Ubuntu in order to try to get this working.

I am at the same stage as before though, i can snmpwalk the firewall using version 1 but with version 3 i still get -
"snmpwalk: No securityName specified"

This is dispite me following the snmpconf command line tutorial and going through the "http://net-snmp.sourceforge.net/docs/README.snmpv3.html" readme.

Something has gone wrong somewhere.

My snmpd.conf file within /usr/local/share/snmp contains the following: (Spam warning)

###########################################################################
#
# snmpd.conf
#
# - created by the snmpconf configuration program
#
##########################################################################
# SECTION: Access Control Setup
#
# This section defines who is allowed to talk to your running
# snmp agent.

# rwuser: a SNMPv3 read-write user
# arguments: user [noauth|auth|priv] [restriction_oid]

rwuser fred auth

# rouser: a SNMPv3 read-only user
# arguments: user [noauth|auth|priv] [restriction_oid]

rouser sally auth

# rocommunity: a SNMPv1/SNMPv2c read-only access community name
# arguments: community [default|hostname|network/bits] [oid]

rocommunity public

# rwcommunity: a SNMPv1/SNMPv2c read-write access community name
# arguments: community [default|hostname|network/bits] [oid]

rwcommunity private 127.0.0.1



###########################################################################
# SECTION: System Information Setup
#
# This section defines some of the information reported in
# the "system" mib group in the mibII tree.

# syslocation: The [typically physical] location of the system.
# Note that setting this value here means that when trying to
# perform an snmp SET operation to the sysLocation.0 variable will make
# the agent return the "notWritable" error code. IE, including
# this token in the snmpd.conf file will disable write access to
# the variable.
# arguments: location_string

syslocation home

# syscontact: The contact information for the administrator
# Note that setting this value here means that when trying to
# perform an snmp SET operation to the sysContact.0 variable will make
# the agent return the "notWritable" error code. IE, including
# this token in the snmpd.conf file will disable write access to
# the variable.
# arguments: contact_string

syscontact 1337



###########################################################################
# SECTION: Trap Destinations
#
# Here we define who the agent will send traps to.

# informsink: A SNMPv2c inform (acknowledged trap) receiver
# arguments: host [community] [portnum]

informsink PIX

# trapcommunity: Default trap sink community to use
# arguments: community-string

trapcommunity .1.3.6.1.4.1.8072

# authtrapenable: Should we send traps when authentication failures occur
# arguments: 1 | 2 (1 = yes, 2 = no)

authtrapenable 1
###########################################################################

Any help on this problem is appreciated - Was up all night trying to send an SNMPv3 packet.

Thanks in advance.

Daniel

________________________________
0000
*First time user question*
I currently have net-snmp-5.4.1-3.win32.exe installed and i am trying to send an SNMP version 3 packet to a firewall for test purposes - by using the snmpwalk command.
snmpwalk version 1 walks work fine - (snmpwalk -c public -v 1 192.168.3.1) and it returns an array of data.
However I am trying to use snmpv3 - when i do "snmpwalk -c public -v 3 192.168.3.1" It returns "snmpwalk: No securityName specified".
I tried putting;
createUser netadmin MD5 "netadminpassword" DES
rouser netadmin
Into the snmp.conf file (C:/usr/etc/snmp/snmp.conf file) but the command line just returns "Unknown Token: CreateUser, Unknown Token:rouser ". I have no snmpd.conf file that i can find and following the initial user setup tutorials i cant seem to begin to get this working.
________________________________
_________________________________________________________________
Win 100’s of Virgin Experience days with BigSnapSearch.com
http://www.bigsnapsearch.com
Dave Shield
2008-04-02 14:36:34 UTC
Permalink
However I am trying to use snmpv3 - when i do
"snmpwalk -c public -v 3 192.168.3.1"
It returns "snmpwalk: No securityName specified".
It is perfectly correct.
You haven't specified a securityName.

You've given a community string, but that's not the same
thing (and will be ignored when using SNMPv3)


Try
snmpwalk -v 3 -u fred -A {fred's passphrase} 192.168.3.1

Dave
Daniel Stewart
2008-04-02 14:49:30 UTC
Permalink
Thanks,

I failed to mention when i try -u {username} i get the following returned:

snmpwalk: Unknown user name

Which makes me think the snmpd.conf is incorrectly configured. ?

Daniel
Post by Dave Shield
However I am trying to use snmpv3 - when i do
"snmpwalk -c public -v 3 192.168.3.1"
It returns "snmpwalk: No securityName specified".
It is perfectly correct.
You haven't specified a securityName.
You've given a community string, but that's not the same
thing (and will be ignored when using SNMPv3)
Try
snmpwalk -v 3 -u fred -A {fred's passphrase} 192.168.3.1
Dave
_________________________________________________________________
Win 100’s of Virgin Experience days with BigSnapSearch.com
http://www.bigsnapsearch.com
Dave Shield
2008-04-02 15:09:56 UTC
Permalink
Post by Daniel Stewart
snmpwalk: Unknown user name
OK - I'll ask the obvious question:
Have you created this user?

How?
What was the exact directive you used?
What file did you put this in?

Dave
Daniel Stewart
2008-04-02 15:29:19 UTC
Permalink
Should probably note this is my first time in attempt to configure and setup this up in order to send an SNMPv3 packet, obvious questions are probably the best ones.


I tried following the "CREATING THE FIRST USER:" within http://net-snmp.sourceforge.net/docs/README.snmpv3.html


$net-snmp-config --create-snmpv3-user -a "my_password" myuser

Gave me -

adding the following line to /var/net-snmp/snmpd.conf:
createUser myuser MD5 "my_password" DES
adding the following line to /usr/local/share/snmp/snmpd.conf:
rwuser myuser
shift: 661: can't shift that many


Things didnt seem to work so i then decided to follow the http://net-snmp.sourceforge.net/tutorial/tutorial-5/demon/snmpd.html#qnd "Basic setup with snmpconf"
setup. Which i then copied the snmpd.conf file as mentioned on the previous emails.

I having big problems in creating any snmpv3 user account successfully..
Post by Dave Shield
Have you created this user?
How?
What was the exact directive you used?
What file did you put this in?
Dave
_________________________________________________________________
Win 100’s of Virgin Experience days with BigSnapSearch.com
http://www.bigsnapsearch.com
Dave Shield
2008-04-02 15:36:37 UTC
Permalink
Post by Daniel Stewart
createUser myuser MD5 "my_password" DES
rwuser myuser
Please check the files mentioned here.
Do these two lines exist in the relevant files?

Dave
Daniel Stewart
2008-04-02 15:58:23 UTC
Permalink
Yes both lines exist in the below mentioned files;

createUser myuser MD5 "my_password" DES (ar/net-snmp/snmpd.conf:)

and

rwuser myuser (/usr/local/share/snmp/snmpd.conf:)


However on the check i get a timeout as shown below;

x:~$ snmpget -v 3 -u myuser -l authNoPriv -a MD5 -A my_password localhost sysUpTime.0

snmpget: Timeout (Sub-id not found: (top) -> sysUpTime)

Daniel


----------------------------------------
Date: Wed, 2 Apr 2008 16:36:37 +0100
Subject: Re: SNMPv3 Help - Problems with user accounts. Trying to snmpwalk
Post by Daniel Stewart
createUser myuser MD5 "my_password" DES
rwuser myuser
Please check the files mentioned here.
Do these two lines exist in the relevant files?
Dave
_________________________________________________________________
Get Hotmail on your mobile. Text MSN to 63463 now!
http://mobile.uk.msn.com/pc/mail.aspx
Dave Shield
2008-04-02 18:48:01 UTC
Permalink
Post by Daniel Stewart
Yes both lines exist in the below mentioned files;
createUser myuser MD5 "my_password" DES (ar/net-snmp/snmpd.conf:)
and
rwuser myuser (/usr/local/share/snmp/snmpd.conf:)
Hmmmm....

Can you try the following:

- shut the agent down
- restart it using
snmpd -f -Le -Dread_config -Dusm
- run the same "snmpget" command

What does the agent display?

Dave
Daniel Stewart
2008-04-02 23:17:42 UTC
Permalink
*Stopped n started the agent using 'sudo service snmpd start/start'



I can the snmpd -f -Le -Dread_config -Dusm, seemed to run fine although the last couple lines are as below -

read_config: config dir: /var/net-snmp
read_config: /var/net-snmp/snmp.conf: No such file or directory
read_config: /var/net-snmp/snmp.local.conf: No such file or directory
Error opening specified endpoint ""
Server Exiting with code 1

------


After the (snmpget -v 3 -u myuser -l authNoPriv -a MD5 -A my_password localhost sysUpTime.0) command i now get;

snmpget: Unknown user name (Sub-id not found: (top) -> sysUpTime)

Daniel


----------------------------------------
Date: Wed, 2 Apr 2008 19:48:01 +0100
Subject: Re: SNMPv3 Help - Problems with user accounts. Trying to snmpwalk
Post by Daniel Stewart
Yes both lines exist in the below mentioned files;
createUser myuser MD5 "my_password" DES (ar/net-snmp/snmpd.conf:)
and
rwuser myuser (/usr/local/share/snmp/snmpd.conf:)
Hmmmm....
- shut the agent down
- restart it using
snmpd -f -Le -Dread_config -Dusm
- run the same "snmpget" command
What does the agent display?
Dave
-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
_______________________________________________
Net-snmp-users mailing list
https://lists.sourceforge.net/lists/listinfo/net-snmp-users
_________________________________________________________________
Welcome to the next generation of Windows Live
http://www.windowslive.co.uk/get-live
Mike Ayers
2008-04-03 00:04:49 UTC
Permalink
Behalf Of Daniel Stewart
Sent: Wednesday, April 02, 2008 4:18 PM
To: Dave Shield
*Stopped n started the agent using 'sudo service snmpd start/start'
I can the snmpd -f -Le -Dread_config -Dusm, seemed to run
fine although the last couple lines are as below -
read_config: config dir: /var/net-snmp
read_config: /var/net-snmp/snmp.conf: No such file or directory
read_config: /var/net-snmp/snmp.local.conf: No such file or directory
Error opening specified endpoint ""
Server Exiting with code 1
Why is it looking for /var/net-snmp/snmp.conf and var/net-snmp/snmp.local.conf? That is not default behavior.
After the (snmpget -v 3 -u myuser -l authNoPriv -a MD5 -A
my_password localhost sysUpTime.0) command i now get;
snmpget: Unknown user name (Sub-id not found: (top) -> sysUpTime)
Post by Daniel Stewart
createUser myuser MD5 "my_password" DES (ar/net-snmp/snmpd.conf:)
^^^
|||
Huh?

Double check on the path, please. If you're putting createuser and rwuser statements in /usr/local/share yoou don't get users out of the deal. They must be in /var/net-snmp/snmpd.conf .


Thanks,

Mike
Dave Shield
2008-04-03 08:12:24 UTC
Permalink
Post by Mike Ayers
Post by Daniel Stewart
read_config: config dir: /var/net-snmp
read_config: /var/net-snmp/snmp.conf: No such file or directory
read_config: /var/net-snmp/snmp.local.conf: No such file or directory
Error opening specified endpoint ""
Server Exiting with code 1
Why is it looking for /var/net-snmp/snmp.conf and
var/net-snmp/snmp.local.conf? That is not default behavior.
Yes it is.
The agent will look for the files:

snmpd.conf
snmpd.local.conf
and
snmp.conf
snmp.local.conf

in *each* of the directories on the config search path.
Most of these files won't exist, so it doesn't complain about
any missing files. But the debug output that I had Daniel
enable will chatter away about what it's doing - hence the
messages above.
Post by Mike Ayers
If you're putting createuser and rwuser statements in /usr/local/share
you don't get users out of the deal.
Yes you do.
Post by Mike Ayers
They must be in /var/net-snmp/snmpd.conf .
The *recommendation* is that the 'createUser' line be in /var/net-snmp
(so that it can be replaced by an equivalent 'usmUser' line when the
persistent file is re-written). But it works equally well with 'createUser'
in one of the other config files - I use that all the time for agent
development and testing.

The 'rwuser' statement should *not* be in /var/net/snmpd.conf.
The ONLY directives that should be explicitly put in this file are
'createUser' settings. Otherwise, this file should not be touched.

Dave
Dave Shield
2008-04-03 08:15:26 UTC
Permalink
Post by Daniel Stewart
*Stopped n started the agent using 'sudo service snmpd start/start'
No.
*Stop* the agent, but don't restart it.
Post by Daniel Stewart
I can the snmpd -f -Le -Dread_config -Dusm, seemed to run fine
although the last couple lines are as below -
Error opening specified endpoint ""
Server Exiting with code 1
That's because you've already got an agent running
(sudo service snmpd start)

You need:
sudo service snmpd stop
sudo snmpd -f -Le -Dread_config -Dusm


Dave
Daniel Stewart
2008-04-06 12:11:05 UTC
Permalink
Thanks for the replies -

I managed to get the below snmpd -f .. cmd working - it outputs the following:

read_config: storing: usmUser 1 3 0x80001f88808a8d595a63bdf84700000000 0x6d797573657200 0x6d797573657200 NULL .1.3.6.1.6.3.10.1.1.2 0x8e08e613d2c40de5756a0c71653e38dc .1.3.6.1.6.3.10.1.2.2 0x8e08e613d2c40de5756a0c71653e38dc ""
read_config: storing: setserialno 651478771
read_config: storing: ##############################################################
read_config: storing: #
# snmpNotifyFilterTable persistent data
#
read_config: storing: ##############################################################
read_config: storing:

read_config: storing: ##############################################################
read_config: storing: #
# ifXTable persistent data
#
read_config: storing: ifXTable .1 14:0 18:0x $
read_config: storing: ifXTable .2 14:0 18:0x $
read_config: storing: ifXTable .3 14:0 18:0x $
read_config: storing: ##############################################################
read_config: storing:

read_config: storing: engineBoots 1
read_config: storing: oldEngineID 0x80001f88808a8d595a63bdf84700000000
NET-SNMP version 5.4.1
Post by Dave Shield
No.
*Stop* the agent, but don't restart it.
Post by Daniel Stewart
I can the snmpd -f -Le -Dread_config -Dusm, seemed to run fine
although the last couple lines are as below -
Error opening specified endpoint ""
Server Exiting with code 1
That's because you've already got an agent running
(sudo service snmpd start)
sudo service snmpd stop
sudo snmpd -f -Le -Dread_config -Dusm
Dave
_________________________________________________________________
Amazing prizes every hour with Live Search Big Snap
http://www.bigsnapsearch.com
Daniel Stewart
2008-04-06 12:13:59 UTC
Permalink
Apologies,


The command then continues to output the following line:

"error getting netmask for interface 1"

Nothing else.

Daniel

_________________________________________________________________
The next generation of Windows Live is here
http://www.windowslive.co.uk/get-live
Daniel Stewart
2008-04-06 12:19:45 UTC
Permalink
However another attempt at the -f -Le -Dread_config -Dusm command shows the below output - completely different to my first, though i changed nothing.


***@Blackbox:~$ sudo service snmpd stop
[sudo] password for dano:
Stopping network management services: snmpd snmptrapd.
***@Blackbox:~$ sudo snmpd -f -Le -Dread_config -Dusm
registered debug token read_config, 1
registered debug token usm, 1
netsnmp_assert !"registration != duplicate" failed agent_registry.c:535 netsnmp_subtree_load()
netsnmp_assert !"registration != duplicate" failed agent_registry.c:535 netsnmp_subtree_load()
netsnmp_assert !"registration != duplicate" failed agent_registry.c:535 netsnmp_subtree_load()
error getting netmask for interface 1
read_config: reading premib configuration tokens
read_config: config path used for snmpd:/usr/local/etc/snmp:/usr/local/share/snmp:/usr/local/lib/snmp:/home/dano/.snmp (persistent path:/var/net-snmp)
read_config: config dir: /usr/local/etc/snmp
read_config: Directory not present: /usr/local/etc/snmp
read_config: config dir: /usr/local/share/snmp
read_config: Reading configuration /usr/local/share/snmp/snmpd.conf
read_config: /usr/local/share/snmp/snmpd.conf:1 examining: rwuser myuser
read_config: /usr/local/share/snmp/snmpd.local.conf: No such file or directory
read_config: config dir: /usr/local/lib/snmp
read_config: Directory not present: /usr/local/lib/snmp
read_config: config dir: /home/dano/.snmp
read_config: Directory not present: /home/dano/.snmp
read_config: config path used for snmpd:/var/net-snmp (persistent path:/var/net-snmp)
read_config: config dir: /var/net-snmp
read_config: Reading configuration /var/net-snmp/snmpd.conf
read_config: /var/net-snmp/snmpd.conf:32 examining: usmUser 1 3 0x80001f88808a8d595a63bdf84700000000 0x6d797573657200 0x6d797573657200 NULL .1.3.6.1.6.3.10.1.1.2 0x8e08e613d2c40de5756a0c71653e38dc .1.3.6.1.6.3.10.1.2.2 0x8e08e613d2c40de5756a0c71653e38dc ""
read_config: /var/net-snmp/snmpd.conf:33 examining: setserialno 651478771
read_config: /var/net-snmp/snmpd.conf:45 examining: ifXTable .1 14:0 18:0x $
read_config: /var/net-snmp/snmpd.conf:46 examining: ifXTable .2 14:0 18:0x $
read_config: /var/net-snmp/snmpd.conf:47 examining: ifXTable .3 14:0 18:0x $
read_config: /var/net-snmp/snmpd.conf:51 examining: engineBoots 1
read_config: /var/net-snmp/snmpd.conf:52 examining: oldEngineID 0x80001f88808a8d595a63bdf84700000000
read_config: Found a parser. Calling it: oldEngineID / 0x80001f88808a8d595a63bdf84700000000
read_config: /var/net-snmp/snmpd.local.conf: No such file or directory
read_config: config path used for agentx:/usr/local/etc/snmp:/usr/local/share/snmp:/usr/local/lib/snmp:/home/dano/.snmp (persistent path:/var/net-snmp)
read_config: config dir: /usr/local/etc/snmp
read_config: Directory not present: /usr/local/etc/snmp
read_config: config dir: /usr/local/share/snmp
read_config: /usr/local/share/snmp/agentx.conf: No such file or directory
read_config: /usr/local/share/snmp/agentx.local.conf: No such file or directory
read_config: config dir: /usr/local/lib/snmp
read_config: Directory not present: /usr/local/lib/snmp
read_config: config dir: /home/dano/.snmp
read_config: Directory not present: /home/dano/.snmp
read_config: config path used for agentx:/var/net-snmp (persistent path:/var/net-snmp)
read_config: config dir: /var/net-snmp
read_config: /var/net-snmp/agentx.conf: No such file or directory
read_config: /var/net-snmp/agentx.local.conf: No such file or directory
read_config: config path used for snmp:/usr/local/etc/snmp:/usr/local/share/snmp:/usr/local/lib/snmp:/home/dano/.snmp (persistent path:/var/net-snmp)
read_config: config dir: /usr/local/etc/snmp
read_config: Directory not present: /usr/local/etc/snmp
read_config: config dir: /usr/local/share/snmp
read_config: /usr/local/share/snmp/snmp.conf: No such file or directory
read_config: /usr/local/share/snmp/snmp.local.conf: No such file or directory
read_config: config dir: /usr/local/lib/snmp
read_config: Directory not present: /usr/local/lib/snmp
read_config: config dir: /home/dano/.snmp
read_config: Directory not present: /home/dano/.snmp
read_config: config path used for snmp:/var/net-snmp (persistent path:/var/net-snmp)
read_config: config dir: /var/net-snmp
read_config: /var/net-snmp/snmp.conf: No such file or directory
read_config: /var/net-snmp/snmp.local.conf: No such file or directory
read_config: reading normal configuration tokens
read_config: config path used for snmpd:/usr/local/etc/snmp:/usr/local/share/snmp:/usr/local/lib/snmp:/home/dano/.snmp (persistent path:/var/net-snmp)
read_config: config dir: /usr/local/etc/snmp
read_config: Directory not present: /usr/local/etc/snmp
read_config: config dir: /usr/local/share/snmp
read_config: Reading configuration /usr/local/share/snmp/snmpd.conf
read_config: /usr/local/share/snmp/snmpd.conf:1 examining: rwuser myuser
read_config: Found a parser. Calling it: rwuser / myuser
read_config: /usr/local/share/snmp/snmpd.local.conf: No such file or directory
read_config: config dir: /usr/local/lib/snmp
read_config: Directory not present: /usr/local/lib/snmp
read_config: config dir: /home/dano/.snmp
read_config: Directory not present: /home/dano/.snmp
read_config: config path used for snmpd:/var/net-snmp (persistent path:/var/net-snmp)
read_config: config dir: /var/net-snmp
read_config: Reading configuration /var/net-snmp/snmpd.conf
read_config: /var/net-snmp/snmpd.conf:32 examining: usmUser 1 3 0x80001f88808a8d595a63bdf84700000000 0x6d797573657200 0x6d797573657200 NULL .1.3.6.1.6.3.10.1.1.2 0x8e08e613d2c40de5756a0c71653e38dc .1.3.6.1.6.3.10.1.2.2 0x8e08e613d2c40de5756a0c71653e38dc ""
read_config: Found a parser. Calling it: usmUser / 1 3 0x80001f88808a8d595a63bdf84700000000 0x6d797573657200 0x6d797573657200 NULL .1.3.6.1.6.3.10.1.1.2 0x8e08e613d2c40de5756a0c71653e38dc .1.3.6.1.6.3.10.1.2.2 0x8e08e613d2c40de5756a0c71653e38dc ""
read_config: /var/net-snmp/snmpd.conf:33 examining: setserialno 651478771
read_config: Found a parser. Calling it: setserialno / 651478771
read_config: /var/net-snmp/snmpd.conf:45 examining: ifXTable .1 14:0 18:0x $
read_config: Found a parser. Calling it: ifXTable / .1 14:0 18:0x $
read_config: /var/net-snmp/snmpd.conf:46 examining: ifXTable .2 14:0 18:0x $
read_config: Found a parser. Calling it: ifXTable / .2 14:0 18:0x $
read_config: /var/net-snmp/snmpd.conf:47 examining: ifXTable .3 14:0 18:0x $
read_config: Found a parser. Calling it: ifXTable / .3 14:0 18:0x $
read_config: /var/net-snmp/snmpd.conf:51 examining: engineBoots 1
read_config: Found a parser. Calling it: engineBoots / 1
read_config: /var/net-snmp/snmpd.conf:52 examining: oldEngineID 0x80001f88808a8d595a63bdf84700000000
read_config: /var/net-snmp/snmpd.local.conf: No such file or directory
read_config: config path used for agentx:/usr/local/etc/snmp:/usr/local/share/snmp:/usr/local/lib/snmp:/home/dano/.snmp (persistent path:/var/net-snmp)
read_config: config dir: /usr/local/etc/snmp
read_config: Directory not present: /usr/local/etc/snmp
read_config: config dir: /usr/local/share/snmp
read_config: /usr/local/share/snmp/agentx.conf: No such file or directory
read_config: /usr/local/share/snmp/agentx.local.conf: No such file or directory
read_config: config dir: /usr/local/lib/snmp
read_config: Directory not present: /usr/local/lib/snmp
read_config: config dir: /home/dano/.snmp
read_config: Directory not present: /home/dano/.snmp
read_config: config path used for agentx:/var/net-snmp (persistent path:/var/net-snmp)
read_config: config dir: /var/net-snmp
read_config: /var/net-snmp/agentx.conf: No such file or directory
read_config: /var/net-snmp/agentx.local.conf: No such file or directory
read_config: config path used for snmp:/usr/local/etc/snmp:/usr/local/share/snmp:/usr/local/lib/snmp:/home/dano/.snmp (persistent path:/var/net-snmp)
read_config: config dir: /usr/local/etc/snmp
read_config: Directory not present: /usr/local/etc/snmp
read_config: config dir: /usr/local/share/snmp
read_config: /usr/local/share/snmp/snmp.conf: No such file or directory
read_config: /usr/local/share/snmp/snmp.local.conf: No such file or directory
read_config: config dir: /usr/local/lib/snmp
read_config: Directory not present: /usr/local/lib/snmp
read_config: config dir: /home/dano/.snmp
read_config: Directory not present: /home/dano/.snmp
read_config: config path used for snmp:/var/net-snmp (persistent path:/var/net-snmp)
read_config: config dir: /var/net-snmp
read_config: /var/net-snmp/snmp.conf: No such file or directory
read_config: /var/net-snmp/snmp.local.conf: No such file or directory
Error opening specified endpoint ""
Server Exiting with code 1

-------------
_________________________________________________________________
The next generation of Windows Live is here
http://www.windowslive.co.uk/get-live

_________________________________________________________________
The next generation of Windows Live is here
http://www.windowslive.co.uk/get-live

Loading...