Click here to Skip to main content
15,896,606 members
Please Sign up or sign in to vote.
3.00/5 (1 vote)
See more:
This is a script to avoid disrupting the speed on an open network i am connected. I dont want to slow the net down for the owners.

between basic on line reading, googling and guesing here's what i have any help is much apreciated

Bash
#!/bin/bash

  if  [  ping -c 2 192.168.2.101 | grep -o "Destination Host Unreachable"   ]
      then  ifconfig eth0 up
	  sleep 30
	      (path to rerun script)


  elif  [  ping -c 2 192.168.2.106 | grep -o "Destination Host Unreachable"   ]
      then   ifconfig eth0 up
	  sleep 30
	      (path to rerun script)


else ifconfig eth0 down  
sleep 30
 
fi
Posted
Updated 11-Nov-11 18:52pm
v2
Comments
Richard MacCutchan 12-Nov-11 5:12am    
Help for what? You have not explained what the problem is.
Member 8395282 12-Nov-11 12:20pm    
sorry.. the scripts does not run properly at all and I was hoping someone could clean it up or fix any issues in it.
Yvan Rodrigues 12-Nov-11 14:55pm    
What is the error message?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900