๋ณธ๋ฌธ ๋ฐ”๋กœ๊ฐ€๊ธฐ

๐ŸŽ iOS/iOS Application

[iOS, Network] Wireshark๋กœ ๋„คํŠธ์›Œํฌ ํŒจํ‚ท ๋ถ„์„ํ•˜๊ธฐ(5) - Wireshark ํ•„ํ„ฐ๋ง ๋ช…๋ น์–ด - IP ๊ฒ€์ƒ‰, ํฌํŠธ ๊ฒ€์ƒ‰

728x90

1. IP ๊ฒ€์ƒ‰

(1) Source, DST ๋‘˜ ๋‹ค 

ip.add == 233.130.195.98

(2) Source

ip.src == 233.130.195.98

(3) Destination

ip.dst == 233.130.195.98

2. ํฌํŠธ(port) ๊ฒ€์ƒ‰

(1) Source, DST ๋‘˜ ๋‹ค 

tcp.port == 80

(2) Source

tcp.srcport == 80

(3) Destination 

tcp.dstport == 80

3. ๋ช…๋ น์–ด ํ˜ผํ•ฉ

(1) and 

>> ๋‘ ์กฐ๊ฑด ๋ชจ๋‘ ์„ฑ๋ฆฝํ•˜๋Š” ๊ฒฝ์šฐ 

ip.add == 233.130.195.98 and tcp.port == 80

(2) or

>> ๋‘ ์กฐ๊ฑด ์ค‘ ํ•˜๋‚˜๋ผ๋„ ์„ฑ๋ฆฝํ•˜๋Š” ๊ฒฝ์šฐ

ip.add == 233.130.195.98 or tcp.port == 80
๋ฐ˜์‘ํ˜•