🚀 DevOps & SRE Certification Program 📅 Starting: 1st of Every Month 🤝 +91 8409492687 🔍 Contact@DevOpsSchool.com

Upgrade & Secure Your Future with DevOps, SRE, DevSecOps, MLOps!

We spend hours on Instagram and YouTube and waste money on coffee and fast food, but won’t spend 30 minutes a day learning skills to boost our careers.
Master in DevOps, SRE, DevSecOps & MLOps!

Learn from Guru Rajesh Kumar and double your salary in just one year.


Get Started Now!

Shell Bash Scripting: Assignment & Excercise – 6


Write a Shell Bash Script for gather information related to server


#!/bin/bash
IP4FW=/sbin/iptables
IP6FW=/sbin/ip6tables
LSPCI=/usr/bin/lspci
ROUTE=/sbin/route
NETSTAT=/bin/netstat
LSB=/usr/bin/lsb_release
## files ##
DNSCLIENT="/etc/resolv.conf"
DRVCONF="/etc/modprobe.conf"
NETALIASCFC="/etc/sysconfig/network-scripts/ifcfg-eth?-range?"
NETCFC="/etc/sysconfig/network-scripts/ifcfg-eth?"
NETSTATICROUTECFC="/etc/sysconfig/network-scripts/route-eth?"
SYSCTL="/etc/sysctl.conf"
## Output file ##
OUTPUT="network.$(date +'%d-%m-%y').info.txt"
## Email info to?? ##
SUPPORT_ID="your_name@service_provider.com"
chk_root() {
local meid=$(id -u)
if [ $meid -ne 0 ]; then
echo "You must be root user to run this tool"
exit 999
fi
}
write_header() {
echo "---------------------------------------------------" >>$OUTPUT
echo "$@" >>$OUTPUT
echo "---------------------------------------------------" >>$OUTPUT
}
dump_info() {
echo "* Hostname: $(hostname)" >$OUTPUT
echo "* Run date and time: $(date)" >>$OUTPUT
write_header "Linux Distro"
echo "Linux kernel: $(uname -mrs)" >>$OUTPUT
$LSB -a >>$OUTPUT
[ -x ${HWINF} ] && write_header "${HWINF}"
[ -x ${HWINF} ] && ${HWINF} >>$OUTPUT
[ -x ${HWINF} ] && write_header "${HWINF}"
[ -x ${HWINF} ] && ${HWINF} >>$OUTPUT
write_header "PCI Devices"
${LSPCI} -v >>$OUTPUT
write_header "$IFCFG Output"
$IFCFG >>$OUTPUT
write_header "Kernel Routing Table"
$ROUTE -n >>$OUTPUT
write_header "Network Card Drivers Configuration $DRVCONF"
[ -f $DRVCONF ] && grep eth $DRVCONF >>$OUTPUT || echo "Error $DRVCONF file not found." >>$OUTPUT
write_header "DNS Client $DNSCLIENT Configuration"
[ -f $DNSCLIENT ] && cat $DNSCLIENT >>$OUTPUT || echo "Error $DNSCLIENT file not found." >>$OUTPUT
write_header "Network Configuration File"
for f in $NETCFC; do
if [ -f $f ]; then
echo "** $f **" >>$OUTPUT
cat $f >>$OUTPUT
else
echo "Error $f not found." >>$OUTPUT
fi
done
write_header "Network Aliase File"
for f in $NETALIASCFC; do
if [ -f $f ]; then
echo "** $f **" >>$OUTPUT
cat $f >>$OUTPUT
else
echo "Error $f not found." >>$OUTPUT
fi
done
write_header "Network Static Routing Configuration"
for f in $NETSTATICROUTECFC; do
if [ -f $f ]; then
echo "** $f **" >>$OUTPUT
cat $f >>$OUTPUT
else
echo "Error $f not found." >>$OUTPUT
fi
done
write_header "IP4 Firewall Configuration"
$IP4FW -L -n >>$OUTPUT
write_header "IP6 Firewall Configuration"
$IP6FW -L -n >>$OUTPUT
write_header "Network Stats"
$NETSTAT -s >>$OUTPUT
write_header "Network Tweaks via $SYSCTL"
[ -f $SYSCTL ] && cat $SYSCTL >>$OUTPUT || echo "Error $SYSCTL not found." >>$OUTPUT
echo "The Network Configuration Info Written To $OUTPUT. Please email this file to $SUPPORT_ID."
}
chk_root
dump_info
Subscribe
Notify of
guest


0 Comments
Newest
Oldest Most Voted
Inline Feedbacks
View all comments

Certification Courses

DevOpsSchool has introduced a series of professional certification courses designed to enhance your skills and expertise in cutting-edge technologies and methodologies. Whether you are aiming to excel in development, security, or operations, these certifications provide a comprehensive learning experience. Explore the following programs:

DevOps Certification, SRE Certification, and DevSecOps Certification by DevOpsSchool

Explore our DevOps Certification, SRE Certification, and DevSecOps Certification programs at DevOpsSchool. Gain the expertise needed to excel in your career with hands-on training and globally recognized certifications.

0
Would love your thoughts, please comment.x
()
x