C
cadfael
All,
I have a worksheet which contains time-stamped firewall data. The dat
can be grouped by matching fields (e.g. all the ones with matchin
source and destination IP address pairs and expected TCP sequenc
numbers can be grouped together as one "conversation" between tw
hosts).
What I want to do is reduce these ENORMOUS lists by only listing th
first and the last endpoint-to-endpoint transaction.
So if you have data like so:
Entry(1), Date(1), Time(1), source(1), dest(1)
Entry(2), Date(1), Time(2), source(1), dest(1),
Entry(3), Date(1), Time(3), source(1), dest(1)
Entry(4), Date(1), Time(4), source(1), dest(1)
Entry(5), Date(1), Time(5), source(1), dest(1)
Entry(6), Date(1), Time(6), source(1), dest(1)
Entry(7), Date(1), Time(7), source(2), dest(1)
Entry(8), Date(1), Time(8), source(2), dest(1),
Entry(9), Date(1), Time(9), source(2), dest(1)
Entry(10), Date(1), Time(10), source(2), dest(1)
Entry(11), Date(1), Time(11), source(2), dest(1)
Entry(12), Date(1), Time(12), source(2), dest(1)
I just want to run some function which would return only entries
1, 6, 7, and 12, or in other words erase all but those functions.
Any ideas?
Thanks in advance,
Pet
I have a worksheet which contains time-stamped firewall data. The dat
can be grouped by matching fields (e.g. all the ones with matchin
source and destination IP address pairs and expected TCP sequenc
numbers can be grouped together as one "conversation" between tw
hosts).
What I want to do is reduce these ENORMOUS lists by only listing th
first and the last endpoint-to-endpoint transaction.
So if you have data like so:
Entry(1), Date(1), Time(1), source(1), dest(1)
Entry(2), Date(1), Time(2), source(1), dest(1),
Entry(3), Date(1), Time(3), source(1), dest(1)
Entry(4), Date(1), Time(4), source(1), dest(1)
Entry(5), Date(1), Time(5), source(1), dest(1)
Entry(6), Date(1), Time(6), source(1), dest(1)
Entry(7), Date(1), Time(7), source(2), dest(1)
Entry(8), Date(1), Time(8), source(2), dest(1),
Entry(9), Date(1), Time(9), source(2), dest(1)
Entry(10), Date(1), Time(10), source(2), dest(1)
Entry(11), Date(1), Time(11), source(2), dest(1)
Entry(12), Date(1), Time(12), source(2), dest(1)
I just want to run some function which would return only entries
1, 6, 7, and 12, or in other words erase all but those functions.
Any ideas?
Thanks in advance,
Pet