-- MariaDB dump 10.19-11.4.0-MariaDB, for Win64 (AMD64) -- -- Host: localhost Database: serverstatus -- ------------------------------------------------------ -- Server version 11.4.0-MariaDB /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `announcements` -- DROP TABLE IF EXISTS `announcements`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `announcements` ( `id` smallint(5) unsigned NOT NULL AUTO_INCREMENT, `announcement` tinytext NOT NULL, `atime` datetime NOT NULL DEFAULT '2002-08-08 01:00:00', PRIMARY KEY (`id`), UNIQUE KEY `id` (`id`), KEY `id_2` (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci COMMENT='Service Announcements'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `announcements` -- LOCK TABLES `announcements` WRITE; /*!40000 ALTER TABLE `announcements` DISABLE KEYS */; /*!40000 ALTER TABLE `announcements` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `groups` -- DROP TABLE IF EXISTS `groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `groups` ( `groupid` tinyint(3) unsigned NOT NULL AUTO_INCREMENT, `groupname` varchar(50) NOT NULL DEFAULT '0', `ports` varchar(50) NOT NULL DEFAULT '0', PRIMARY KEY (`groupid`), UNIQUE KEY `groupid` (`groupid`), KEY `groupid_2` (`groupid`) ) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci COMMENT='Server groups'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `groups` -- LOCK TABLES `groups` WRITE; /*!40000 ALTER TABLE `groups` DISABLE KEYS */; INSERT INTO `groups` VALUES (1,'Web Servers','80,443'), (3,'FTP Servers','21'), (4,'Web RDP Servers','4711'); /*!40000 ALTER TABLE `groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ports` -- DROP TABLE IF EXISTS `ports`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ports` ( `portid` smallint(3) unsigned NOT NULL DEFAULT 0, `portname` varchar(10) NOT NULL DEFAULT '0', PRIMARY KEY (`portid`), UNIQUE KEY `portid` (`portid`), KEY `portid_2` (`portid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci COMMENT='Port numbers'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ports` -- LOCK TABLES `ports` WRITE; /*!40000 ALTER TABLE `ports` DISABLE KEYS */; INSERT INTO `ports` VALUES (80,'HTTP'), (443,'HTTPS'), (21,'FTP'), (4711,'TSWEB'); /*!40000 ALTER TABLE `ports` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `servers` -- DROP TABLE IF EXISTS `servers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `servers` ( `id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT, `friendlyname` varchar(50) NOT NULL DEFAULT '0', `ip` varchar(16) NOT NULL DEFAULT '0', `hostname` varchar(100) NOT NULL DEFAULT '0', `groupid` tinyint(3) unsigned NOT NULL DEFAULT 0, PRIMARY KEY (`id`), UNIQUE KEY `id` (`id`), KEY `id_2` (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=37 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci COMMENT='Servers to be monitored'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `servers` -- LOCK TABLES `servers` WRITE; /*!40000 ALTER TABLE `servers` DISABLE KEYS */; INSERT INTO `servers` VALUES (8,'funpic','0','heimam.funpic.de',1), (5,'mamweb','0','www.mamweb.at',1), (6,'coolfreepage','0','heimam.coolfreepage.com',1), (7,'byethost','0','heimam.byethost4.com',1), (9,'at.vu','0','heimam.at.vu',1), (10,'net.ms','0','mam.net.ms',1), (11,'de.vu','0','paperweb.de.vu',1), (12,'unet/~a9003211','0','unet.univie.ac.at',1), (13,'freewebs/heimam','0','freewebs.com',1), (14,'homebase-it','0','homebase-it.byethost22.com',1), (16,'eqo','0','heimam.eqo.de',1), (17,'roma','0','roma.byethost33.com',1), (18,'roma.at.vu','0','roma.at.vu',1), (19,'mamweb','0','www.mamweb.at',3), (20,'funpic','0','heimam.he.funpic.de',3), (21,'coolfreepage','0','heimam.coolfreepage.com',3), (22,'byethost','0','heimam.byethost4.com',3), (23,'unet','0','unet.univie.ac.at',3), (25,'eqo','0','www.eqo.de',3), (26,'homebase-it','0','homebase-it.byethost22.com',3), (27,'roma','0','roma.byethost22.com',3), (34,'mamweb','0','www.mamweb.at',4); /*!40000 ALTER TABLE `servers` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2026-08-01 2:00:30