openwrt如何抓包
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了openwrt如何抓包相关的知识,希望对你有一定的参考价值。
参考技术A 用 tcpdump, openwrt 官方已经有该软件的安装包,需要安装一下。用下面的命令行(root 用户下)是抓取 dns 包,看你要抓取的内容,需要修改相应的参数tcpdump -C 1 -p -w /tmp/dns.pcap -i pppoe-wan -s 600 udp port 53
抓包得到的 log 文件 dns.pcap 可以用 wireshark 打开本回答被提问者和网友采纳
跟着佐大学Lede/OpenWrt培训班讲义-03如何配置OpenWrt开发环境?
备注:
此文是佐须之男"跟着佐大学OpenWrt开发"入门培训班教学视频演讲稿提纲,虽是内部资料但再三考虑后对外公布,通过公众的监督来鞭策自己。如对完整内容感兴趣,可以参加"跟着佐大学OpenWrt开发"入门培训班:http://forgotfun.org/2018/04/openwrt-training-2018.html。
-
安装虚拟机,Virtualbox或者VMvare
-
安装Ubuntu 16.04 64位系统
-
安装开发环境,选择速度最快的源,然后执行 sudo apt-get updagte;接下来执行 sudo apt-get install gcc g++ binutils patch bzip2 flex bison make autoconf gettext texinfo unzip sharutils libncurses5-dev ncurses-term zlib1g-dev gawk asciidoc libz-dev git-core uuid-dev libacl1-dev liblzo2-dev pkg-config libc6-dev curl libxml-parser-perl ocaml-nox
-
下载OpenWrt源码,执行 git clone https://git.lede-project.org/source.git lede,大家可以根据自己的实际需求来checkout代码,这里只是做演示。
-
编译系统 make V=99
以上是关于openwrt如何抓包的主要内容,如果未能解决你的问题,请参考以下文章