[181] | 1 | CREATE DATABASE ipdb;
|
---|
[4] | 2 |
|
---|
[176] | 3 | \connect ipdb ipdb
|
---|
[4] | 4 |
|
---|
| 5 | CREATE TABLE "customers" (
|
---|
| 6 | "custid" character varying(16) DEFAULT '' NOT NULL,
|
---|
| 7 | "name" character varying(64),
|
---|
| 8 | "street" character varying(25),
|
---|
| 9 | "street2" character varying(25),
|
---|
| 10 | "city" character varying(30),
|
---|
| 11 | "province" character(2),
|
---|
| 12 | "pocode" character varying(7),
|
---|
| 13 | "phone" character varying(15),
|
---|
| 14 | "abuse" character varying(50),
|
---|
| 15 | "def_rdns" character varying(40),
|
---|
| 16 | "description" text,
|
---|
| 17 | Constraint "customers_pkey" Primary Key ("custid")
|
---|
| 18 | );
|
---|
| 19 |
|
---|
[34] | 20 | REVOKE ALL on "customers" from PUBLIC;
|
---|
| 21 | GRANT ALL on "customers" to "ipdb";
|
---|
| 22 |
|
---|
[4] | 23 | CREATE TABLE "masterblocks" (
|
---|
[219] | 24 | "cidr" cidr DEFAULT '255.255.255.255/32' NOT NULL PRIMARY KEY,
|
---|
| 25 | "ctime" timestamp DEFAULT now()
|
---|
[4] | 26 | );
|
---|
| 27 |
|
---|
[34] | 28 | REVOKE ALL on "masterblocks" from PUBLIC;
|
---|
| 29 | GRANT ALL on "masterblocks" to "ipdb";
|
---|
| 30 |
|
---|
[4] | 31 | CREATE TABLE "routed" (
|
---|
[176] | 32 | "cidr" cidr DEFAULT '255.255.255.255/32' NOT NULL PRIMARY KEY,
|
---|
[4] | 33 | "maskbits" integer DEFAULT 128,
|
---|
[219] | 34 | "city" character varying(30) DEFAULT '',
|
---|
| 35 | "ctime" timestamp DEFAULT now()
|
---|
[4] | 36 | );
|
---|
| 37 |
|
---|
[34] | 38 | REVOKE ALL on "routed" from PUBLIC;
|
---|
| 39 | GRANT ALL on "routed" to "ipdb";
|
---|
[316] | 40 | GRANT SELECT on "routed" to "ipdb";
|
---|
[34] | 41 |
|
---|
[4] | 42 | CREATE TABLE "temp" (
|
---|
| 43 | "ofs" integer
|
---|
| 44 | );
|
---|
| 45 |
|
---|
[34] | 46 | REVOKE ALL on "temp" from PUBLIC;
|
---|
| 47 | GRANT ALL on "temp" to "ipdb";
|
---|
| 48 |
|
---|
[57] | 49 | CREATE TABLE "freeblocks" (
|
---|
[180] | 50 | "cidr" cidr DEFAULT '255.255.255.255/32' NOT NULL PRIMARY KEY,
|
---|
[57] | 51 | "maskbits" integer DEFAULT 128,
|
---|
| 52 | "city" character varying(30) DEFAULT '',
|
---|
[176] | 53 | "routed" character(1) DEFAULT 'n'
|
---|
[34] | 54 | );
|
---|
| 55 |
|
---|
[57] | 56 | REVOKE ALL on "freeblocks" from PUBLIC;
|
---|
| 57 | GRANT ALL on "freeblocks" to "ipdb";
|
---|
[34] | 58 |
|
---|
[74] | 59 | CREATE TABLE "poolips" (
|
---|
| 60 | "pool" cidr DEFAULT '255.255.255.255/32' NOT NULL,
|
---|
[176] | 61 | "ip" cidr DEFAULT '255.255.255.255/32' NOT NULL PRIMARY KEY,
|
---|
[74] | 62 | "custid" character varying(16) DEFAULT '' NOT NULL,
|
---|
[175] | 63 | "city" character varying(30) DEFAULT '' NOT NULL,
|
---|
| 64 | "type" character(2) DEFAULT '' NOT NULL,
|
---|
| 65 | "available" character(1) DEFAULT 'y' NOT NULL,
|
---|
| 66 | "notes" text DEFAULT '' NOT NULL,
|
---|
| 67 | "description" character varying(64) DEFAULT '' NOT NULL,
|
---|
| 68 | "circuitid" character varying(128) DEFAULT '' NOT NULL,
|
---|
[284] | 69 | "privdata" text DEFAULT '' NOT NULL,
|
---|
[316] | 70 | "newcustid" character varying(16) DEFAULT '',
|
---|
[218] | 71 | "createstamp" timestamp DEFAULT now(),
|
---|
| 72 | "modifystamp" timestamp DEFAULT now(),
|
---|
[176] | 73 | CHECK (((available = 'y'::bpchar) OR (available = 'n'::bpchar)))
|
---|
[74] | 74 | );
|
---|
| 75 |
|
---|
| 76 | REVOKE ALL on "poolips" from PUBLIC;
|
---|
| 77 | GRANT ALL on "poolips" to "ipdb";
|
---|
| 78 |
|
---|
| 79 | CREATE TABLE "allocations" (
|
---|
[176] | 80 | "cidr" cidr DEFAULT '255.255.255.255/32' NOT NULL PRIMARY KEY,
|
---|
[74] | 81 | "custid" character varying(16) DEFAULT '',
|
---|
| 82 | "type" character(2) DEFAULT '',
|
---|
| 83 | "city" character varying(30) DEFAULT '',
|
---|
| 84 | "description" character varying(64) DEFAULT '',
|
---|
| 85 | "notes" text DEFAULT '',
|
---|
| 86 | "maskbits" integer DEFAULT 128,
|
---|
| 87 | "circuitid" character varying(128) DEFAULT '',
|
---|
[218] | 88 | "createstamp" timestamp DEFAULT now(),
|
---|
| 89 | "modifystamp" timestamp DEFAULT now(),
|
---|
[284] | 90 | "privdata" text DEFAULT '' NOT NULL,
|
---|
[316] | 91 | "newcustid" character varying(16) DEFAULT '',
|
---|
| 92 | swip character(1) DEFAULT 'n'
|
---|
[74] | 93 | );
|
---|
| 94 |
|
---|
| 95 | REVOKE ALL on "allocations" from PUBLIC;
|
---|
| 96 | GRANT ALL on "allocations" to "ipdb";
|
---|
| 97 |
|
---|
[285] | 98 | CREATE VIEW "searchme" as SELECT allocations.cidr, allocations.custid, allocations."type", allocations.city, allocations.description, allocations.notes FROM allocations UNION SELECT poolips.ip, poolips.custid, poolips.type, poolips.city, poolips.description, poolips.notes FROM poolips;
|
---|
[92] | 99 |
|
---|
[176] | 100 | REVOKE ALL on "searchme" from PUBLIC;
|
---|
| 101 | GRANT ALL on "searchme" to "ipdb";
|
---|
| 102 |
|
---|
[92] | 103 | CREATE TABLE "alloctypes" (
|
---|
[176] | 104 | "type" character(2) DEFAULT '' NOT NULL PRIMARY KEY,
|
---|
[92] | 105 | "listname" character varying(40) DEFAULT '',
|
---|
| 106 | "dispname" character varying(40) DEFAULT '',
|
---|
| 107 | "listorder" integer DEFAULT 0,
|
---|
[176] | 108 | "def_custid" character varying(16) DEFAULT ''
|
---|
[92] | 109 | );
|
---|
| 110 |
|
---|
[321] | 111 | --
|
---|
| 112 | -- Name: alloctypes; Type: TABLE DATA; Schema: public; Owner: ipdb
|
---|
| 113 | --
|
---|
| 114 |
|
---|
| 115 | COPY alloctypes ("type", listname, dispname, listorder, def_custid) FROM stdin;
|
---|
[182] | 116 | cn Customer netblock Customer netblock 0
|
---|
[321] | 117 | si Static IP - Server pool Server pool IP 20
|
---|
[182] | 118 | ci Static IP - Cable Static cable IP 21
|
---|
| 119 | di Static IP - DSL Static DSL IP 22
|
---|
| 120 | mi Static IP - Dialup Static dialup IP 23
|
---|
| 121 | wi Static IP - Wireless Static wireless IP 24
|
---|
[321] | 122 | sd Static Pool - Servers Server pool 40 6750400
|
---|
| 123 | cd Static Pool - Cable Cable pool 41 CBL-BUS
|
---|
| 124 | dp Static Pool - DSL DSL pool 42 DSL-BUS
|
---|
| 125 | mp Static Pool - Dialup Static dialup pool 43 DIAL-BUS
|
---|
| 126 | wp Static Pool - Wireless Static wireless pool 44 WL-BUS
|
---|
[189] | 127 | en End-use netblock End-use netblock 100 6750400
|
---|
| 128 | me Dialup netblock Dialup netblock 101 DIAL-RES
|
---|
| 129 | de Dynamic DSL block Dynamic DSL block 102 DSL-RES
|
---|
| 130 | ce Dynamic cable block Dynamic cable block 103 CBL-RES
|
---|
| 131 | we Dynamic WiFi block Dynamic WiFi block 104 WL-RES
|
---|
[321] | 132 | ve Dynamic VoIP block Dynamic VoIP block 105 DYN-VOIP
|
---|
| 133 | li Static IP - LAN/POP Static LAN/POP IP 190 6750400
|
---|
| 134 | ai Static IP - Managment Static management IP 192 6750400
|
---|
| 135 | ad Static Pool - Managment Management pool 196 6750400
|
---|
| 136 | ld Static Pool - LAN/POP LAN pool 195 6750400
|
---|
| 137 | wc Reserve for CORE/WAN blocks CORE/WAN blocks 200 6750400
|
---|
[257] | 138 | pc Reserve for dynamic-route DSL netblocks Dynamic-route netblocks 201 6750400
|
---|
[321] | 139 | ac Reserve for ATM ATM blocks 202 6750400
|
---|
| 140 | wr CORE/WAN block CORE/WAN block 220 6750400
|
---|
[257] | 141 | pr Dynamic-route DSL netblock Dynamic-route DSL 221
|
---|
[321] | 142 | ar ATM block ATM block 222
|
---|
| 143 | rm Routing Routed netblock 500 6750400
|
---|
| 144 | in Internal netblock Internal netblock 990 6750400
|
---|
| 145 | mm Master block Master block 999 6750400
|
---|
[182] | 146 | \.
|
---|
[218] | 147 |
|
---|
[316] | 148 | REVOKE ALL on "alloctypes" from PUBLIC;
|
---|
| 149 | GRANT ALL on "alloctypes" to "ipdb";
|
---|
| 150 |
|
---|
| 151 | CREATE TABLE "cities" (
|
---|
| 152 | "id" serial NOT NULL PRIMARY KEY,
|
---|
| 153 | "city" character varying(30) DEFAULT '' NOT NULL,
|
---|
| 154 | "routing" character(1) DEFAULT 'n' NOT NULL
|
---|
| 155 | );
|
---|
| 156 |
|
---|
| 157 | REVOKE ALL on "cities" from PUBLIC;
|
---|
| 158 | GRANT ALL on "cities" to "ipdb";
|
---|
| 159 |
|
---|
[218] | 160 | --
|
---|
| 161 | -- Trigger and matching function to update modifystamp on allocations, poolips
|
---|
| 162 | --
|
---|
| 163 | CREATE FUNCTION up_modtime () RETURNS OPAQUE AS '
|
---|
| 164 | BEGIN
|
---|
| 165 | NEW.modifystamp := ''now'';
|
---|
| 166 | RETURN NEW;
|
---|
| 167 | END;
|
---|
| 168 | ' LANGUAGE 'plpgsql';
|
---|
| 169 |
|
---|
| 170 | CREATE TRIGGER up_modtime BEFORE UPDATE ON allocations
|
---|
| 171 | FOR EACH ROW EXECUTE PROCEDURE up_modtime();
|
---|
| 172 |
|
---|
| 173 | CREATE TRIGGER up_modtime BEFORE UPDATE ON poolips
|
---|
| 174 | FOR EACH ROW EXECUTE PROCEDURE up_modtime();
|
---|
[233] | 175 |
|
---|
| 176 | --
|
---|
| 177 | -- User data table - required for proper ACLs
|
---|
| 178 | --
|
---|
| 179 |
|
---|
| 180 | CREATE TABLE "users" (
|
---|
[237] | 181 | "username" varchar(16) NOT NULL PRIMARY KEY,
|
---|
[233] | 182 | "password" varchar(16) DEFAULT '',
|
---|
| 183 | "acl" varchar(16) DEFAULT 'b'
|
---|
| 184 | );
|
---|
[257] | 185 |
|
---|
| 186 | CREATE TABLE "dns" (
|
---|
| 187 | "ip" inet NOT NULL PRIMARY KEY,
|
---|
| 188 | "hostname" character varying(128),
|
---|
| 189 | "auto" character(1) DEFAULT 'y'
|
---|
| 190 | );
|
---|