Hi.......i,ve been using Cacti for a while now and really love it.......forget cricket or mrtg.
But problem is now, that i can't add anymore snmp interfaces.....
Usually bi snmp interfaces i add a new one with the ip address and snmp read community. I get all the interfaces of the device and select the ones i want to monitor.
But now everytime i do it.....the interface search comes up empty. It scans the device but doesn't return any interfaces....no matter what ip address is use of which device.....
Can anyone help me out here???....i need to add another 150 devices or so. Or could this be a mysql problem??
not reading snmp interface anymore.....
Moderators: Developers, Moderators
If we are talking of cacti limits the answer is it depends. It depends on how many devices you have defined, how many interfaces each of devices include and how many times you pressed "refresh interfaces" button. Each interface has its own ID number in mysql table. This number is growing with every new interface. Even if you delete some devices lower numbers are never re-used. Finaly when you make "refresh interfaces" this deletes existing interfaces from DB and adds a new ones (with higher ID number). Cacti design assumes that highest ID number is 32767. You can check your maximum ID by mysql comand:
- bulek
Code: Select all
select max(id) from snmp_hosts_interfaces;
-
- Posts: 22
- Joined: Fri Jan 17, 2003 1:24 am
You may try to change ID field definition like this:
- bulek
This will give you much more space - over 2 bln possible interfaces. I don't take any responsibility if this crashes your table structure ... you have 99% chance that it will work.alter table snmp_hosts_interfaces modify id int not null auto_increment;
- bulek
-
- Posts: 22
- Joined: Fri Jan 17, 2003 1:24 am
-
- Posts: 22
- Joined: Fri Jan 17, 2003 1:24 am
Who is online
Users browsing this forum: No registered users and 4 guests