TEST Engineering/Qualcomm Tools
pcap file의 dump, 그리고 가져오기
얍얍폴폴
2018. 3. 8. 09:51
Call Testing에서 wireshark를 통한 packet 분석을 하려면 일반적으로 pcap 파일을 생성 해서 분석을 해야 한다.
예전 2G, 3G에서는 Qualcomm에서 제공하는? QXDM 과 같은 툴로 pcap 파일을 추출 했지만 요즘은 대부분 스마트 폰이기 때문에 Rooted 가 되어 있다면 root 권한으로 단말과 PC를 바로 연결 하여 pcap을 추출 할 수 있다.
# Android
- tcpdump 명령어를 이용하여 가지고 올수 있다.
1. tcpdump command
>> adb shell tcpdump -p -vv -s 0 -i any -w "saved local path".pcap
2. Stored tcpdump on your PC
>> adb pull "local saved path and fail name".pcap
# iOS
아래의 링크를 참조하면 된다.
http://passorfail.tistory.com/64
# What do you checking the cases by pcap
>> push server에서 hvroom을 통해 push message 가 정상적으로 client에 뿌려지는지 확인 (그밖에 header 규격이나 message 규격이 맞는지도 검토)