File: ntop_flows.sql

package info (click to toggle)
ntop 3%3A5.0.1%2Bdfsg1-2.1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 15,720 kB
  • ctags: 11,480
  • sloc: ansic: 79,804; sh: 21,658; python: 1,948; awk: 1,504; perl: 971; makefile: 745; php: 123; xml: 71; sql: 13; sed: 11
file content (35 lines) | stat: -rw-r--r-- 872 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35


# phpMyAdmin MySQL-Dump
# version 2.3.0-rc3
# http://phpwizard.net/phpMyAdmin/
# http://www.phpmyadmin.net/ (download page)
#
# Host: localhost
# Generation Time: Jul 22, 2002 at 05:50 PM
# Server version: 3.23.49
# PHP Version: 4.1.2
# Database : `ntop`
# --------------------------------------------------------

#
# Table structure for table `flows`
#

CREATE TABLE flows (
  ipSrc varchar(19) NOT NULL default '',
  ipDst varchar(19) NOT NULL default '',
  pktSent int(11) NOT NULL default '0',
  bytesSent mediumint(9) NOT NULL default '0',
  startTime time NOT NULL default '00:00:00',
  endTime time NOT NULL default '00:00:00',
  srcPort smallint(6) NOT NULL default '0',
  dstPort smallint(6) NOT NULL default '0',
  tcpFlags tinyint(4) NOT NULL default '0',
  proto tinyint(4) NOT NULL default '0',
  tos tinyint(4) NOT NULL default '0'
) TYPE=MyISAM;