Ask Your Question
0

How to track packets from a certain ip?

asked 2019-06-25 05:18:19 +0000

Bigjenkins34 gravatar image

A group of my friends are playing an online game and we want to know when we are getting matched with each other without having to load into the game first. I have the ip of the other teams host and was looking for info on how to setup wireshark to let me know when his ip is sending packets to mine?? Any suggestions?

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2019-06-25 11:57:10 +0000

Harvey gravatar image

for example :

(ip.src == 192.168.167.200) && (ip.dst == 192.168.167.205)

where IP_SOURCE = 192.168.167.200 and IP_DESTINATION = 192.168.167.205

edit flag offensive delete link more

Comments

So I would type that in with my ip being destination and his IP being source?

Bigjenkins34 gravatar imageBigjenkins34 ( 2019-06-25 13:52:22 +0000 )edit

you should have || OR instead of &&, when your IP is either the source or the destination of the packet, for a display filter, host 192.168.167.200 || host 192.168.167.205 for the capture filter, may work better in order to have a capture of all packet going/coming from/to that IP address(es)

xinxolHH gravatar imagexinxolHH ( 2019-06-25 14:36:56 +0000 )edit

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 2019-06-25 05:18:19 +0000

Seen: 530 times

Last updated: Jun 25 '19