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