1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
|
--
-- PostgreSQL database dump
--
-- Dumped from database version 9.6.11
-- Dumped by pg_dump version 9.6.11
SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SELECT pg_catalog.set_config('search_path', '', false);
SET check_function_bodies = false;
SET client_min_messages = warning;
SET row_security = off;
--
-- Name: plpgsql; Type: EXTENSION; Schema: -; Owner:
--
CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog;
--
-- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner:
--
COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language';
--
-- Name: comment_state; Type: TYPE; Schema: public; Owner: nms
--
CREATE TYPE public.comment_state AS ENUM (
'active',
'inactive',
'persist',
'delete'
);
ALTER TYPE public.comment_state OWNER TO nms;
SET default_tablespace = '';
SET default_with_oids = false;
--
-- Name: config; Type: TABLE; Schema: public; Owner: nms
--
CREATE TABLE public.config (
id integer NOT NULL,
publicvhost character varying,
shortname character varying,
data jsonb
);
ALTER TABLE public.config OWNER TO nms;
--
-- Name: config_id_seq; Type: SEQUENCE; Schema: public; Owner: nms
--
CREATE SEQUENCE public.config_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.config_id_seq OWNER TO nms;
--
-- Name: config_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nms
--
ALTER SEQUENCE public.config_id_seq OWNED BY public.config.id;
--
-- Name: dhcp; Type: TABLE; Schema: public; Owner: nms
--
CREATE TABLE public.dhcp (
network integer,
"time" timestamp with time zone,
mac macaddr,
ip inet,
dhcp_server integer
);
ALTER TABLE public.dhcp OWNER TO nms;
--
-- Name: linknet_ping; Type: TABLE; Schema: public; Owner: nms
--
CREATE TABLE public.linknet_ping (
linknet integer NOT NULL,
"time" timestamp with time zone DEFAULT now() NOT NULL,
latency1_ms double precision,
latency2_ms double precision
);
ALTER TABLE public.linknet_ping OWNER TO nms;
--
-- Name: linknets; Type: TABLE; Schema: public; Owner: nms
--
CREATE TABLE public.linknets (
linknet integer NOT NULL,
switch1 integer NOT NULL,
addr1 inet,
switch2 integer NOT NULL,
addr2 inet,
port1 character varying(10),
port2 character varying(10)
);
ALTER TABLE public.linknets OWNER TO nms;
--
-- Name: linknets_linknet_seq; Type: SEQUENCE; Schema: public; Owner: nms
--
CREATE SEQUENCE public.linknets_linknet_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.linknets_linknet_seq OWNER TO nms;
--
-- Name: linknets_linknet_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nms
--
ALTER SEQUENCE public.linknets_linknet_seq OWNED BY public.linknets.linknet;
--
-- Name: metrics; Type: TABLE; Schema: public; Owner: nms
--
CREATE TABLE public.metrics (
"time" timestamp with time zone DEFAULT now(),
src text,
metadata jsonb,
data jsonb
);
ALTER TABLE public.metrics OWNER TO nms;
--
-- Name: networks; Type: TABLE; Schema: public; Owner: nms
--
CREATE TABLE public.networks (
name character varying NOT NULL,
subnet4 cidr,
subnet6 cidr,
gw4 inet,
gw6 inet,
vlan integer,
tags jsonb DEFAULT '[]'::jsonb,
network integer NOT NULL,
router integer
);
ALTER TABLE public.networks OWNER TO nms;
--
-- Name: networks_network_seq; Type: SEQUENCE; Schema: public; Owner: nms
--
CREATE SEQUENCE public.networks_network_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.networks_network_seq OWNER TO nms;
--
-- Name: networks_networks_seq; Type: SEQUENCE; Schema: public; Owner: nms
--
CREATE SEQUENCE public.networks_networks_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.networks_networks_seq OWNER TO nms;
--
-- Name: networks_networks_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nms
--
ALTER SEQUENCE public.networks_networks_seq OWNED BY public.networks.network;
--
-- Name: oplog; Type: TABLE; Schema: public; Owner: nms
--
CREATE TABLE public.oplog (
id integer NOT NULL,
"time" timestamp with time zone DEFAULT now(),
systems character varying,
username character varying,
log text
);
ALTER TABLE public.oplog OWNER TO nms;
--
-- Name: oplog_id_seq; Type: SEQUENCE; Schema: public; Owner: nms
--
CREATE SEQUENCE public.oplog_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.oplog_id_seq OWNER TO nms;
--
-- Name: oplog_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nms
--
ALTER SEQUENCE public.oplog_id_seq OWNED BY public.oplog.id;
--
-- Name: ping; Type: TABLE; Schema: public; Owner: nms
--
CREATE TABLE public.ping (
switch integer NOT NULL,
"time" timestamp with time zone DEFAULT now() NOT NULL,
latency_ms double precision
);
ALTER TABLE public.ping OWNER TO nms;
--
-- Name: ping_secondary_ip; Type: TABLE; Schema: public; Owner: nms
--
CREATE TABLE public.ping_secondary_ip (
switch integer NOT NULL,
"time" timestamp with time zone DEFAULT now() NOT NULL,
latency_ms double precision
);
ALTER TABLE public.ping_secondary_ip OWNER TO nms;
--
-- Name: seen_mac; Type: TABLE; Schema: public; Owner: nms
--
CREATE TABLE public.seen_mac (
mac macaddr NOT NULL,
address inet NOT NULL,
seen timestamp with time zone DEFAULT now() NOT NULL
);
ALTER TABLE public.seen_mac OWNER TO nms;
--
-- Name: snmp; Type: TABLE; Schema: public; Owner: nms
--
CREATE TABLE public.snmp (
"time" timestamp with time zone DEFAULT now() NOT NULL,
switch integer NOT NULL,
data jsonb,
id integer NOT NULL
);
ALTER TABLE public.snmp OWNER TO nms;
--
-- Name: snmp_id_seq; Type: SEQUENCE; Schema: public; Owner: nms
--
CREATE SEQUENCE public.snmp_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.snmp_id_seq OWNER TO nms;
--
-- Name: snmp_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nms
--
ALTER SEQUENCE public.snmp_id_seq OWNED BY public.snmp.id;
--
-- Name: switches; Type: TABLE; Schema: public; Owner: nms
--
CREATE TABLE public.switches (
switch integer DEFAULT nextval(('"switches_switch_seq"'::text)::regclass) NOT NULL,
mgmt_v4_addr inet,
sysname character varying NOT NULL,
last_updated timestamp with time zone,
locked boolean DEFAULT false NOT NULL,
poll_frequency interval DEFAULT '00:01:00'::interval NOT NULL,
community character varying DEFAULT 'IskremTilMiddag'::character varying NOT NULL,
mgmt_v6_addr inet,
placement box,
distro_name character varying,
distro_phy_port character varying(100),
tags jsonb DEFAULT '[]'::jsonb,
deleted boolean DEFAULT false,
mgmt_vlan character varying,
traffic_vlan character varying
);
ALTER TABLE public.switches OWNER TO nms;
--
-- Name: switches_switch_seq; Type: SEQUENCE; Schema: public; Owner: nms
--
CREATE SEQUENCE public.switches_switch_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.switches_switch_seq OWNER TO nms;
--
-- Name: config id; Type: DEFAULT; Schema: public; Owner: nms
--
ALTER TABLE ONLY public.config ALTER COLUMN id SET DEFAULT nextval('public.config_id_seq'::regclass);
--
-- Name: linknets linknet; Type: DEFAULT; Schema: public; Owner: nms
--
ALTER TABLE ONLY public.linknets ALTER COLUMN linknet SET DEFAULT nextval('public.linknets_linknet_seq'::regclass);
--
-- Name: networks network; Type: DEFAULT; Schema: public; Owner: nms
--
ALTER TABLE ONLY public.networks ALTER COLUMN network SET DEFAULT nextval('public.networks_networks_seq'::regclass);
--
-- Name: oplog id; Type: DEFAULT; Schema: public; Owner: nms
--
ALTER TABLE ONLY public.oplog ALTER COLUMN id SET DEFAULT nextval('public.oplog_id_seq'::regclass);
--
-- Name: snmp id; Type: DEFAULT; Schema: public; Owner: nms
--
ALTER TABLE ONLY public.snmp ALTER COLUMN id SET DEFAULT nextval('public.snmp_id_seq'::regclass);
--
-- Name: seen_mac seen_mac_pkey; Type: CONSTRAINT; Schema: public; Owner: nms
--
ALTER TABLE ONLY public.seen_mac
ADD CONSTRAINT seen_mac_pkey PRIMARY KEY (mac, address, seen);
--
-- Name: switches switches_pkey; Type: CONSTRAINT; Schema: public; Owner: nms
--
ALTER TABLE ONLY public.switches
ADD CONSTRAINT switches_pkey PRIMARY KEY (switch);
--
-- Name: switches switches_sysname_key; Type: CONSTRAINT; Schema: public; Owner: nms
--
ALTER TABLE ONLY public.switches
ADD CONSTRAINT switches_sysname_key UNIQUE (sysname);
--
-- Name: switches switches_sysname_key1; Type: CONSTRAINT; Schema: public; Owner: nms
--
ALTER TABLE ONLY public.switches
ADD CONSTRAINT switches_sysname_key1 UNIQUE (sysname);
--
-- Name: dhcp_ip; Type: INDEX; Schema: public; Owner: nms
--
CREATE INDEX dhcp_ip ON public.dhcp USING btree (ip);
--
-- Name: dhcp_mac; Type: INDEX; Schema: public; Owner: nms
--
CREATE INDEX dhcp_mac ON public.dhcp USING btree (mac);
--
-- Name: dhcp_network; Type: INDEX; Schema: public; Owner: nms
--
CREATE INDEX dhcp_network ON public.dhcp USING btree (network);
--
-- Name: dhcp_time; Type: INDEX; Schema: public; Owner: nms
--
CREATE INDEX dhcp_time ON public.dhcp USING btree ("time");
--
-- Name: metric_data; Type: INDEX; Schema: public; Owner: nms
--
CREATE INDEX metric_data ON public.metrics USING gin (data);
--
-- Name: ping_brin_time; Type: INDEX; Schema: public; Owner: nms
--
CREATE INDEX ping_brin_time ON public.ping USING brin ("time");
--
-- Name: ping_index; Type: INDEX; Schema: public; Owner: nms
--
CREATE INDEX ping_index ON public.ping USING btree ("time");
--
-- Name: ping_secondary_index; Type: INDEX; Schema: public; Owner: nms
--
CREATE INDEX ping_secondary_index ON public.ping_secondary_ip USING btree ("time");
--
-- Name: ping_switch_time_btree; Type: INDEX; Schema: public; Owner: nms
--
CREATE INDEX ping_switch_time_btree ON public.ping USING btree (switch, "time");
--
-- Name: ping_switch_time_unique_btree; Type: INDEX; Schema: public; Owner: nms
--
CREATE UNIQUE INDEX ping_switch_time_unique_btree ON public.ping USING btree (switch, "time");
--
-- Name: seen_mac_addr_family; Type: INDEX; Schema: public; Owner: nms
--
CREATE INDEX seen_mac_addr_family ON public.seen_mac USING btree (family(address));
--
-- Name: seen_mac_seen; Type: INDEX; Schema: public; Owner: nms
--
CREATE INDEX seen_mac_seen ON public.seen_mac USING btree (seen);
--
-- Name: snmp_brin_switch_time; Type: INDEX; Schema: public; Owner: nms
--
CREATE INDEX snmp_brin_switch_time ON public.snmp USING brin (switch, "time");
--
-- Name: snmp_id_desc_btree; Type: INDEX; Schema: public; Owner: nms
--
CREATE INDEX snmp_id_desc_btree ON public.snmp USING btree (id DESC);
--
-- Name: snmp_id_desc_switch_btree; Type: INDEX; Schema: public; Owner: nms
--
CREATE INDEX snmp_id_desc_switch_btree ON public.snmp USING btree (id DESC, switch);
--
-- Name: snmp_id_switch_btree; Type: INDEX; Schema: public; Owner: nms
--
CREATE INDEX snmp_id_switch_btree ON public.snmp USING btree (id, switch);
--
-- Name: snmp_switch_btree; Type: INDEX; Schema: public; Owner: nms
--
CREATE INDEX snmp_switch_btree ON public.snmp USING btree (switch);
--
-- Name: snmp_switch_id_btree; Type: INDEX; Schema: public; Owner: nms
--
CREATE INDEX snmp_switch_id_btree ON public.snmp USING btree (switch, id);
--
-- Name: snmp_switch_id_desc_btree; Type: INDEX; Schema: public; Owner: nms
--
CREATE INDEX snmp_switch_id_desc_btree ON public.snmp USING btree (switch, id DESC);
--
-- Name: snmp_switch_time_btree; Type: INDEX; Schema: public; Owner: nms
--
CREATE INDEX snmp_switch_time_btree ON public.snmp USING btree (switch, "time");
--
-- Name: snmp_time; Type: INDEX; Schema: public; Owner: nms
--
CREATE INDEX snmp_time ON public.snmp USING btree ("time");
--
-- Name: snmp_time6; Type: INDEX; Schema: public; Owner: nms
--
CREATE INDEX snmp_time6 ON public.snmp USING btree ("time" DESC, switch);
--
-- Name: snmp_time_brin; Type: INDEX; Schema: public; Owner: nms
--
CREATE INDEX snmp_time_brin ON public.snmp USING brin ("time");
--
-- Name: snmp_unique_switch_time_btree; Type: INDEX; Schema: public; Owner: nms
--
CREATE UNIQUE INDEX snmp_unique_switch_time_btree ON public.snmp USING btree (switch, "time");
--
-- Name: switches_switch; Type: INDEX; Schema: public; Owner: nms
--
CREATE INDEX switches_switch ON public.switches USING hash (switch);
--
-- Name: updated_index2; Type: INDEX; Schema: public; Owner: nms
--
CREATE INDEX updated_index2 ON public.linknet_ping USING btree ("time");
--
-- Name: updated_index3; Type: INDEX; Schema: public; Owner: nms
--
CREATE INDEX updated_index3 ON public.ping_secondary_ip USING btree ("time");
--
-- Name: networks networks_router_fkey; Type: FK CONSTRAINT; Schema: public; Owner: nms
--
ALTER TABLE ONLY public.networks
ADD CONSTRAINT networks_router_fkey FOREIGN KEY (router) REFERENCES public.switches(switch);
--
-- Name: snmp snmp_switch_fkey; Type: FK CONSTRAINT; Schema: public; Owner: nms
--
ALTER TABLE ONLY public.snmp
ADD CONSTRAINT snmp_switch_fkey FOREIGN KEY (switch) REFERENCES public.switches(switch);
--
-- Name: ping switchname; Type: FK CONSTRAINT; Schema: public; Owner: nms
--
ALTER TABLE ONLY public.ping
ADD CONSTRAINT switchname FOREIGN KEY (switch) REFERENCES public.switches(switch);
--
-- Name: SEQUENCE snmp_id_seq; Type: ACL; Schema: public; Owner: nms
--
GRANT ALL ON SEQUENCE public.snmp_id_seq TO postgres;
--
-- PostgreSQL database dump complete
--
|