- Timestamp:
- 05/31/05 17:04:07 (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/cgi-bin/ipdb.psql
r237 r257 118 118 119 119 CREATE TABLE "cities" ( 120 "city" character varying(30) DEFAULT '' NOT NULL PRIMARY KEY, 120 "id" serial NOT NULL PRIMARY KEY, 121 "city" character varying(30) DEFAULT '' NOT NULL, 121 122 "routing" character(1) DEFAULT 'n' NOT NULL 122 123 ); … … 125 126 GRANT ALL on "cities" to "kdeugau"; 126 127 GRANT ALL on "cities" to "ipdb"; 127 128 --129 -- Selected TOC Entries:130 --131 \connect - ipdb132 133 --134 -- TOC Entry ID 2 (OID 92809)135 --136 -- Name: alloctypes Type: TABLE Owner: ipdb137 --138 128 139 129 CREATE TABLE "alloctypes" ( … … 146 136 ); 147 137 148 --149 -- TOC Entry ID 3 (OID 92809)150 --151 -- Name: alloctypes Type: ACL Owner:152 --153 154 138 REVOKE ALL on "alloctypes" from PUBLIC; 155 139 GRANT ALL on "alloctypes" to "kdeugau"; 156 140 GRANT ALL on "alloctypes" to "ipdb"; 157 158 --159 -- Data for TOC Entry ID 4 (OID 92809)160 --161 -- Name: alloctypes Type: TABLE DATA Owner: ipdb162 --163 164 141 165 142 COPY "alloctypes" FROM stdin; … … 178 155 si Static IP - Server pool Server pool IP 20 6750400 179 156 wc Reserve for WAN blocks WAN IP blocks 200 6750400 180 wr Internal WAN block Internal WAN block 201 6750400181 pc Reserve for dynamic-route DSL netblocks Dynamic-route netblocks 202 6750400182 157 en End-use netblock End-use netblock 100 6750400 183 158 me Dialup netblock Dialup netblock 101 DIAL-RES … … 186 161 we Dynamic WiFi block Dynamic WiFi block 104 WL-RES 187 162 rm Routing Routed netblock 500 6750400 188 pr Dynamic-route DSL netblock Dynamic-route DSL 203 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 189 166 \. 190 167 … … 214 191 "acl" varchar(16) DEFAULT 'b' 215 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 );
Note:
See TracChangeset
for help on using the changeset viewer.