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
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
|
--
-- PostgreSQL database dump
--
SET statement_timeout = 0;
SET lock_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SET check_function_bodies = false;
SET client_min_messages = warning;
--
-- Name: nms; Type: DATABASE; Schema: -; Owner: postgres
--
CREATE DATABASE nms WITH TEMPLATE = template0 ENCODING = 'UTF8' LC_COLLATE = 'en_US.UTF-8' LC_CTYPE = 'en_US.UTF-8';
ALTER DATABASE nms OWNER TO postgres;
\connect nms
SET statement_timeout = 0;
SET lock_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SET check_function_bodies = false;
SET client_min_messages = warning;
--
-- 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';
SET search_path = public, pg_catalog;
--
-- Name: datarate; Type: TYPE; Schema: public; Owner: nms
--
CREATE TYPE datarate AS (
switch integer,
port integer,
bytes_in double precision,
bytes_out double precision,
last_poll_time timestamp with time zone
);
ALTER TYPE public.datarate OWNER TO nms;
--
-- Name: sample; Type: TYPE; Schema: public; Owner: postgres
--
CREATE TYPE sample AS (
value bigint,
polled timestamp with time zone
);
ALTER TYPE public.sample OWNER TO postgres;
--
-- Name: sample_state; Type: TYPE; Schema: public; Owner: postgres
--
CREATE TYPE sample_state AS (
last sample,
next_last sample
);
ALTER TYPE public.sample_state OWNER TO postgres;
--
-- Name: add_new_element(sample[], sample); Type: FUNCTION; Schema: public; Owner: postgres
--
CREATE FUNCTION add_new_element(sample[], sample) RETURNS sample[]
LANGUAGE sql
AS $_$ select ('{' || $1[1] || ', ' || $2 || '}')::sample[] $_$;
ALTER FUNCTION public.add_new_element(sample[], sample) OWNER TO postgres;
--
-- Name: add_new_element(sample_state, sample); Type: FUNCTION; Schema: public; Owner: postgres
--
CREATE FUNCTION add_new_element(sample_state, sample) RETURNS sample_state
LANGUAGE sql
AS $_$
SELECT ($1.next_last, $2)::sample_state
$_$;
ALTER FUNCTION public.add_new_element(sample_state, sample) OWNER TO postgres;
--
-- Name: get_current_datarate(); Type: FUNCTION; Schema: public; Owner: nms
--
CREATE FUNCTION get_current_datarate() RETURNS SETOF datarate
LANGUAGE sql
AS $$
SELECT switch,port,
(bytes_out[1] - bytes_out[2]) / EXTRACT(EPOCH FROM (time[1] - time[2])) AS bytes_out,
(bytes_in[1] - bytes_in[2]) / EXTRACT(EPOCH FROM (time[1] - time[2])) AS bytes_in,
time[1] AS last_poll_time
FROM (
SELECT switch,port,
ARRAY_AGG(time) AS time,
ARRAY_AGG(bytes_in) AS bytes_in,
ARRAY_AGG(bytes_out) AS bytes_out
FROM (
SELECT *,rank() OVER (PARTITION BY switch,port ORDER BY time DESC) AS poll_num
FROM polls WHERE time BETWEEN (now() - interval '5 minutes') AND now()
AND official_port
) t1
WHERE poll_num <= 2
GROUP BY switch,port
) t2
WHERE
time[2] IS NOT NULL
AND bytes_in[1] >= 0 AND bytes_out[1] >= 0
AND bytes_in[2] >= 0 AND bytes_out[2] >= 0
AND bytes_out[1] >= bytes_out[2]
AND bytes_in[1] >= bytes_in[2];
$$;
ALTER FUNCTION public.get_current_datarate() OWNER TO nms;
--
-- Name: get_datarate(); Type: FUNCTION; Schema: public; Owner: nms
--
CREATE FUNCTION get_datarate() RETURNS SETOF datarate
LANGUAGE plpgsql
AS $$
DECLARE
num_entries INTEGER;
poll polls;
second_last_poll polls;
last_poll polls;
timediff float;
ret datarate;
BEGIN
num_entries := 0;
last_poll.switch = -1;
FOR poll IN select * from polls where time >= now() - '15 minutes'::interval and time < now() order by switch,port,time LOOP
IF poll.switch <> last_poll.switch OR poll.port <> last_poll.port THEN
IF num_entries >= 2 THEN
timediff := EXTRACT(epoch from last_poll.time - second_last_poll.time);
ret.switch := last_poll.switch;
ret.port := last_poll.port;
IF last_poll.bytes_in < second_last_poll.bytes_in THEN
second_last_poll.bytes_in = 0;
END IF;
IF last_poll.bytes_out < second_last_poll.bytes_out THEN
second_last_poll.bytes_out = 0;
END IF;
ret.bytes_in := (last_poll.bytes_in - second_last_poll.bytes_in) / timediff;
ret.bytes_out := (last_poll.bytes_out - second_last_poll.bytes_out) / timediff;
ret.last_poll_time := last_poll.time;
return next ret;
ELSIF num_entries = 1 THEN
ret.switch := last_poll.switch;
ret.port := last_poll.port;
ret.bytes_in := -1;
ret.bytes_out := -1;
ret.last_poll_time := last_poll.time;
return next ret;
END IF;
num_entries := 1;
ELSE
num_entries := num_entries + 1;
END IF;
second_last_poll.switch := last_poll.switch;
second_last_poll.port := last_poll.port;
second_last_poll.time := last_poll.time;
second_last_poll.bytes_in := last_poll.bytes_in;
second_last_poll.bytes_out := last_poll.bytes_out;
last_poll.switch := poll.switch;
last_poll.port := poll.port;
last_poll.time := poll.time;
last_poll.bytes_in := poll.bytes_in;
last_poll.bytes_out := poll.bytes_out;
END LOOP;
-- pah, and once more, for the last switch/port...
IF num_entries >= 2 THEN
timediff := EXTRACT(epoch from last_poll.time - second_last_poll.time);
ret.switch := last_poll.switch;
ret.port := last_poll.port;
IF last_poll.bytes_in < second_last_poll.bytes_in THEN
second_last_poll.bytes_in = 0;
END IF;
IF last_poll.bytes_out < second_last_poll.bytes_out THEN
second_last_poll.bytes_out = 0;
END IF;
ret.bytes_in := (last_poll.bytes_in - second_last_poll.bytes_in) / timediff;
ret.bytes_out := (last_poll.bytes_out - second_last_poll.bytes_out) / timediff;
ret.last_poll_time := last_poll.time;
return next ret;
ELSIF num_entries = 1 THEN
ret.switch := last_poll.switch;
ret.port := last_poll.port;
ret.bytes_in := -1;
ret.bytes_out := -1;
ret.last_poll_time := last_poll.time;
return next ret;
END IF;
RETURN;
END;
$$;
ALTER FUNCTION public.get_datarate() OWNER TO nms;
--
-- Name: current_change(sample); Type: AGGREGATE; Schema: public; Owner: postgres
--
CREATE AGGREGATE current_change(sample) (
SFUNC = public.add_new_element,
STYPE = sample_state
);
ALTER AGGREGATE public.current_change(sample) OWNER TO postgres;
SET default_tablespace = '';
SET default_with_oids = false;
--
-- Name: ap_poll; Type: TABLE; Schema: public; Owner: nms; Tablespace:
--
CREATE TABLE ap_poll (
switch integer NOT NULL,
model character varying DEFAULT ''::character varying NOT NULL,
last_poll timestamp with time zone
);
ALTER TABLE public.ap_poll OWNER TO nms;
--
-- Name: backup_polls; Type: TABLE; Schema: public; Owner: nms; Tablespace:
--
CREATE TABLE backup_polls (
"time" timestamp with time zone,
switch integer,
port integer,
bytes_in bigint,
bytes_out bigint,
errors_in bigint,
errors_out bigint
);
ALTER TABLE public.backup_polls OWNER TO nms;
--
-- Name: cpuloadpoll_id_seq; Type: SEQUENCE; Schema: public; Owner: nms
--
CREATE SEQUENCE cpuloadpoll_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.cpuloadpoll_id_seq OWNER TO nms;
--
-- Name: cpuloadpoll; Type: TABLE; Schema: public; Owner: nms; Tablespace:
--
CREATE TABLE cpuloadpoll (
id integer DEFAULT nextval('cpuloadpoll_id_seq'::regclass) NOT NULL,
"time" timestamp without time zone NOT NULL,
switch integer NOT NULL,
entity integer NOT NULL,
value integer NOT NULL
);
ALTER TABLE public.cpuloadpoll OWNER TO nms;
--
-- Name: dhcp; Type: TABLE; Schema: public; Owner: nms; Tablespace:
--
CREATE TABLE dhcp (
switch integer NOT NULL,
network cidr NOT NULL,
last_ack timestamp without time zone,
owner_color character varying
);
ALTER TABLE public.dhcp OWNER TO nms;
--
-- Name: linknet_ping; Type: TABLE; Schema: public; Owner: nms; Tablespace:
--
CREATE TABLE linknet_ping (
linknet integer NOT NULL,
updated 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; Tablespace:
--
CREATE TABLE linknets (
linknet integer NOT NULL,
switch1 integer NOT NULL,
addr1 inet NOT NULL,
switch2 integer NOT NULL,
addr2 inet NOT NULL
);
ALTER TABLE public.linknets OWNER TO nms;
--
-- Name: linknets_linknet_seq; Type: SEQUENCE; Schema: public; Owner: nms
--
CREATE SEQUENCE 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 linknets_linknet_seq OWNED BY linknets.linknet;
--
-- Name: mbd_log; Type: TABLE; Schema: public; Owner: nms; Tablespace:
--
CREATE TABLE mbd_log (
ts timestamp without time zone,
game character varying,
port integer,
description character varying,
active_servers integer
);
ALTER TABLE public.mbd_log OWNER TO nms;
--
-- Name: mldpolls; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
--
CREATE TABLE mldpolls (
"time" timestamp with time zone NOT NULL,
switch integer NOT NULL,
mcast_group inet NOT NULL,
count integer NOT NULL,
raw_portlist character varying
);
ALTER TABLE public.mldpolls OWNER TO postgres;
--
-- Name: ping; Type: TABLE; Schema: public; Owner: nms; Tablespace:
--
CREATE TABLE ping (
switch integer NOT NULL,
updated 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; Tablespace:
--
CREATE TABLE ping_secondary_ip (
switch integer NOT NULL,
updated timestamp with time zone DEFAULT now() NOT NULL,
latency_ms double precision
);
ALTER TABLE public.ping_secondary_ip OWNER TO nms;
--
-- Name: placements; Type: TABLE; Schema: public; Owner: nms; Tablespace:
--
CREATE TABLE placements (
switch integer NOT NULL,
placement box NOT NULL,
zorder integer DEFAULT 0 NOT NULL
);
ALTER TABLE public.placements OWNER TO nms;
--
-- Name: polls; Type: TABLE; Schema: public; Owner: nms; Tablespace:
--
CREATE TABLE polls (
"time" timestamp with time zone NOT NULL,
switch integer NOT NULL,
port integer NOT NULL,
bytes_in bigint NOT NULL,
bytes_out bigint NOT NULL,
errors_in bigint NOT NULL,
errors_out bigint NOT NULL,
official_port boolean DEFAULT false NOT NULL
);
ALTER TABLE ONLY polls ALTER COLUMN "time" SET STATISTICS 100;
ALTER TABLE public.polls OWNER TO nms;
--
-- Name: polls_poll_seq; Type: SEQUENCE; Schema: public; Owner: nms
--
CREATE SEQUENCE polls_poll_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.polls_poll_seq OWNER TO nms;
--
-- Name: portnames; Type: TABLE; Schema: public; Owner: nms; Tablespace:
--
CREATE TABLE portnames (
switchtype character varying NOT NULL,
port integer NOT NULL,
description character varying NOT NULL
);
ALTER TABLE public.portnames OWNER TO nms;
--
-- Name: seen_mac; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
--
CREATE TABLE 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 postgres;
--
-- Name: squeue; Type: TABLE; Schema: public; Owner: nms; Tablespace:
--
CREATE TABLE squeue (
id integer DEFAULT nextval(('squeue_sequence'::text)::regclass) NOT NULL,
gid integer NOT NULL,
added timestamp with time zone NOT NULL,
updated timestamp with time zone,
addr inet,
cmd character varying NOT NULL,
locked boolean DEFAULT false NOT NULL,
processed boolean DEFAULT false NOT NULL,
disabled boolean DEFAULT false NOT NULL,
priority integer DEFAULT 3,
sysname character varying NOT NULL,
author character varying NOT NULL,
result character varying,
delay timestamp with time zone,
delaytime interval DEFAULT '00:01:00'::interval
);
ALTER TABLE public.squeue OWNER TO nms;
--
-- Name: squeue_group_sequence; Type: SEQUENCE; Schema: public; Owner: nms
--
CREATE SEQUENCE squeue_group_sequence
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.squeue_group_sequence OWNER TO nms;
--
-- Name: squeue_sequence; Type: SEQUENCE; Schema: public; Owner: nms
--
CREATE SEQUENCE squeue_sequence
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.squeue_sequence OWNER TO nms;
--
-- Name: stemppoll_sequence; Type: SEQUENCE; Schema: public; Owner: nms
--
CREATE SEQUENCE stemppoll_sequence
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.stemppoll_sequence OWNER TO nms;
--
-- Name: switches; Type: TABLE; Schema: public; Owner: nms; Tablespace:
--
CREATE TABLE switches (
switch integer DEFAULT nextval(('"switches_switch_seq"'::text)::regclass) NOT NULL,
ip inet NOT NULL,
sysname character varying NOT NULL,
switchtype character varying NOT NULL,
last_updated timestamp with time zone,
locked boolean DEFAULT false NOT NULL,
priority integer DEFAULT 0 NOT NULL,
poll_frequency interval DEFAULT '00:01:00'::interval NOT NULL,
community character varying DEFAULT 'public'::character varying NOT NULL,
lldp_chassis_id character varying,
secondary_ip inet
);
ALTER TABLE public.switches OWNER TO nms;
--
-- Name: switches_switch_seq; Type: SEQUENCE; Schema: public; Owner: nms
--
CREATE SEQUENCE 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: switchtypes; Type: TABLE; Schema: public; Owner: nms; Tablespace:
--
CREATE TABLE switchtypes (
switchtype character varying NOT NULL,
ports character varying NOT NULL
);
ALTER TABLE public.switchtypes OWNER TO nms;
--
-- Name: temppoll; Type: TABLE; Schema: public; Owner: nms; Tablespace:
--
CREATE TABLE temppoll (
id integer DEFAULT nextval(('stemppoll_sequence'::text)::regclass) NOT NULL,
"time" timestamp without time zone NOT NULL,
switch integer NOT NULL,
temp double precision
);
ALTER TABLE public.temppoll OWNER TO nms;
--
-- Name: uplinks; Type: TABLE; Schema: public; Owner: nms; Tablespace:
--
CREATE TABLE uplinks (
switch integer NOT NULL,
coreswitch integer NOT NULL,
blade integer NOT NULL,
port integer NOT NULL
);
ALTER TABLE public.uplinks OWNER TO nms;
--
-- Name: linknet; Type: DEFAULT; Schema: public; Owner: nms
--
ALTER TABLE ONLY linknets ALTER COLUMN linknet SET DEFAULT nextval('linknets_linknet_seq'::regclass);
--
-- Name: cpuloadpoll_pkey; Type: CONSTRAINT; Schema: public; Owner: nms; Tablespace:
--
ALTER TABLE ONLY cpuloadpoll
ADD CONSTRAINT cpuloadpoll_pkey PRIMARY KEY (id);
--
-- Name: seen_mac_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:
--
ALTER TABLE ONLY seen_mac
ADD CONSTRAINT seen_mac_pkey PRIMARY KEY (mac, address, seen);
--
-- Name: switches_pkey; Type: CONSTRAINT; Schema: public; Owner: nms; Tablespace:
--
ALTER TABLE ONLY switches
ADD CONSTRAINT switches_pkey PRIMARY KEY (switch);
--
-- Name: switchtypes_pkey; Type: CONSTRAINT; Schema: public; Owner: nms; Tablespace:
--
ALTER TABLE ONLY switchtypes
ADD CONSTRAINT switchtypes_pkey PRIMARY KEY (switchtype);
--
-- Name: polls_switchporttime; Type: INDEX; Schema: public; Owner: nms; Tablespace:
--
CREATE INDEX polls_switchporttime ON polls USING btree (switch, port, "time");
--
-- Name: polls_time; Type: INDEX; Schema: public; Owner: nms; Tablespace:
--
CREATE INDEX polls_time ON polls USING btree ("time");
--
-- Name: seen_mac_addr_family; Type: INDEX; Schema: public; Owner: postgres; Tablespace:
--
CREATE INDEX seen_mac_addr_family ON seen_mac USING btree (family(address));
--
-- Name: seen_mac_seen; Type: INDEX; Schema: public; Owner: postgres; Tablespace:
--
CREATE INDEX seen_mac_seen ON seen_mac USING btree (seen);
--
-- Name: switches_ap_poll; Type: INDEX; Schema: public; Owner: nms; Tablespace:
--
CREATE UNIQUE INDEX switches_ap_poll ON ap_poll USING btree (switch);
--
-- Name: switches_dhcp; Type: INDEX; Schema: public; Owner: nms; Tablespace:
--
CREATE UNIQUE INDEX switches_dhcp ON dhcp USING btree (switch);
--
-- Name: switches_placement; Type: INDEX; Schema: public; Owner: nms; Tablespace:
--
CREATE UNIQUE INDEX switches_placement ON placements USING btree (switch);
--
-- Name: switches_switch; Type: INDEX; Schema: public; Owner: nms; Tablespace:
--
CREATE UNIQUE INDEX switches_switch ON switches USING btree (switch);
--
-- Name: temppoll_search; Type: INDEX; Schema: public; Owner: nms; Tablespace:
--
CREATE INDEX temppoll_search ON temppoll USING btree (switch, id);
--
-- Name: updated_index; Type: INDEX; Schema: public; Owner: nms; Tablespace:
--
CREATE INDEX updated_index ON ping USING btree (updated);
--
-- Name: updated_index2; Type: INDEX; Schema: public; Owner: nms; Tablespace:
--
CREATE INDEX updated_index2 ON linknet_ping USING btree (updated);
--
-- Name: updated_index3; Type: INDEX; Schema: public; Owner: nms; Tablespace:
--
CREATE INDEX updated_index3 ON ping_secondary_ip USING btree (updated);
--
-- Name: ap_poll_switch_fkey; Type: FK CONSTRAINT; Schema: public; Owner: nms
--
ALTER TABLE ONLY ap_poll
ADD CONSTRAINT ap_poll_switch_fkey FOREIGN KEY (switch) REFERENCES switches(switch);
--
-- Name: switches_switchtype_fkey; Type: FK CONSTRAINT; Schema: public; Owner: nms
--
ALTER TABLE ONLY switches
ADD CONSTRAINT switches_switchtype_fkey FOREIGN KEY (switchtype) REFERENCES switchtypes(switchtype);
--
-- Name: temppoll_switch_fkey; Type: FK CONSTRAINT; Schema: public; Owner: nms
--
ALTER TABLE ONLY temppoll
ADD CONSTRAINT temppoll_switch_fkey FOREIGN KEY (switch) REFERENCES switches(switch);
--
-- Name: uplinks_coreswitch_fkey; Type: FK CONSTRAINT; Schema: public; Owner: nms
--
ALTER TABLE ONLY uplinks
ADD CONSTRAINT uplinks_coreswitch_fkey FOREIGN KEY (coreswitch) REFERENCES switches(switch);
--
-- Name: uplinks_switch_fkey; Type: FK CONSTRAINT; Schema: public; Owner: nms
--
ALTER TABLE ONLY uplinks
ADD CONSTRAINT uplinks_switch_fkey FOREIGN KEY (switch) REFERENCES switches(switch);
--
-- Name: public; Type: ACL; Schema: -; Owner: postgres
--
REVOKE ALL ON SCHEMA public FROM PUBLIC;
REVOKE ALL ON SCHEMA public FROM postgres;
GRANT ALL ON SCHEMA public TO postgres;
GRANT ALL ON SCHEMA public TO PUBLIC;
--
-- Name: dhcp; Type: ACL; Schema: public; Owner: nms
--
REVOKE ALL ON TABLE dhcp FROM PUBLIC;
REVOKE ALL ON TABLE dhcp FROM nms;
GRANT ALL ON TABLE dhcp TO nms;
GRANT ALL ON TABLE dhcp TO root;
--
-- Name: mbd_log; Type: ACL; Schema: public; Owner: nms
--
REVOKE ALL ON TABLE mbd_log FROM PUBLIC;
REVOKE ALL ON TABLE mbd_log FROM nms;
GRANT ALL ON TABLE mbd_log TO nms;
--
-- Name: mldpolls; Type: ACL; Schema: public; Owner: postgres
--
REVOKE ALL ON TABLE mldpolls FROM PUBLIC;
REVOKE ALL ON TABLE mldpolls FROM postgres;
GRANT ALL ON TABLE mldpolls TO postgres;
GRANT SELECT,INSERT,DELETE,UPDATE ON TABLE mldpolls TO nms;
--
-- Name: placements; Type: ACL; Schema: public; Owner: nms
--
REVOKE ALL ON TABLE placements FROM PUBLIC;
REVOKE ALL ON TABLE placements FROM nms;
GRANT ALL ON TABLE placements TO nms;
GRANT ALL ON TABLE placements TO root;
--
-- Name: seen_mac; Type: ACL; Schema: public; Owner: postgres
--
REVOKE ALL ON TABLE seen_mac FROM PUBLIC;
REVOKE ALL ON TABLE seen_mac FROM postgres;
GRANT ALL ON TABLE seen_mac TO postgres;
GRANT SELECT,INSERT ON TABLE seen_mac TO nms;
--
-- Name: squeue; Type: ACL; Schema: public; Owner: nms
--
REVOKE ALL ON TABLE squeue FROM PUBLIC;
REVOKE ALL ON TABLE squeue FROM nms;
GRANT ALL ON TABLE squeue TO nms;
GRANT ALL ON TABLE squeue TO root;
--
-- Name: switches; Type: ACL; Schema: public; Owner: nms
--
REVOKE ALL ON TABLE switches FROM PUBLIC;
REVOKE ALL ON TABLE switches FROM nms;
GRANT ALL ON TABLE switches TO nms;
GRANT ALL ON TABLE switches TO root;
--
-- PostgreSQL database dump complete
--
|