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

[ Available lists | Index of freebsd-questions | Month of Aug 2007 | Week of 29 Aug 2007 | Raw email | View thread | Wrap long lines | Reply | Tag ]
From
Eric Crist <mnslinky@gmail.com>
Date
29 Aug 2007 14:17:38
Subject
Re: FreeBSD Cron Job to run (ifconfig em0 down; ifconfig em0 up)
Message-ID
FD866B42-B6DA-4AC1-A4B0-EC858835CEBE@gmail.com

In reply to
References to
Replies

[ Hide this part ]
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




Elapsed time: 0.106 seconds