2012-04-25 Dario Rodriguez <dario.rodriguez@artica.es>
* pandoradb_data.sql, pandoradb.data.postgreSQL.sql, pandoradb.data.oracle.sql: Added default value 127.0.0.1 to IP ACL API list MERGED FROM 4.0.2 git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6145 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
f29e822c61
commit
c4da86f20b
|
@ -1,3 +1,11 @@
|
|||
2012-04-25 Dario Rodriguez <dario.rodriguez@artica.es>
|
||||
|
||||
* pandoradb_data.sql,
|
||||
pandoradb.data.postgreSQL.sql,
|
||||
pandoradb.data.oracle.sql: Added default value 127.0.0.1 to IP ACL API list
|
||||
|
||||
MERGED FROM 4.0.2
|
||||
|
||||
2012-04-25 Vanessa Gil <vanessa.gil@artica.es>
|
||||
|
||||
* operation/agentes/exportdata.php: Fixed several bugs.
|
||||
|
|
|
@ -89,6 +89,7 @@ INSERT INTO tconfig (token, value) VALUES ('netflow_path', '/var/spool/pandora/d
|
|||
INSERT INTO tconfig (token, value) VALUES ('netflow_interval', '300');
|
||||
INSERT INTO tconfig (token, value) VALUES ('netflow_daemon', '/usr/bin/nfcapd');
|
||||
INSERT INTO tconfig (token, value) VALUES ('event_fields', 'evento,id_agente,estado,timestamp');
|
||||
INSERT INTO tconfig (token, value) VALUES ('list_ACL_IPs_for_API_0', '127.0.0.1');
|
||||
COMMIT;
|
||||
END;;
|
||||
|
||||
|
|
|
@ -85,7 +85,8 @@ INSERT INTO "tconfig" ("token", "value") VALUES
|
|||
('netflow_path', '/var/spool/pandora/data_in/netflow'),
|
||||
('netflow_interval', '300'),
|
||||
('netflow_daemon', '/usr/bin/nfcapd'),
|
||||
('event_fields', 'evento,id_agente,estado,timestamp');
|
||||
('event_fields', 'evento,id_agente,estado,timestamp'),
|
||||
('list_ACL_IPs_for_API_0', '127.0.0.1');
|
||||
COMMIT WORK;
|
||||
|
||||
|
||||
|
|
|
@ -84,8 +84,8 @@ INSERT INTO `tconfig` (`token`, `value`) VALUES
|
|||
('netflow_path', '/var/spool/pandora/data_in/netflow'),
|
||||
('netflow_interval', '300'),
|
||||
('netflow_daemon', '/usr/bin/nfcapd'),
|
||||
('event_fields', 'evento,id_agente,estado,timestamp');
|
||||
|
||||
('event_fields', 'evento,id_agente,estado,timestamp'),
|
||||
('list_ACL_IPs_for_API_0', '127.0.0.1');
|
||||
|
||||
UNLOCK TABLES;
|
||||
|
||||
|
|
Loading…
Reference in New Issue