How to check open ports in Linux using nc, telnet and curl command ?
Today in this post, we will see how to check for open port in Linux using telnet and curl commands. I. Using Telnet command Telnet command is very common,...
Today in this post, we will see how to check for open port in Linux using telnet and curl commands. I. Using Telnet command Telnet command is very common,...
Suppose you have a list of servers, and you want to check for a particular port on which server its open. So if you telnet each server on that port...
In this post, we will look how to set maximum user processes in linux. I. Check current process limit. user@server02:~> ulimit -a core file size (blocks, -c) unlimited data seg...
Today lets see quickly how to print a sequence of 100 numbers using while loop in bash shell on Linux. Printing sequence of 100 numbers a. Empty the file. [root@ngelinux001...
Today we will look at a small yet very useful command of IBM AIX OS. Do you know how to see the serial number of an IBM AIX OS ?...
Today we will look how to get the process details which is using a particular socket or port in AIX. 1. Get the port number socket details. ngeaix091--> netstat -Aan|...
I. Introduction Entropy pool is a large number (typically around 4096 bits) stored in a memory location which can be read by programs. This large number is a random number...
Lets look how to create functions in python. For example:- We will create two functions: 1. To say “Hello World” to the world. 2. To square a number and get...
Today we will look at a sample program or python script to get maximum number out of a set of numbers say 3. Lets have a look at the program....