Shell script gets the MAC address of the intranet host in bulk

Source: Internet
Author: User
This shell script is used to obtain the MAC address of the intranet host of the 192.168.4.0/24 network segment in bulk

#!/bin/bash#Author:Jink#这脚本使用ping和arp命令获取内网主机的MAC地址,查询到的MAC地址写入到文件中myping(){    ping -c2 -w1 -i0.5 $1 &>/dev/null    if [ $? -eq 0 ];then        arp $1 | tail -1 | awk ‘{print $1,$3}‘>> /tmp/mactable.txt    fi}for i in {1..254}do    myping 192.168.4.$i &done

Shell script gets the MAC address of the intranet host in bulk

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.