我正在研究導入和導出淨流量數據的程序。由於我們的通用架構,用XML描述這些信息是有意義的。是否存在用於描述淨流量數據的XML?是否有描述淨流量數據的XML模式?
NetFlow數據很好的說明可以在此的Usenix論文http://www.usenix.org/events/lisa00/full_papers/navarro/navarro_html/
發現根據文件,用於描述淨流量數據的SQL模式是:
create table netflows (
router_id char(1) not null,
src_ipn bigint unsigned not null,
dst_ipn bigint unsigned not null,
nxt_ipn bigint unsigned not null,
ifin smallint unsigned not null,
ifout smallint unsigned not null,
packets integer unsigned not null,
octets integer unsigned not null,
starttime timestamp not null,
endtime timestamp not null,
srcport smallint unsigned not null,
dstport smallint unsigned not null,
tcp tinyint unsigned not null,
prot tinyint unsigned not null,
tos tinyint unsigned not null,
srcas smallint unsigned not null,
dstas smallint unsigned not null,
srcmask tinyint unsigned not null,
dstmask tinyint unsigned not null
)
這是很容易把這個轉換爲XML模式。我的興趣在於知道是否有人已經這樣做了,因爲我不想創建新的不兼容的模式。
謝謝。
是的,創建新的XML非常簡單。我只想知道是否有人已經做到了。 – vy32 2012-04-06 02:28:06