-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathospfd_dump.sql
436 lines (296 loc) · 9.25 KB
/
ospfd_dump.sql
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
--
-- PostgreSQL database dump
--
SET statement_timeout = 0;
SET client_encoding = 'SQL_ASCII';
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: authentication_type; Type: TYPE; Schema: public; Owner: ospf
--
CREATE TYPE authentication_type AS ENUM (
'PASSWORD',
'MD5'
);
ALTER TYPE public.authentication_type OWNER TO ospf;
--
-- Name: network_type; Type: TYPE; Schema: public; Owner: ospf
--
CREATE TYPE network_type AS ENUM (
'BROADCAST',
'NON_BROADCAST',
'POINT_TO_POINT',
'POINT_TO_MULTIPOINT'
);
ALTER TYPE public.network_type OWNER TO ospf;
--
-- Name: permitordeny; Type: TYPE; Schema: public; Owner: ospf
--
CREATE TYPE permitordeny AS ENUM (
'permit',
'deny'
);
ALTER TYPE public.permitordeny OWNER TO ospf;
--
-- Name: route_types; Type: TYPE; Schema: public; Owner: ospf
--
CREATE TYPE route_types AS ENUM (
'STATIC',
'CONNECTED',
'BGP'
);
ALTER TYPE public.route_types OWNER TO ospf;
SET default_tablespace = '';
SET default_with_oids = false;
--
-- Name: areas; Type: TABLE; Schema: public; Owner: ospf; Tablespace:
--
CREATE TABLE areas (
id integer NOT NULL,
area_id inet,
is_stub boolean,
ospf_authentication_id integer,
net_address cidr,
enable boolean,
is_no_summary boolean,
auth_type authentication_type
);
ALTER TABLE public.areas OWNER TO ospf;
--
-- Name: areas_id_seq; Type: SEQUENCE; Schema: public; Owner: ospf
--
CREATE SEQUENCE areas_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.areas_id_seq OWNER TO ospf;
--
-- Name: areas_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ospf
--
ALTER SEQUENCE areas_id_seq OWNED BY areas.id;
--
-- Name: ospf_authentications; Type: TABLE; Schema: public; Owner: ospf; Tablespace:
--
CREATE TABLE ospf_authentications (
id integer NOT NULL,
key_id integer,
auth_type authentication_type
);
ALTER TABLE public.ospf_authentications OWNER TO ospf;
--
-- Name: ospf_authentications_id_seq; Type: SEQUENCE; Schema: public; Owner: ospf
--
CREATE SEQUENCE ospf_authentications_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.ospf_authentications_id_seq OWNER TO ospf;
--
-- Name: ospf_authentications_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ospf
--
ALTER SEQUENCE ospf_authentications_id_seq OWNED BY ospf_authentications.id;
--
-- Name: ospf_interfaces; Type: TABLE; Schema: public; Owner: ospf; Tablespace:
--
CREATE TABLE ospf_interfaces (
cost integer DEFAULT 1,
dead_interval integer DEFAULT 40,
hello_interval integer DEFAULT 10,
priority integer DEFAULT 1,
retransmit_interval integer DEFAULT 5,
interface_name character varying NOT NULL,
network_type network_type DEFAULT 'BROADCAST'::network_type,
enable boolean,
is_passive boolean,
transmit_delay integer DEFAULT 1,
ospf_area_id inet,
ospf_authentication_key character varying(16),
interface_id integer
);
ALTER TABLE public.ospf_interfaces OWNER TO ospf;
--
-- Name: ospf_router; Type: TABLE; Schema: public; Owner: ospf; Tablespace:
--
CREATE TABLE ospf_router (
router_id inet,
spf_delay_msec integer,
spf_init_holdtime_msec integer,
spf_max_holdtime_msec integer,
is_enable boolean,
passive_interfaces character varying[]
);
ALTER TABLE public.ospf_router OWNER TO ospf;
--
-- Name: route_maps; Type: TABLE; Schema: public; Owner: ospf; Tablespace:
--
CREATE TABLE route_maps (
id integer NOT NULL,
route_map_name character varying NOT NULL,
action permitordeny NOT NULL,
orders integer NOT NULL,
match_param character varying NOT NULL,
match_value character varying NOT NULL,
action_param character varying NOT NULL,
action_value character varying NOT NULL,
exit_action character varying
);
ALTER TABLE public.route_maps OWNER TO ospf;
--
-- Name: route_maps_id_seq; Type: SEQUENCE; Schema: public; Owner: ospf
--
CREATE SEQUENCE route_maps_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.route_maps_id_seq OWNER TO ospf;
--
-- Name: route_maps_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ospf
--
ALTER SEQUENCE route_maps_id_seq OWNED BY route_maps.id;
--
-- Name: routes; Type: TABLE; Schema: public; Owner: ospf; Tablespace:
--
CREATE TABLE routes (
id integer NOT NULL,
is_enable boolean,
source_protocol_type route_types,
metric integer,
route_map_id integer,
redistribute_type integer,
CONSTRAINT routes_redistribute_type_check CHECK (((redistribute_type = 1) OR (redistribute_type = 2)))
);
ALTER TABLE public.routes OWNER TO ospf;
--
-- Name: routes_id_seq; Type: SEQUENCE; Schema: public; Owner: ospf
--
CREATE SEQUENCE routes_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.routes_id_seq OWNER TO ospf;
--
-- Name: routes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ospf
--
ALTER SEQUENCE routes_id_seq OWNED BY routes.id;
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: ospf
--
ALTER TABLE ONLY areas ALTER COLUMN id SET DEFAULT nextval('areas_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: ospf
--
ALTER TABLE ONLY ospf_authentications ALTER COLUMN id SET DEFAULT nextval('ospf_authentications_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: ospf
--
ALTER TABLE ONLY route_maps ALTER COLUMN id SET DEFAULT nextval('route_maps_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: ospf
--
ALTER TABLE ONLY routes ALTER COLUMN id SET DEFAULT nextval('routes_id_seq'::regclass);
--
-- Data for Name: areas; Type: TABLE DATA; Schema: public; Owner: ospf
--
COPY areas (id, area_id, is_stub, ospf_authentication_id, net_address, enable, is_no_summary, auth_type) FROM stdin;
2 0.0.0.0 t 1 172.16.121.0/24 t f MD5
\.
--
-- Name: areas_id_seq; Type: SEQUENCE SET; Schema: public; Owner: ospf
--
SELECT pg_catalog.setval('areas_id_seq', 2, true);
--
-- Data for Name: ospf_authentications; Type: TABLE DATA; Schema: public; Owner: ospf
--
COPY ospf_authentications (id, key_id, auth_type) FROM stdin;
1 1 MD5
2 2 PASSWORD
\.
--
-- Name: ospf_authentications_id_seq; Type: SEQUENCE SET; Schema: public; Owner: ospf
--
SELECT pg_catalog.setval('ospf_authentications_id_seq', 2, true);
--
-- Data for Name: ospf_interfaces; Type: TABLE DATA; Schema: public; Owner: ospf
--
COPY ospf_interfaces (cost, dead_interval, hello_interval, priority, retransmit_interval, interface_name, network_type, enable, is_passive, transmit_delay, ospf_area_id, ospf_authentication_key, interface_id) FROM stdin;
1 40 10 1 5 eth0 BROADCAST t f 1 0.0.0.0 sdfaswsfsdf \N
\.
--
-- Data for Name: ospf_router; Type: TABLE DATA; Schema: public; Owner: ospf
--
COPY ospf_router (router_id, spf_delay_msec, spf_init_holdtime_msec, spf_max_holdtime_msec, is_enable, passive_interfaces) FROM stdin;
0.0.0.1 200 400 1000 t {eth0,lo0}
\.
--
-- Data for Name: route_maps; Type: TABLE DATA; Schema: public; Owner: ospf
--
COPY route_maps (id, route_map_name, action, orders, match_param, match_value, action_param, action_value, exit_action) FROM stdin;
\.
--
-- Name: route_maps_id_seq; Type: SEQUENCE SET; Schema: public; Owner: ospf
--
SELECT pg_catalog.setval('route_maps_id_seq', 1, false);
--
-- Data for Name: routes; Type: TABLE DATA; Schema: public; Owner: ospf
--
COPY routes (id, is_enable, source_protocol_type, metric, route_map_id, redistribute_type) FROM stdin;
2 t STATIC 1 \N \N
1 t CONNECTED 11 \N 1
\.
--
-- Name: routes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: ospf
--
SELECT pg_catalog.setval('routes_id_seq', 2, true);
--
-- Name: areas_pkey; Type: CONSTRAINT; Schema: public; Owner: ospf; Tablespace:
--
ALTER TABLE ONLY areas
ADD CONSTRAINT areas_pkey PRIMARY KEY (id);
--
-- Name: ospf_authentications_key_key; Type: CONSTRAINT; Schema: public; Owner: ospf; Tablespace:
--
ALTER TABLE ONLY ospf_authentications
ADD CONSTRAINT ospf_authentications_key_key UNIQUE (key_id);
--
-- Name: ospf_authentications_pkey; Type: CONSTRAINT; Schema: public; Owner: ospf; Tablespace:
--
ALTER TABLE ONLY ospf_authentications
ADD CONSTRAINT ospf_authentications_pkey PRIMARY KEY (id);
--
-- Name: route_maps_pkey; Type: CONSTRAINT; Schema: public; Owner: ospf; Tablespace:
--
ALTER TABLE ONLY route_maps
ADD CONSTRAINT route_maps_pkey PRIMARY KEY (id);
--
-- Name: routes_route_map_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: ospf
--
ALTER TABLE ONLY routes
ADD CONSTRAINT routes_route_map_id_fkey FOREIGN KEY (route_map_id) REFERENCES route_maps(id);
--
-- 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;
--
-- PostgreSQL database dump complete
--