簡介php
教程html
命令linux
[root@localhost ~]# tcpdump --help tcpdump version 4.1-PRE-CVS_2012_03_26 libpcap version 1.4.0 Usage: tcpdump [-aAdDefIKlLnNOpqRStuUvxX] [ -B size ] [ -c count ] [ -C file_size ] [ -E algo:secret ] [ -F file ] [ -G seconds ] [ -i interface ] [ -M secret ] [ -r file ] [ -s snaplen ] [ -T type ] [ -w file ] [ -W filecount ] [ -y datalinktype ] [ -z command ] [ -Z user ] [ expression ]
故障:A機器提供web服務器,B機器curl,瞬間返回結果;C機器curl,間隔20秒後,才返回結果web
排查過程:express
結果獲得兩份tcp包,藉助wireshark工具進行分析 A到B 服務器
A到C 網絡
從上述截圖能夠看出,問題出如今php的擴展xdebug,打開php配置文件,註釋xdebug後,恢復正常訪問 緣由在phpxdebug調試的時候,A到B被xdebug進行了控制handle
curl
zend_extension=xdebug.so xdebug.default_enable = On xdebug.collect_params = On xdebug.remote_connect_back = On xdebug.remote_host = xdebug.remote_port = 9090 xdebug.remote_enable = On xdebug.remote_handler = dbgp xdebug.remote_log = "/tmp/xdebug.log"
@author 詹巨章 zhanjuzhang@gmail.comtcp
@date 2015/7/19 16:27:25工具