You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`concurrent_connections`int(10) unsigned COMMENT 'concurrent connections supported on this network',
153
-
`traffic_type`varchar(32) NOT NULL COMMENT 'traffic type carried on this network',
154
-
`tags`varchar(4096) COMMENT 'tags supported by this offering',
155
-
`system_only`int(1) unsigned NOT NULL DEFAULT 0 COMMENT 'Is this network offering for system use only',
156
-
`specify_vlan`int(1) unsigned NOT NULL DEFAULT 0 COMMENT 'Should the user specify vlan',
157
-
`service_offering_id`bigint unsigned UNIQUE COMMENT 'service offering id that this network offering is tied to',
158
-
`created` datetime NOT NULL COMMENT 'time the entry was created',
159
-
`removed` datetime DEFAULT NULL COMMENT 'time the entry was removed',
160
-
`default`int(1) unsigned NOT NULL DEFAULT 0 COMMENT '1 if network offering is default',
161
-
`availability`varchar(255) NOT NULL COMMENT 'availability of the network',
162
-
`dns_service`int(1) unsigned NOT NULL DEFAULT 0 COMMENT 'true if network offering provides dns service',
163
-
`gateway_service`int(1) unsigned NOT NULL DEFAULT 0 COMMENT 'true if network offering provides gateway service',
164
-
`firewall_service`int(1) unsigned NOT NULL DEFAULT 0 COMMENT 'true if network offering provides firewall service',
165
-
`lb_service`int(1) unsigned NOT NULL DEFAULT 0 COMMENT 'true if network offering provides lb service',
166
-
`userdata_service`int(1) unsigned NOT NULL DEFAULT 0 COMMENT 'true if network offering provides user data service',
167
-
`vpn_service`int(1) unsigned NOT NULL DEFAULT 0 COMMENT 'true if network offering provides vpn service',
168
-
`dhcp_service`int(1) unsigned NOT NULL DEFAULT 0 COMMENT 'true if network offering provides dhcp service',
169
-
PRIMARY KEY (`id`)
170
-
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
172
+
INSERT INTO `network_offerings` VALUES (1,'System-Public-Network','System Offering for System-Public-Network',NULL,NULL,NULL,'Public',NULL,1,0,NULL,'2011-02-28 17:46:55',NULL,0,'Required',0,0,0,0,0,0,0),(2,'System-Management-Network','System Offering for System-Management-Network',NULL,NULL,NULL,'Management',NULL,1,0,NULL,'2011-02-28 17:46:55',NULL,0,'Required',0,0,0,0,0,0,0),(3,'System-Control-Network','System Offering for System-Control-Network',NULL,NULL,NULL,'Control',NULL,1,0,NULL,'2011-02-28 17:46:55',NULL,0,'Required',0,0,0,0,0,0,0),(4,'System-Storage-Network','System Offering for System-Storage-Network',NULL,NULL,NULL,'Storage',NULL,1,0,NULL,'2011-02-28 17:46:55',NULL,0,'Required',0,0,0,0,0,0,0),(5,'System-Guest-Network','System-Guest-Network',NULL,NULL,NULL,'Guest',NULL,1,0,NULL,'2011-02-28 17:46:56',NULL,1,'Required',1,0,0,0,1,0,1),(6,'DefaultVirtualizedNetworkOffering','Virtual Vlan',NULL,NULL,NULL,'Guest',NULL,0,0,NULL,'2011-02-28 17:46:56',NULL,1,'Required',1,1,1,1,1,1,1),(7,'DefaultDirectNetworkOffering','Direct',NULL,NULL,NULL,'Guest',NULL,0,0,NULL,'2011-02-28 17:46:56',NULL,1,'Required',1,0,0,0,1,0,1);
171
173
172
174
CREATETABLE `cloud`.`cluster_details` (
173
175
`id`bigint unsigned NOT NULL auto_increment,
@@ -186,16 +188,6 @@ ALTER TABLE `cloud`.`user_ip_address` ADD COLUMN `mac_address` bigint unsigned N
186
188
ALTERTABLE`cloud`.`user_ip_address` ADD COLUMN `source_network_id`bigint unsigned NOT NULL;
0 commit comments