Flood spars des virus
darcs-hash:20050831234226-6d78a-197b379577ac5bc2657593429ba5058920b6cb0c.gz
This commit is contained in:
parent
db137d4ca3
commit
42386de84e
1 changed files with 10 additions and 1 deletions
|
@ -33,6 +33,15 @@ CREATE TABLE virus (
|
|||
port_dest integer NOT NULL,
|
||||
CONSTRAINT virus_protocole FOREIGN KEY (id) REFERENCES protocole (id));
|
||||
|
||||
-- Table Flood : date | source | destinataire | protocole | port source | port dest
|
||||
CREATE TABLE virus (
|
||||
date timestamp NOT NULL,
|
||||
ip_src inet NOT NULL,
|
||||
ip_dest inet NOT NULL,
|
||||
id integer NOT NULL,
|
||||
port_src integer NOT NULL,
|
||||
port_dest integer NOT NULL,
|
||||
CONSTRAINT flood_protocole FOREIGN KEY (id) REFERENCES protocole (id));
|
||||
|
||||
-- Table upload : date | source | destinataire | protocole | port source | port dest | download | upload
|
||||
CREATE TABLE upload (
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue