代码:
for i in {1..5}
do
PING=`ping -nq -w5 -c1 8.8.8.8`
C=`echo $PING | grep "100% packet loss"`
if $C; then
echo "ok"
else
echo "not connected"
fi
done
如果我使用8.8.8.8,它可以工作,但当我将其更改为ip时,它没有响应,如29.0.0.0,错误发生:"There no PING comma
我有一个程序,它将数据从一台pc发送到另一台使用UDP (数据大小150字节)。该程序是在Delphi7 (TldUDPClient和TldUDPServer组件用于发送和增强数据)中编写的。我需要测试这个程序在30%的数据包丢失。
我将ipfw用于windows (从sourceforge下载):
ipfw -f flush
ipfw add pipe 1 ip from any to any out
ipfw pipe 1 config plr 0.3
当我使用ping时,我看到了30%的数据丢失。
当我启动我的delphi程序后,经过一段时间的工作,它会返回一个错误:socket err
这里是问题
有一个脚本在X时间之后(未知数量在5到40分钟之间)抛出以下错误:MySQL服务器已经离开了,Kohana将其转换为Database_Exception 2006,因此有些信息没有保存到DB中。
这里是我认为可能有用的东西,
class Model_Bar extends ORM {
protected $_belongs_to = array(
'foo' => array()
);
public function save(){ //Extends the save method
try {
$result = pare
我想要平一个destination_ip并将连续丢包的计数重定向到一个ping_result.txt文件。假设ping结果如下所示:
reply from destination_ip
request timed out
request timed out
reply from destination_ip
request timed out
request timed out
request timed out
request timed out
reply from destination_ip
输出应如下所示:
0
1
2
0
1
2
3
4
0
嘿,伙计们,我的Applescript不像我期望的那样。我的错误在哪里?
try
set NAS to do shell script "ping -c 1 192.168.222.5"
if NAS contains "100.0% packet loss" then repeat until NAS contains "0% packet loss"
do shell script "python /Users/Selim/Desktop/wol2.0.sh"
set NAS to do shell scri