PING pros and cons

 
Thread Tools Search this Thread
Special Forums UNIX and Linux Applications Infrastructure Monitoring PING pros and cons
# 1  
Old 09-28-2010
PING pros and cons

I have some questions regarding ping

a. im planning to add all my servers to nagios for monitoring purposes. since nagios will do "PING" on the IP address (to check if UP or down), will there be affect on all my servers? say resource utilization, memory, etc? Will it add up or slow down the performance? I believe none right?

b. in order to add and configure all IP to nagios, do I just need to add the nagios IP to the routing table of my servers? All I need is that nagios should be able to ping my servers and decide if its pingable or timeout.

thanks you
# 2  
Old 09-28-2010
Quote:
Originally Posted by lhareigh890
a. im planning to add all my servers to nagios for monitoring purposes. since nagios will do "PING" on the IP address (to check if UP or down), will there be affect on all my servers? say resource utilization, memory, etc? Will it add up or slow down the performance? I believe none right?
No. It would minimally affect your network utilization.

Quote:
Originally Posted by lhareigh890
b. in order to add and configure all IP to nagios, do I just need to add the nagios IP to the routing table of my servers? All I need is that nagios should be able to ping my servers and decide if its pingable or timeout.
No. You should not need to change anything on your servers. The routers need to allow ping traffic (protocol UDP:ICMP) which is enabled by default.


HTH
# 3  
Old 09-28-2010
a. how minimal? say i will adding hundreds of servers? network utlization not the utlization of my server?

b. why UDP not TCP?

thankyou
# 4  
Old 09-28-2010
a) The "ping" command uses trivial resources if used in moderation. Keep the frequency of a "ping" poll to multiple servers down to minutes or hours rather than seconds.
If (and only if) the "nagios" monitoring server cannot "see" all the servers with "ping" you will indeed need to update your routing tables on the "nagios" server and every monitored server.
Depends on how your network is configured.

b) The "ping" command uses UDP protocol not TCP/IP .
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Programming

Ping test sends mail when ping fails

help with bash script! im am working on this script to make sure my server will stay online, so i made this script.. HOSTS="192.168.138.155" COUNT=4 pingtest(){ for myhost in "$@" do ping -c "$COUNT" "$myhost" &&return 1 done return 0 } if pingtest $HOSTS #100% failed... (4 Replies)
Discussion started by: mort3924
4 Replies

2. UNIX for Advanced & Expert Users

Pros and cons of a Journaled file System

Hello, Could anyone please enumerate some of the pros and cons to using a Journaled FileSystem? ---------- Post updated at 02:46 PM ---------- Previous update was at 02:45 PM ---------- I know clearly not losing data during a failed move or copy is a big pro, correct? Let's build off of... (8 Replies)
Discussion started by: glev2005
8 Replies

3. Shell Programming and Scripting

Pros and cons for Text User Interface and Curses::UI

Anyone has experience or study with Text User Interface and Curses::UI using Perl? - What is the criteria to decide which method is better for a console based UI? - Which DTL (dialog tag language) is supported by these? The background is that I want to write a wrapper over some UNIX tools... (0 Replies)
Discussion started by: vikrantl
0 Replies

4. Cybersecurity

Password Automation pros/cons

folks, I have a security related question, to all you. Please share your comments with me. I have a situation where i was asked to automate the password in my application, which expires every 6 months. In this case i need to generate a random password and set the password on some... (2 Replies)
Discussion started by: sudharma
2 Replies

5. AIX

AIX 5.2/5.3 - rootvg on SAN disk - pros and cons

We are considering a DR strategy of booting AIX 5.3 and 5.3 logical partitions from EMC Symmetrix SAN disks, so that we can replicate via SRDF to a recovery site. Has anyone tried configuring AIX 5.x systems to boot from SAN disk? If so, can you provide any information on the pros and cons of... (6 Replies)
Discussion started by: jjgarrot
6 Replies

6. AIX

Easy question for you pros

I have a folder with about 4000+ files. I would like to compress all these files with one command. When I type "compress *.ext" for example, I get "arg list too long". I tried the following: for k in * do compress *.ext done Still got "The parameter list is too long." How can I compress... (4 Replies)
Discussion started by: bbbngowc
4 Replies

7. AIX

NFS Pros and Cons

Can anyone provide the pros and cons of having an NFS mount on an AIX server. Or direct me to documentation that provides this information. Thanks... (1 Reply)
Discussion started by: mcateriny
1 Replies

8. UNIX for Dummies Questions & Answers

2 simple questions the linux pros will be able to get. Pleese help!

Allright the situation is that i have a dual boot set up with windows xp and red hat 9.0. the problem is that my modem and sound card dont work with linux. I found a driver, and i have to download it with xp. My question is..... How do i actually copy the file to the linux... (4 Replies)
Discussion started by: nregenwether
4 Replies

9. UNIX for Dummies Questions & Answers

Pro's and cons for Linux

Hi there thanks for checking in The I T manager over here wants us to convert 1 branch in our company from Win98 to Linux I would just like to know the types of problems that we will have once this is done. I would also like to know the following. Does Linux come with a Office package... (3 Replies)
Discussion started by: nemex
3 Replies
Login or Register to Ask a Question