Commit | Line | Data |
---|---|---|
6c9e7d36 VK |
1 | /* |
2 | ** Default configuration parameters | |
b51c8c91 AK |
3 | ** |
4 | ** ex: syntax=sql | |
6c9e7d36 | 5 | */ |
c1142e46 | 6 | |
333ece94 VK |
7 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) |
8 | VALUES ('DBFormatVersion',DB_FORMAT_VERSION,0,1); | |
70573ffe VK |
9 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) |
10 | VALUES ('DBSyntax',DB_SYNTAX,0,1); | |
333ece94 VK |
11 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) |
12 | VALUES ('SyncInterval','60',1,1); | |
13 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) | |
14 | VALUES ('NewNodePollingInterval','60',1,1); | |
15 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) | |
16 | VALUES ('DiscoveryPollingInterval','900',1,1); | |
17 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) | |
18 | VALUES ('StatusPollingInterval','30',1,1); | |
19 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) | |
20 | VALUES ('ConfigurationPollingInterval','3600',1,1); | |
21 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) | |
22 | VALUES ('ResolveNodeNames','0',1,0); | |
23 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) | |
24 | VALUES ('NumberOfEventProcessors','1',1,1); | |
25 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) | |
26 | VALUES ('ClientListenerPort','4701',1,1); | |
27 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) | |
28 | VALUES ('NumberOfDataCollectors','10',1,1); | |
29 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) | |
30 | VALUES ('IDataTableCreationCommand','CREATE TABLE idata_%d (item_id integer not null,idata_timestamp integer,idata_value varchar(255))',0,1); | |
31 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) | |
32 | VALUES ('RunNetworkDiscovery','0',1,1); | |
33 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) | |
34 | VALUES ('EnableAdminInterface','1',1,1); | |
35 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) | |
36 | VALUES ('EnableAccessControl','1',1,0); | |
37 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) | |
38 | VALUES ('EnableEventsAccessControl','0',1,0); | |
39 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) | |
40 | VALUES ('EventLogRetentionTime','5184000',1,0); // Default retention time is 60 days == 5184000 seconds | |
41 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) | |
42 | VALUES ('HouseKeepingInterval','3600',1,1); | |
43 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) | |
44 | VALUES ('DeleteEmptySubnets','1',1,1); | |
45 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) | |
46 | VALUES ('EnableSNMPTraps','1',1,1); | |
7cbe553e VK |
47 | INSERT INTO config (var_name,var_value,is_visible,need_server_restart) |
48 | VALUES ('SMSDriver','<none>',1,1); | |
9b057805 VK |
49 | |
50 | ||
6c9e7d36 VK |
51 | /* |
52 | ** Default users | |
53 | */ | |
9b057805 | 54 | |
00c79c7b | 55 | INSERT INTO users (id,name,password,access,flags,full_name,description) |
057f9dfb VK |
56 | VALUES (0,'admin', |
57 | '3A445C0072CD69D9030CC6644020E5C4576051B1', // Default password: netxms | |
00c79c7b | 58 | 65535,8,'','Built-in system administrator account' |
057f9dfb | 59 | ); |
00c79c7b | 60 | INSERT INTO users (id,name,password,access,flags,full_name,description) |
057f9dfb | 61 | VALUES (1,'guest','DA39A3EE5E6B4B0D3255BFEF95601890AFD80709', // Default password is empty |
00c79c7b | 62 | 0,0,'','Default guest user' |
057f9dfb VK |
63 | ); |
64 | ||
65 | ||
66 | /* | |
67 | ** Special "Everyone" user group | |
68 | */ | |
69 | ||
00c79c7b VK |
70 | INSERT INTO user_groups (id,name,access,flags,description) |
71 | VALUES (-2147483648, 'Everyone', 16, 0, 'Built-in everyone group'); | |
b6a77d6d VK |
72 | |
73 | ||
74 | /* | |
75 | ** Component lock table | |
76 | */ | |
77 | ||
78 | INSERT INTO locks (component_id,component_name,lock_status,owner_info) | |
3c468b80 | 79 | VALUES (CID_NETXMS_INSTANCE,'NetXMS Server Instance',-1,''); |
b6a77d6d | 80 | INSERT INTO locks (component_id,component_name,lock_status,owner_info) |
3c468b80 | 81 | VALUES (CID_EPP,'Event Processing Policy',-1,''); |
b6a77d6d | 82 | INSERT INTO locks (component_id,component_name,lock_status,owner_info) |
1b3e2cfe | 83 | VALUES (CID_USER_DB,'User Database',-1,''); |
3c468b80 | 84 | INSERT INTO locks (component_id,component_name,lock_status,owner_info) |
9fd5ec9e | 85 | VALUES (CID_EVENT_DB,'Event Configuration Database',-1,''); |
c9363772 VK |
86 | INSERT INTO locks (component_id,component_name,lock_status,owner_info) |
87 | VALUES (CID_ACTION_DB,'Action Configuration Database',-1,''); | |
3c468b80 VK |
88 | |
89 | ||
90 | /* | |
91 | ** Default event groups | |
92 | */ | |
93 | ||
c6576857 VK |
94 | #define ID_GROUP_1 -2147483647 |
95 | #define ID_GROUP_2 -2147483646 | |
3c468b80 | 96 | |
feea53fd | 97 | INSERT INTO event_groups (id,name,description) |
3c468b80 | 98 | VALUES (ID_GROUP_1,'NodeStatus','All events reporting about node status change'); |
feea53fd | 99 | INSERT INTO event_groups (id,name,description) |
3c468b80 VK |
100 | VALUES (ID_GROUP_2,'NewObjects','All events reporting about new objects creation'); |
101 | ||
feea53fd VK |
102 | INSERT INTO event_group_members (group_id,event_id) VALUES (ID_GROUP_1,EVENT_NODE_NORMAL); |
103 | INSERT INTO event_group_members (group_id,event_id) VALUES (ID_GROUP_1,EVENT_NODE_MINOR); | |
104 | INSERT INTO event_group_members (group_id,event_id) VALUES (ID_GROUP_1,EVENT_NODE_WARNING); | |
105 | INSERT INTO event_group_members (group_id,event_id) VALUES (ID_GROUP_1,EVENT_NODE_MAJOR); | |
106 | INSERT INTO event_group_members (group_id,event_id) VALUES (ID_GROUP_1,EVENT_NODE_CRITICAL); | |
107 | INSERT INTO event_group_members (group_id,event_id) VALUES (ID_GROUP_1,EVENT_NODE_UNKNOWN); | |
108 | INSERT INTO event_group_members (group_id,event_id) VALUES (ID_GROUP_1,EVENT_NODE_UNMANAGED); | |
3c468b80 | 109 | |
feea53fd VK |
110 | INSERT INTO event_group_members (group_id,event_id) VALUES (ID_GROUP_2,EVENT_NODE_ADDED); |
111 | INSERT INTO event_group_members (group_id,event_id) VALUES (ID_GROUP_2,EVENT_SUBNET_ADDED); | |
112 | INSERT INTO event_group_members (group_id,event_id) VALUES (ID_GROUP_2,EVENT_INTERFACE_ADDED); | |
ef44d5ea VK |
113 | |
114 | ||
115 | /* | |
116 | ** Default container categories | |
117 | */ | |
118 | ||
119 | INSERT INTO container_categories (category,name,image_id,description) | |
120 | VALUES (1,'Group',0,'Generic object group'); | |
121 | INSERT INTO container_categories (category,name,image_id,description) | |
122 | VALUES (2,'Location',0,'Geografic location'); | |
123 | INSERT INTO container_categories (category,name,image_id,description) | |
124 | VALUES (3,'Service',0,'Logical service'); | |
5e918a37 VK |
125 | |
126 | ||
127 | /* | |
128 | ** SNMP OID to node type mappings | |
129 | */ | |
130 | ||
131 | INSERT INTO oid_to_type (pair_id,snmp_oid,node_type,node_flags) | |
132 | VALUES (0,'.1.3.6.1.4.1.2272.*',NODE_TYPE_NORTEL_ACCELAR,0); |