博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
arping命令用法
阅读量:6544 次
发布时间:2019-06-24

本文共 880 字,大约阅读时间需要 2 分钟。

arping命令使用说明

BusyBox v1.17.3 (2011-07-20 17:01:30 CST) multi-call binary.

Usage: arping [-fqbDUA] [-c CNT] [-w TIMEOUT] [-I IFACE] [-s SRC_IP] DST_IP

Send ARP requests/replies

Options:

-f Quit on first ARP reply
-q Quiet
-b Keep broadcasting, don't go unicast
-D Duplicated address detection mode
-U Unsolicited ARP mode, update your neighbors
-A ARP answer mode, update your neighbors
-c N Stop after sending N ARP requests
-w TIMEOUT Time to wait for ARP reply, seconds
-I IFACE Interface to use (default eth0)
-s SRC_IP Sender IP address
DST_IP Target IP address

例如,要将接口ip广播给对端,可以发送免费arp请求,arping -I ethX -s  x.x.x.x  x.x.x.x,如命令中两个接口ip相同,即为发送免费arp请求;

同样,也可以用接口源ip去请求网关ip,避免对端学不到本端接口ip,命令 arping -I ethX -s x.x.x.x(接口ip) x.x.x.x(对端网关ip)

如要进行自动广播,可以考虑将命令写入到shell脚本中,如下:

#!/bin/sh

arping -I eth0 -c 1 -s 2.2.2.2 2.2.2.1 >/dev/null

转载于:https://www.cnblogs.com/showery/p/9198073.html

你可能感兴趣的文章
asp.net 数据集导出Excel方法
查看>>
ArcEngine创建字段集
查看>>
HDU 4278 Faulty Odometer【进制转换】
查看>>
android studio 导入主题设置,代码风格(附带eclipse 主题代码样式)
查看>>
markdown 简单教程
查看>>
二叉树1
查看>>
【leetcode】402. Remove K Digits
查看>>
RESTful API 设计最佳实践
查看>>
用于构建 RESTful Web 服务的多层架构
查看>>
转载C#加密方法
查看>>
eclipse中类和方法添加作者日期说明
查看>>
Python 精要参考(第二版) 第二章 语法及代码约定
查看>>
新学期的合作
查看>>
Beginners MYSQL Database Tutorial# How to install MySQL on Ubuntu
查看>>
PHP之数组学习
查看>>
PHP判断远程文件是否存在
查看>>
JS 转义&反转义 HTML标签、特殊字符
查看>>
KVC集合操作符
查看>>
[转载]ext4文件系统的delalloc选项造成单次写延迟增加的分析
查看>>
Entity Framework 小知识(二)
查看>>