réponse à un ping

réponse à un ping - réseaux et sécurité - Linux et OS Alternatifs

Marsh Posté le 06-08-2003 à 20:50:25    

Je cherche a pouvoir mettre une variable (ou un fichier) à 1 lorsque un ping répond et à 0 sinon,
 
genre:
 
 
si ping répond: echo 1 > /var/run/ping
sinon: echo 0 > /var/run/ping
 
une idée?

Reply

Marsh Posté le 06-08-2003 à 20:50:25   

Reply

Marsh Posté le 06-08-2003 à 20:59:04    

ya un truc dans le man qui parle de ca
 
edit :

Citation :

If ping does not receive any reply packets at all it will exit with code 1. If a packet count and deadline are both specified, and fewer than count packets are received by the time the deadline has arrived, it will also exit with code 1. On other error it exits with code 2. Otherwise it exits with code 0. This makes it possible to use the exit code to see if a host is alive or not.


 
ca devrait t'aider


Message édité par Zaib3k le 06-08-2003 à 21:02:36
Reply

Marsh Posté le 06-08-2003 à 21:11:22    

watcho a écrit :

Je cherche a pouvoir mettre une variable (ou un fichier) à 1 lorsque un ping répond et à 0 sinon,
 
genre:
 
 
si ping répond: echo 1 > /var/run/ping
sinon: echo 0 > /var/run/ping
 
une idée?
 


 

Code :
  1. ping -c 1 host &> /dev/null
  2. if [ $? != 0 ]; then
  3. echo "ping ko"
  4. else
  5. echo "ping ok"
  6. fi

Reply

Marsh Posté le 07-08-2003 à 00:57:37    

J'ai rien demandé  :??:


---------------
-- NO SLACKERS - violators will be fsck'd & tar'd
Reply

Marsh Posté le 07-08-2003 à 03:17:38    

PinG a écrit :

J'ai rien demandé  :??:  

C'est que la variable est a 0  :D

Reply

Marsh Posté le 07-08-2003 à 09:41:55    

alien conspiracy a écrit :

C'est que la variable est a 0  :D  

k ;)


---------------
-- NO SLACKERS - violators will be fsck'd & tar'd
Reply

Marsh Posté le 07-08-2003 à 09:59:31    

PinG a écrit :

J'ai rien demandé  :??:  

tu n'es pas un ping, tu es le PinG :o ;)


---------------
"The pen is mightier than the sword if the sword is very short, and the pen is very sharp." TP. Mes Jeux. Mes Ventes. Groupe HFR sur PlayFire.
Reply

Marsh Posté le 07-08-2003 à 23:39:05    

aiua a écrit :

tu n'es pas un ping, tu es le PinG :o ;)

;)
 
 :hello:


---------------
-- NO SLACKERS - violators will be fsck'd & tar'd
Reply

Marsh Posté le 08-08-2003 à 08:11:39    

:hello:


---------------
"The pen is mightier than the sword if the sword is very short, and the pen is very sharp." TP. Mes Jeux. Mes Ventes. Groupe HFR sur PlayFire.
Reply

Marsh Posté le 08-08-2003 à 09:18:02    

FS : Heureusement k'on est pas sur bla... euh discussions, sinon, on se serait fé TT + fermeture du topic !!! ;) OSA, nouveau blabla ?


---------------
Ce n'est pas parce qu'on est au régime qu'on a pas le droit de regarder le menu...
Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed