Not able to ping a server from an IBM AIX server – Know how to clear DNS cache.
In this post, we will see how to clear DNS cache on an IBM AIX server. It is useful when sometimes we have any outage with any DNS server, or...
In this post, we will see how to clear DNS cache on an IBM AIX server. It is useful when sometimes we have any outage with any DNS server, or...
In this post, we will look how to verify all services on a redhat Satellite server are running or not. Here you will know how to troubleshoot Satellite server issues...
In this post, we will check the ping response from the list of servers using for loop in Unix/Linux. Lets see below script which will check the ping response from...
Lets start with python programming and see how to ping a list of servers from a hosts file. First lets start with program. I. Program import os hostsfile=open("hosts", "r") lines=hostsfile.readlines()...
Today in this post, we will understand how to check ping status of a domain in python programming language. I. Program import os response=os.system("ping -c 2 google.com") if (response ==...
Let us have a look how to view IPv6 addresses in Linux. For this, we can use the same “ifconfig” command. 1. Viewing IPv6 Address [root@ngelinux ]# ifconfig -a enp0s3:...
Let us start creating the ansible yaml scripts or playbooks. The first playbook that we create involves checking if the host is alive or not i.e. ping status of all...
Today let us have a look at an interesting python script to test ping connectivity on a list of hosts. To understand this lets create below script and a hosts...