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