First of all sorry if this is a dumb question i am somehow unexperienced... i want to search with my network card but filter out my own traffic ... i guess the best would be to use asked 17 Apr '14, 14:49 astrionn edited 17 Apr '14, 17:09 |
2 Answers:
This is usually done by either removing all protocol bindings from the network card (especially IP addresses), or you could filter out your own MAC address. Something like "not ether host your-MAC-address". answered 17 Apr '14, 15:18 Jasper ♦♦ okay seems legit thx (17 Apr '14, 15:51) astrionn |
Substitute the "and not" on everything to "or not" answered 20 Apr '15, 09:28 skiltvakt |
okay i tried to exclude my ip address via 'not ip.addr == myip' but still get my data because i dont think that my neighbor visited the same sites like me ...
okay by now i excluded my ip address with ip.addr adn excluded my MAC´s but still see traffic i did ... what can i do ?
okay now i guess i did all i could even imagine to do to exclude my traffic and still see my traffic ...
not ip.addr == xxx.x.xx.xxx and not ip.src == xxx.x.xx.xx and not mac ==xx-xx-xx-xx-xx-xx and not mac ==xx-xx-xx-xx-xx-xx and not ip ==xxx.x.x.x and not ip.dst == xxx.x.xx.xxx and not ip.src == xxx.x.xx.xxx
i just copy paste this filter ... and i still see my own traffic ...