views:

357

answers:

4

Hi Folks,

We have network management system under linux, C/C++, perl and we need to test performance of this system. Is there a tool or way that would allow us to emulate 50 000 SNMP devices?

I don't know what more to say here... Please let me know if I should provide more information.

Any idea is appreciated.

Thank you Bogdan

+1  A: 

There are a few tools out there that will let you do that, however what I've seen is usually commercial software.

A: 

If the devices are sending traps, you could use Net-SNMP's snmptrap to simulate the effects of that many traps being sent.

DNS
+2  A: 

You can try Raddle - it is open-source, written in Perl and based on honeyd, which should be able to emulate up to 65536 hosts.

L.R.
+1  A: 

Hi Gentlemen,

Thank you for your answers. Here's the way we solve this problem right now:

  1. We have a linux VM up with 1 interface (eth0).
  2. We add 50'000 virtual interfaces (eth0:1, eth0:2 etc).
  3. An SNMP daemon is up and replies on requests through all the ip addresses.

This way we have 50K IP adresses in the network that reply to SNMP requests.

Though, I'm investigating Raddle. Maybe if it suits we'll switch to this solution.

Thanks, Bogdan

Bogdan
I have recently tried this approach, but it has a drawback: the SNMP agent (net-snmp) running on this machine provides information about all the virtual interfaces (in mib-2 ifTable, ipAddrTable, ipRouteTable,...), which can have some serious effects on the way the NMS handles these virtual hosts.So this approach is OK, as long as you do not use the above mentioned information to do some actions in NMS.
L.R.