First time here? Check out the FAQ!
THIS IS A TEST INSTANCE. Feel free to ask and answer questions, but take care to avoid triggering too many notifications.
0

ip source and destination appears to be backwards

  • retag add tags

My ip.src filter doesn't seem to be working correctly It looks to be backwards. Or am I looking at the data flow backwards its suppose to be flowing from 10.38.14.55 to 10.38.1.200.

https://ibb.co/D77t5Yb

image description

jbpollard's avatar
3
jbpollard
asked 2019-02-07 17:04:57 +0000, updated 2019-02-07 17:06:29 +0000
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

3 Answers

0

I think it's the tcp.srcport == 1911 element of your filter that's the issue, it's restricting traffic to the flow from that port. To see the traffic going in the other direction you'd have to either or tcp.srcport == 61140 to see both srcports, or change the port filter to tcp.port == 1911 to see any packet that uses that port either as source or destination.

grahamb's avatar
23.8k
grahamb
answered 2019-02-07 18:32:05 +0000
edit flag offensive 0 remove flag delete link

Comments

add a comment see more comments
0

Try this display filter:

ip.src==10.38.14.55 && tcp.srcport==1911

The /20 in your display filter is causing both the 10.38.14.55 and 10.38.1.200 since both of these IP addresses are part of the 10.38.0.0/20 network (10.38.0.0 to 10.38.15.255)

Amato_C's avatar
1.2k
Amato_C
answered 2019-02-07 18:21:26 +0000
edit flag offensive 0 remove flag delete link

Comments

add a comment see more comments
0

That worked thanks!. Still confused is to why it shows the destination as 10.38.14.55 because I am sending information out from that address and I have port 1911 blocked so 10.38.1.200 shouldn't be able to send data to 10.38.14.55. I am running wireshark on 10.38.14.55 computer. Am I just confusing what the source and destination really is I am think from is source and to is destination.

jbpollard's avatar
3
jbpollard
answered 2019-02-07 18:55:19 +0000
edit flag offensive 0 remove flag delete link

Comments

Which answer helped! Your "answer" should be moved as a comment under the appropriate one.

grahamb's avatar grahamb (2019-02-07 19:01:34 +0000) edit
add a comment see more comments

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss.

Add Answer