You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
637 B
17 lines
637 B
create table flowstat (
|
|
`id` int(10) AUTO_INCREMENT NOT NULL,
|
|
`src_ip` CHAR(8) NOT NULL,
|
|
`dst_ip` CHAR(8) NOT NULL,
|
|
`proto` smallint(2) unsigned NOT NULL DEFAULT 0,
|
|
`src_port` smallint(5) unsigned NOT NULL DEFAULT 0,
|
|
`dst_port` smallint(5) unsigned NOT NULL DEFAULT 0,
|
|
`octets` INT unsigned NOT NULL DEFAULT 0,
|
|
`packets` INT unsigned NOT NULL DEFAULT 0,
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
|
|
|
|
|
|
|
INSERT INTO flowstat(`src_ip`, `dst_ip`, `proto`, `src_port`, `dst_port`, `octets`, `packets`) VALUES
|
|
('c0a80201', 'c0a805ba', 6, 49150, 443, 5281, 13),
|
|
('c0a80201', 'c0a805ba', 6, 49150, 443, 5281, 13)
|