- 经验
- 185
- 分贝
- 0
- 家园分
- 1219
- 在线时间:
- 805 小时
- 最后登录:
- 2020-9-1
- 帖子:
- 176
- 精华:
- 0
- 注册时间:
- 2013-10-26
- UID:
- 959048
注册:2013-10-26
|
本帖最后由 keboy520 于 2016-12-8 16:44 编辑
FTTH注册失败时可以用这个命令抓包分析数据
ifconfig镜像方法(适用于所有GPON自研产品)
1)显示所有已经存在的接口
ifconfig
2)做镜像,将WAN连接镜像到FE口
ifconfig mirror add nbif0 eth0 //增加镜像,eth0-3分别对应ONU的网络1-网络4
ifconfig mirror dele nbif0 //删除镜像
ifconfig mirror add eth3 eth0 //将网络4的包镜像到网络1
v3版本推荐镜像命令
镜像全部数据包的方法:
ethdriver_test -setmiror [direction:0->rx,1->tx,2->rx/tx] [desport] [action:0->disable,1->enable]
例如:
ethdriver_test -setmiror 2 0 1 //镜像wan口的报文包到eth0口
v5版本镜像命令
ifconfig mirror add pon0 eth0 //镜像wan口的报文包到eth0口
有些时候会要求镜像二层数据到LAN口,可使用下边命令:
双向数据镜像至LAN1口:
switchtst -spmirr wan 1 2 eth0
|
|