CREATE TABLE [dbo].[packets] (
ts datetime DEFAULT CURRENT_TIMESTAMP NOT NULL,
filterid smallint NOT NULL,
filtername char(30),
proto smallint,
tos smallint,
src_mac char(16),
src_ip char(16),
src_port int,
dst_mac char(16),
dst_ip char(16),
dst_port int,
sent int, recv int)
|