Question

In: Computer Science

i want to write bash script that generates syslog if my machine has been pinged this...

i want to write bash script that generates syslog if my machine has been pinged

this is my code, but it is not full and not work as i want

#!/bin/bash

status=`echo "$?"`

monitor=`sudo tcpdump -i eth0 icmp and icmp[icmptype]=icmp-echo -n`

if [ "$status" -eq 0 ]; then

sleep 5s

pkill -f "$0"

`echo "$monitor" | awk '{print $3}'

fi

Solutions

Expert Solution

Following command will dump the ping logs continuously to the log file. This will monitor all the interfaces attached to the machine. If you need to monitor only a specific network interface then find the interface name using networksetup -listallhardwareports and find the interface you wan to monitor

sudo tcpdump -i any icmp > log.txt

If you need only few number of output you can use below command which will output only 5 ping dumps

sudo tcpdump -i any -c5 icmp

The tcpdump command process will continue dumping the ICMP request until terminate the process. But if we are giving specific number of response then the program will stop after those requests are completed.


status=`echo "$?"`

monitor=`sudo sudo tcpdump -i any -c5 icmp`

if [ $? -eq 0 ] && [ -n "$monitor" ]; then

sleep 5s

echo "$0"

pkill -f "$0"

echo "$monitor" | awk '{print $3}'

fi

Ping command issued from another terminal

Sample output


Related Solutions

I am attempting to write a script using bash on Linux. My program must save the...
I am attempting to write a script using bash on Linux. My program must save the long list format of the parent directory to a text file. Then, it must print how many items are in this parent directory. Then, it must sort the file in reverse order and save it to a different text file. I understand that the parent directory is accessed using cd .., and I understand that a file can be written to by echoing and...
Program in Bash: Write a program using bash script that can read a file from the...
Program in Bash: Write a program using bash script that can read a file from the same directory, sort the nonrepeating integers from 0-9 from smallest to largest, and output the results on the same line. Do not use the sort function.
Program in Bash: Write a program using bash script that can read a file from the...
Program in Bash: Write a program using bash script that can read a file from the same directory, sort the nonrepeating integers from 0-9 from smallest to largest, and output the results on the same line. Do not use the sort function.
Fully Functional Script written in BASH In this section, you will write a fully functional script...
Fully Functional Script written in BASH In this section, you will write a fully functional script to help your manager with an important project that will build upon what you learned from your script work in Milestone Four. After you have written the script, you will execute it to generate a report for all three users (once for Bob, once for Henry, and once for Frank). You should have three unique generated reports in your ~/scripts directory (or more if...
⦁   Write a Bash script that prompts for user input and reads a string of text...
⦁   Write a Bash script that prompts for user input and reads a string of text from the user. If the user enters a no null (no empty) string, the script should prompt the user to re-enter again the string; otherwise should display the string entered “. ⦁   Given an array of the following four integers (3, 5, 13, 14); write a Bash script to display the second and all elements in the array.    ⦁   Write a short Bas...
this is bash scripting. a. Write a shell script that adds an extension “.deb” to all...
this is bash scripting. a. Write a shell script that adds an extension “.deb” to all the files in a directory. b. Write a command sequence or a script to insert a line “GHIJKLM” at every 10th line of a file? c. Write a bash command or script to find all the files modified in less than 5 days and print the record count of each.
Bash Script Write a script using while-do-done loop to convert the kilometers to miles. - Ask...
Bash Script Write a script using while-do-done loop to convert the kilometers to miles. - Ask the user to input the number of kilometers they need to travel. - Display the number of equivalent miles for the number. Use formula, Kilometers = miles/0.62137 - Every time the loop runs, it should ask the user if they want to continue, if user enters “Y” or “y”, then the loop runs again, if user enters “N” or “n”, then stop the loop...
Write a bash script that... create new user ./finalProject user if a new user is to...
Write a bash script that... create new user ./finalProject user if a new user is to be created ask for the new users information and use it when creating the new user add a new printer ./finalProject printer ask anything you need in order to create the new printer (I.e. name) permissions ./finalProject permissions ask what document and permissions the user wants restarting the computer ./finalProject restart
Write a bash script named q1f.sh that will edit the PATH environment variable to include the...
Write a bash script named q1f.sh that will edit the PATH environment variable to include the sourcefiles directory in your home directory and make the new variable global. Please show picture of output.
UNIX ONLY Write a bash script that will accept a filename as a command line argument....
UNIX ONLY Write a bash script that will accept a filename as a command line argument. Your script should first check whether the filename has been passed as argument or not (hint: at least one argument has to be provided). If no argument has been provided your script should display appropriate message and exit. If a file name has been provided, your script should check if the file exists in the current directory and display the contents of the file....
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT