FreeBSD Cron Job to run (ifconfig em0 down; ifconfig em0 up)

Hinkie Hinkie at paradise.net.nz
Wed Aug 29 12:18:24 PDT 2007


Hi Eric

Thank you for that, I think I see one thing I was doing wrong (putting the ping into the if!)

Running your code in the command window I get (Following the successful ping)

TESTV=0: Command not found.
TESTV: Undefined variable.

As you can tell I am learning this syntax!

Can you help me further?

With thanks

David Hingston

----- Original Message ----- 
From: "Eric Crist" <mnslinky at gmail.com>
To: "Hinkie" <Hinkie at paradise.net.nz>
Cc: <freebsd-questions at FreeBSD.ORG>
Sent: Thursday, August 30, 2007 2:17 AM
Subject: Re: FreeBSD Cron Job to run (ifconfig em0 down; ifconfig em0 up)


On Aug 29, 2007, at 8:03 AMAug 29, 2007, Hinkie wrote:

> Hi
>
> I want to run a cron job in /etc/crontab that runs (ifconfig em0  
> down; ifconfig em0 up) if my cables static ip gateway can't be  
> pinged but I can't figure it out.  I can't get the syntax that runs  
> in the command window, to then put intot the crontab....
>
> Can anyone help me?

Here's what I'd use:

ping -c 1 a.b.c.d; TESTV=$?; if [ $TESTV != 0 ]; then `ifconfig em0  
down`; fi

HTH
-----
Eric F Crist
Secure Computing Networks



More information about the freebsd-questions mailing list