code
stringlengths
2
1.05M
repo_name
stringlengths
5
110
path
stringlengths
3
922
language
stringclasses
1 value
license
stringclasses
15 values
size
int64
2
1.05M
#!/bin/bash # # A stupid script to abort restore at the very end. Useful to test # restore w/o letting the restored processes continue running. E.g. # can be used to measure the restore time. # # Usage: # criu restore <options> --action-script $(pwd)/scripts/fake-restore.sh # if [ "$CRTOOLS_SCRIPT_ACTION" == "post-restore" ]; then exit 1 else exit 0 fi
LK4D4/criu
scripts/fake-restore.sh
Shell
lgpl-2.1
357
#!/bin/sh ## get some parameters from the makefile srcdir=$1 top_builddir=$2 export SHELL srcdir top_builddir $3
atmark-techno/atmark-dist
user/lighttpd/tests/wrapper.sh
Shell
gpl-2.0
116
#!/usr/bin/env bash # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # Runs a Hadoop command as a daemon. # # Environment Variables # # HADOOP_CONF_DIR Alternate conf dir. Default is ${HADOOP_PREFIX}/conf. # HADOOP_LOG_DIR Where log files are stored. PWD by default. # HADOOP_MASTER host:path where hadoop code should be rsync'd from # HADOOP_PID_DIR The pid files are stored. /tmp by default. # HADOOP_IDENT_STRING A string representing this instance of hadoop. $USER by default # HADOOP_NICENESS The scheduling priority for daemons. Defaults to 0. ## usage="Usage: hadoop-daemon.sh [--config <conf-dir>] [--hosts hostlistfile] [--script script] (start|stop) <hadoop-command> <args...>" # if no args specified, show usage if [ $# -le 1 ]; then echo $usage exit 1 fi bin=`dirname "${BASH_SOURCE-$0}"` bin=`cd "$bin"; pwd` DEFAULT_LIBEXEC_DIR="$bin"/../libexec HADOOP_LIBEXEC_DIR=${HADOOP_LIBEXEC_DIR:-$DEFAULT_LIBEXEC_DIR} . $HADOOP_LIBEXEC_DIR/hadoop-config.sh # get arguments #default value hadoopScript="$HADOOP_PREFIX"/bin/hadoop if [ "--script" = "$1" ] then shift hadoopScript=$1 shift fi startStop=$1 shift command=$1 shift hadoop_rotate_log () { log=$1; num=5; if [ -n "$2" ]; then num=$2 fi if [ -f "$log" ]; then # rotate logs while [ $num -gt 1 ]; do prev=`expr $num - 1` [ -f "$log.$prev" ] && mv "$log.$prev" "$log.$num" num=$prev done mv "$log" "$log.$num"; fi } if [ -f "${HADOOP_CONF_DIR}/hadoop-env.sh" ]; then . "${HADOOP_CONF_DIR}/hadoop-env.sh" fi # Determine if we're starting a secure datanode, and if so, redefine appropriate variables if [ "$command" == "datanode" ] && [ "$EUID" -eq 0 ] && [ -n "$HADOOP_SECURE_DN_USER" ]; then export HADOOP_PID_DIR=$HADOOP_SECURE_DN_PID_DIR export HADOOP_LOG_DIR=$HADOOP_SECURE_DN_LOG_DIR export HADOOP_IDENT_STRING=$HADOOP_SECURE_DN_USER starting_secure_dn="true" fi if [ "$HADOOP_IDENT_STRING" = "" ]; then export HADOOP_IDENT_STRING="$USER" fi # get log directory if [ "$HADOOP_LOG_DIR" = "" ]; then export HADOOP_LOG_DIR="$HADOOP_PREFIX/logs" fi if [ ! -w "$HADOOP_LOG_DIR" ] ; then mkdir -p "$HADOOP_LOG_DIR" chown $HADOOP_IDENT_STRING $HADOOP_LOG_DIR fi if [ "$HADOOP_PID_DIR" = "" ]; then HADOOP_PID_DIR=/tmp fi # some variables export HADOOP_LOGFILE=hadoop-$HADOOP_IDENT_STRING-$command-$HOSTNAME.log export HADOOP_ROOT_LOGGER=${HADOOP_ROOT_LOGGER:-"INFO,RFA"} export HADOOP_SECURITY_LOGGER=${HADOOP_SECURITY_LOGGER:-"INFO,RFAS"} export HDFS_AUDIT_LOGGER=${HDFS_AUDIT_LOGGER:-"INFO,NullAppender"} log=$HADOOP_LOG_DIR/hadoop-$HADOOP_IDENT_STRING-$command-$HOSTNAME.out pid=$HADOOP_PID_DIR/hadoop-$HADOOP_IDENT_STRING-$command.pid HADOOP_STOP_TIMEOUT=${HADOOP_STOP_TIMEOUT:-5} # Set default scheduling priority if [ "$HADOOP_NICENESS" = "" ]; then export HADOOP_NICENESS=0 fi case $startStop in (start) [ -w "$HADOOP_PID_DIR" ] || mkdir -p "$HADOOP_PID_DIR" if [ -f $pid ]; then if kill -0 `cat $pid` > /dev/null 2>&1; then echo $command running as process `cat $pid`. Stop it first. exit 1 fi fi if [ "$HADOOP_MASTER" != "" ]; then echo rsync from $HADOOP_MASTER rsync -a -e ssh --delete --exclude=.svn --exclude='logs/*' --exclude='contrib/hod/logs/*' $HADOOP_MASTER/ "$HADOOP_PREFIX" fi hadoop_rotate_log $log echo starting $command, logging to $log cd "$HADOOP_PREFIX" case $command in namenode|secondarynamenode|datanode|journalnode|dfs|dfsadmin|fsck|balancer|zkfc) if [ -z "$HADOOP_HDFS_HOME" ]; then hdfsScript="$HADOOP_PREFIX"/bin/hdfs else hdfsScript="$HADOOP_HDFS_HOME"/bin/hdfs fi nohup nice -n $HADOOP_NICENESS $hdfsScript --config $HADOOP_CONF_DIR $command "$@" > "$log" 2>&1 < /dev/null & ;; (*) nohup nice -n $HADOOP_NICENESS $hadoopScript --config $HADOOP_CONF_DIR $command "$@" > "$log" 2>&1 < /dev/null & ;; esac echo $! > $pid sleep 1 head "$log" # capture the ulimit output if [ "true" = "$starting_secure_dn" ]; then echo "ulimit -a for secure datanode user $HADOOP_SECURE_DN_USER" >> $log # capture the ulimit info for the appropriate user su --shell=/bin/bash $HADOOP_SECURE_DN_USER -c 'ulimit -a' >> $log 2>&1 else echo "ulimit -a for user $USER" >> $log ulimit -a >> $log 2>&1 fi sleep 3; if ! ps -p $! > /dev/null ; then exit 1 fi ;; (stop) if [ -f $pid ]; then TARGET_PID=`cat $pid` if kill -0 $TARGET_PID > /dev/null 2>&1; then echo stopping $command kill $TARGET_PID sleep $HADOOP_STOP_TIMEOUT if kill -0 $TARGET_PID > /dev/null 2>&1; then echo "$command did not stop gracefully after $HADOOP_STOP_TIMEOUT seconds: killing with kill -9" kill -9 $TARGET_PID fi else echo no $command to stop fi else echo no $command to stop fi ;; (*) echo $usage exit 1 ;; esac
AtScaleInc/Impala
thirdparty/hadoop-2.0.0-cdh4.5.0/sbin/hadoop-daemon.sh
Shell
apache-2.0
5,814
#!/bin/bash # Copyright 2015 The Kubernetes Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. . ./init.sh inventory=${INVENTORY:-${INVENTORY_DIR}/inventory} # no configure tag as it will reset everything to defaults ansible_playbook ${inventory} ${PLAYBOOKS_DIR}/deploy-master.yml --tags "install,restart" "$@"
galexrt/kubernetes-ansible-deployment
scripts/update-master.sh
Shell
apache-2.0
819
#!/bin/sh # Unit tests for vc-list-files # Copyright (C) 2008-2011 Free Software Foundation, Inc. # This file is part of the GNUlib Library. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. */ : ${srcdir=.} . "$srcdir/init.sh"; path_prepend_ "$abs_aux_dir" . tmpdir=vc-git-$$ GIT_DIR= GIT_WORK_TREE=; unset GIT_DIR GIT_WORK_TREE fail=1 mkdir $tmpdir && cd $tmpdir && # without git, skip the test # The double use of 'exit' is needed for the reference to $? inside the trap. { ( git init -q ) > /dev/null 2>&1 \ || skip_ "git not found in PATH"; } && mkdir d && touch d/a b c && git config user.email "[email protected]" && git config user.name "Your Name" && git add . > /dev/null && git commit -q -a -m log && printf '%s\n' b c d/a > expected && vc-list-files > actual && compare expected actual && fail=0 Exit $fail
Distrotech/findutils
tests/test-vc-list-files-git.sh
Shell
gpl-3.0
1,438
#!/bin/bash mrnaToGene 2> /dev/null || [[ "$?" == 255 ]]
blankenberg/bioconda-recipes
recipes/ucsc-mrnatogene/run_test.sh
Shell
mit
57
#!/bin/sh # # abi_checks.sh - check for possible abi changes # # Copyright (C) 2009 Micheal Adam <[email protected]> # # This program is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by the Free # Software Foundation; either version 3 of the License, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, but WITHOUT # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for # more details. # # You should have received a copy of the GNU General Public License along with # this program; if not, see <http://www.gnu.org/licenses/>. # # # USAGE: abi_checks.sh LIBNAME header1 [header2 ...] # # This script creates symbol and signature lists from the provided header # files with the aid of the mksyms.sh and mksigs.pl scripts (saved as # $LIBNAME.exports.check and $LIBNAME.sigatures.check). It then compares # the resulting files with the files $LIBNAME.exports and $LIBNME.signatures # which it expects to find in the current directory. # LANG=C; export LANG LC_ALL=C; export LC_ALL LC_COLLATE=C; export LC_COLLATE script=$0 dir_name=$(dirname ${script}) if test x"$1" = "x" ; then echo "USAGE: ${script} libname header [header ...]" exit 1 fi libname="$1" shift if test x"$1" = "x" ; then echo "USAGE: ${script} libname header [header ...]" exit 1 fi headers="$*" exports_file=${libname}.exports exports_file_check=${exports_file}.check signatures_file=${libname}.signatures signatures_file_check=${signatures_file}.check ${dir_name}/mksyms.sh awk ${exports_file_check} ${headers} 2>&1 > /dev/null cat ${headers} | ${dir_name}/mksigs.pl > ${signatures_file_check} 2> /dev/null normalize_exports_file() { filename=$1 cat ${filename} \ | sed -e 's/^[ \t]*//g' \ | sed -e 's/^$//g' \ | sed -e 's/^#.*$//g' \ | sort | uniq > ${filename}.sort } normalize_exports_file ${exports_file} normalize_exports_file ${exports_file_check} normalize_exports_file ${signatures_file} normalize_exports_file ${signatures_file_check} diff -u ${exports_file}.sort ${exports_file_check}.sort if test "x$?" != "x0" ; then echo "WARNING: possible ABI change detected in exports!" else echo "exports check: OK" fi diff -u ${signatures_file}.sort ${signatures_file_check}.sort if test "x$?" != "x0" ; then echo "WARNING: possible ABI change detected in signatures!" else echo "signatures check: OK" fi
zarboz/XBMC-PVR-mac
tools/darwin/depends/samba/samba-3.6.6/lib/tevent/script/abi_checks.sh
Shell
gpl-2.0
2,527
#!/bin/bash # Copyright 2014 The Kubernetes Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. ## Create etcd.conf, etcd.service, and start etcd service. etcd_data_dir=/var/lib/etcd/ mkdir -p ${etcd_data_dir} cat <<EOF >/opt/kubernetes/cfg/etcd.conf # [member] ETCD_NAME=default ETCD_DATA_DIR="${etcd_data_dir}/default.etcd" #ETCD_SNAPSHOT_COUNTER="10000" #ETCD_HEARTBEAT_INTERVAL="100" #ETCD_ELECTION_TIMEOUT="1000" #ETCD_LISTEN_PEER_URLS="http://localhost:2380,http://localhost:7001" ETCD_LISTEN_CLIENT_URLS="http://0.0.0.0:2379" #ETCD_MAX_SNAPSHOTS="5" #ETCD_MAX_WALS="5" #ETCD_CORS="" # #[cluster] #ETCD_INITIAL_ADVERTISE_PEER_URLS="http://localhost:2380,http://localhost:7001" # if you use different ETCD_NAME (e.g. test), # set ETCD_INITIAL_CLUSTER value for this name, i.e. "test=http://..." #ETCD_INITIAL_CLUSTER="default=http://localhost:2380,default=http://localhost:7001" #ETCD_INITIAL_CLUSTER_STATE="new" #ETCD_INITIAL_CLUSTER_TOKEN="etcd-cluster" ETCD_ADVERTISE_CLIENT_URLS="http://localhost:2379" #ETCD_DISCOVERY="" #ETCD_DISCOVERY_SRV="" #ETCD_DISCOVERY_FALLBACK="proxy" #ETCD_DISCOVERY_PROXY="" # #[proxy] #ETCD_PROXY="off" # #[security] #ETCD_CA_FILE="" #ETCD_CERT_FILE="" #ETCD_KEY_FILE="" #ETCD_PEER_CA_FILE="" #ETCD_PEER_CERT_FILE="" #ETCD_PEER_KEY_FILE="" EOF cat <<EOF >//usr/lib/systemd/system/etcd.service [Unit] Description=Etcd Server After=network.target [Service] Type=simple WorkingDirectory=${etcd_data_dir} EnvironmentFile=-/opt/kubernetes/cfg/etcd.conf # set GOMAXPROCS to number of processors ExecStart=/bin/bash -c "GOMAXPROCS=\$(nproc) /opt/kubernetes/bin/etcd" [Install] WantedBy=multi-user.target EOF systemctl daemon-reload systemctl enable etcd systemctl start etcd
rawlingsj/gofabric8
vendor/k8s.io/kubernetes/cluster/centos/master/scripts/etcd.sh
Shell
apache-2.0
2,219
# Edit this for your own project dependencies OPAM_DEPENDS="ocamlfind ocamlbuild topkg camlp4 ctypes-foreign" # install OCaml + OPAM case "$OCAML_VERSION,$OPAM_VERSION" in 3.12.1,1.0.0) ppa=avsm/ocaml312+opam10 ;; 3.12.1,1.1.0) ppa=avsm/ocaml312+opam11 ;; 4.00.1,1.0.0) ppa=avsm/ocaml40+opam10 ;; 4.00.1,1.1.0) ppa=avsm/ocaml40+opam11 ;; 4.01.0,1.0.0) ppa=avsm/ocaml41+opam10 ;; 4.01.0,1.1.0) ppa=avsm/ocaml41+opam11 ;; 4.01.0,1.2.0) ppa=avsm/ocaml41+opam12 ;; 4.02.1,1.2.0) ppa=avsm/ocaml42+opam12 ;; 4.02.2,1.2.0) ppa=avsm/ocaml42+opam12 ;; 4.02.3,1.2.0) ppa=avsm/ocaml42+opam12 ;; *) echo Unknown $OCAML_VERSION,$OPAM_VERSION; exit 1 ;; esac echo "yes" | sudo add-apt-repository ppa:$ppa sudo apt-get update -qq sudo apt-get install -qq ocaml ocaml-native-compilers camlp4-extra opam export OPAMYES=1 opam init eval `opam config env` opam pin add -n $OPAMPKG -k git . opam depext -y $DEPPKGS $OPAMPKG opam install $DEPPKGS $OPAMPKG
ujamjar/hardcaml
.travis-ci.sh
Shell
isc
942
#!/bin/bash # #Autheor:Viking Warlock #Last Modify:2015-12-05 # echo -e "-----------------------------------------------" echo -e "| Viking Warlock's BONIC auto install script |" echo -e "| |" echo -e "| Ubuntu Only |" echo -e "| |" echo -e "| Please Hold On ... |" echo -e "-----------------------------------------------" echo sleep 1 echo -e "\033[40;31mInstall Environment...\033[0m" sudo apt-get install ia32-libs libstdc++6 libstdc++5 freeglut3 -y echo -e "\033[40;31mInstall Bonic Client...\033[0m" sudo apt-get install boinc-client -y echo -e "\033[40;31mWriting Start Code...\033[0m" sleep 1 boinccmd --project_attach http://boinc.bakerlab.org/rosetta 946190a5f134adb1ac31cb3d65eedab8 boinccmd --project http://boinc.bakerlab.org/rosetta update sudo service boinc-client start wget -O "boinc.bash" "http://boinc.berkeley.edu/trac/wiki/BashCommandCompletion?format=txt" source boinc.bash echo -e "\033[40;34mDone !\033[0m"
VikingWarlock/install-Server
bonic_server.sh
Shell
mit
1,079
#!/bin/sh pynvim "+colo cake16" "+AutoSaveToggle" "+set mouse=a" src/main.rs 2>&1 1>/tmp/pynvim.$$.out &
leonardinius/hanoi-tower.rs
.editor.sh
Shell
mit
106
#!/usr/bin/env bash sudo npm install -g karma
10Pines/coding-friday-angularjs
install-karma.sh
Shell
mit
46
#!/bin/bash docker run blackikeeagle/archlinux-php-fpm
BlackIkeEagle/docker-images
blackikeeagle/archlinux-php-fpm/run.sh
Shell
mit
55
#!/bin/bash -x # # Generated - do not edit! # # Macros TOP=`pwd` CND_PLATFORM=GNU-Linux-x86 CND_CONF=Debug CND_DISTDIR=dist CND_BUILDDIR=build CND_DLIB_EXT=so NBTMPDIR=${CND_BUILDDIR}/${CND_CONF}/${CND_PLATFORM}/tmp-packaging TMPDIRNAME=tmp-packaging OUTPUT_PATH=gmm OUTPUT_BASENAME=gmm PACKAGE_TOP_DIR=gmm-prova/ # Functions function checkReturnCode { rc=$? if [ $rc != 0 ] then exit $rc fi } function makeDirectory # $1 directory path # $2 permission (optional) { mkdir -p "$1" checkReturnCode if [ "$2" != "" ] then chmod $2 "$1" checkReturnCode fi } function copyFileToTmpDir # $1 from-file path # $2 to-file path # $3 permission { cp "$1" "$2" checkReturnCode if [ "$3" != "" ] then chmod $3 "$2" checkReturnCode fi } # Setup cd "${TOP}" mkdir -p ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/package rm -rf ${NBTMPDIR} mkdir -p ${NBTMPDIR} # Copy files and create directories and links cd "${TOP}" makeDirectory "${NBTMPDIR}/gmm-prova/bin" copyFileToTmpDir "${OUTPUT_PATH}" "${NBTMPDIR}/${PACKAGE_TOP_DIR}bin/${OUTPUT_BASENAME}" 0755 # Generate tar file cd "${TOP}" rm -f ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/package/gmm-prova.tar cd ${NBTMPDIR} tar -vcf ../../../../${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/package/gmm-prova.tar * checkReturnCode # Cleanup cd "${TOP}" rm -rf ${NBTMPDIR}
SimoneAlbertini/GMM-Clutering
nbproject/Package-Debug.bash
Shell
mit
1,400
#!/bin/sh # test.sh # graph # # Created by 云心逸 on 8/5/16. # Copyright © 2016 Errpro,Inc. All rights reserved. echo "hello"
oxnz/algorithms
graph/test.sh
Shell
mit
135
# Trim trailing whitespace defaults write com.apple.dt.Xcode DVTTextEditorTrimTrailingWhitespace -bool true # Trim whitespace-only lines defaults write com.apple.dt.Xcode DVTTextEditorTrimWhitespaceOnlyLines -bool true # Show line numbers defaults write com.apple.dt.Xcode DVTTextEditorShowLineNumbers -bool true # Enable internal debug menu defaults write com.apple.dt.Xcode ShowDVTDebugMenu -bool true # Open quickly opens in the focused pane defaults write com.apple.dt.Xcode IDEEditorCoordinatorTarget_Click -string "FocusedEditor" # Show build time in toolbar defaults write com.apple.dt.Xcode ShowBuildOperationDuration -bool true # Show build reasons in Xcode build log defaults write com.apple.dt.Xcode ExplainWhyBuildCommandsAreRun -bool true # Show remaining files to index defaults write com.apple.dt.Xcode IDEIndexerActivityShowNumericProgress -bool true # Disable "Print" shortcut. Oddly enough I never find myself wanting to print # source code. defaults write com.apple.dt.Xcode NSUserKeyEquivalents -dict-add "Print..." "nil" # Not sure what this does; found using `defaults read com.apple.dt.Xcode` defaults write com.apple.dt.Xcode DVTTextEnableTypeOverCompletions -bool true defaults write com.apple.dt.Xcode IDESourceControlSuppressRevertSelectedDifference -bool true defaults write com.apple.dt.Xcode IDEUserWantsToEnableDeveloperMode -bool true # Use spaces, not tabs defaults write com.apple.dt.Xcode DVTTextIndentUsingTabs -bool false # Don't overscroll defaults write com.apple.dt.Xcode DVTTextOverscrollAmount -bool false # Swift style guide has 110 cols as the maximum defaults write com.apple.dt.Xcode DVTTextPageGuideLocation -int 110 # The contextual menu isn't as useful as jumping to symbols defaults write com.apple.dt.Xcode IDECommandClickNavigates -bool true # Local derived data defaults write com.apple.dt.Xcode IDECustomDerivedDataLocation -string "build.noindex" # Source code integration in Xcode isn't really useful defaults write com.apple.dt.Xcode IDEDisableGitSupportForNewProjects -bool true # Wait for issues to come up until I build defaults write com.apple.dt.Xcode IDEEnableLiveIssues -bool false # Disable a number of warnings defaults write com.apple.dt.Xcode IDESuppressInstructionPointerDraggingDialog -bool true defaults write com.apple.dt.Xcode IDESuppressStopTestWarning -bool true defaults write com.apple.dt.Xcode IDESuppressSelectNewScheme -bool true defaults write com.apple.dt.Xcode IDESuppressStopBuildWarning -bool true defaults write com.apple.dt.Xcode IDESuppressStopExecutionWarning -bool true defaults write com.apple.dt.Xcode IDESourceControlSupressDiscardAllChangesConfirmation -bool true # Set custom theme defaults write com.apple.dt.Xcode XCFontAndColorCurrentDarkTheme -string "Monokai Inconsolata.xccolortheme" defaults write com.apple.dt.Xcode XCFontAndColorCurrentTheme -string "Monokai Inconsolata.xccolortheme"
sberrevoets/dotfiles
macOS/xcode.sh
Shell
mit
2,907
#!/bin/sh # CYBERWATCH SAS - 2017 # # Security fix for DLA-461-1 # # Security announcement date: 2016-05-07 00:00:00 UTC # Script generation date: 2017-01-01 21:09:09 UTC # # Operating System: Debian 7 (Wheezy) # Architecture: x86_64 # # Vulnerable packages fix on version: # - nagios3:3.4.1-3+deb7u2 # # Last versions recommanded by security team: # - nagios3:3.4.1-3+deb7u3 # # CVE List: # - CVE-2014-1878 # # More details: # - https://www.cyberwatch.fr/vulnerabilites # # Licence: Released under The MIT License (MIT), See LICENSE FILE sudo apt-get install --only-upgrade nagios3=3.4.1-3+deb7u3 -y
Cyberwatch/cbw-security-fixes
Debian_7_(Wheezy)/x86_64/2016/DLA-461-1.sh
Shell
mit
613
#!/bin/sh prog=schurOneMAPlattice2tf_test.m depends="schurOneMAPlattice2tf_test.m schurOneMAPlattice2tf.m test_common.m \ tf2schurOneMlattice.m schurOneMAPlattice2Abcd.m schurOneMlattice2Abcd.oct \ Abcd2tf.m schurOneMscale.m schurdecomp.oct schurexpand.oct" tmp=/tmp/$$ here=`pwd` if [ $? -ne 0 ]; then echo "Failed pwd"; exit 1; fi fail() { echo FAILED ${0#$here"/"} $prog 1>&2 cd $here rm -rf $tmp exit 1 } pass() { echo PASSED ${0#$here"/"} $prog cd $here rm -rf $tmp exit 0 } trap "fail" 1 2 3 15 mkdir $tmp if [ $? -ne 0 ]; then echo "Failed mkdir"; exit 1; fi for file in $depends;do \ cp -R src/$file $tmp; \ if [ $? -ne 0 ]; then echo "Failed cp "$file; fail; fi \ done cd $tmp if [ $? -ne 0 ]; then echo "Failed cd"; fail; fi # # the output should look like this # cat > test.ok << 'EOF' EOF if [ $? -ne 0 ]; then echo "Failed output cat"; fail; fi # # run and see if the results match # echo "Running $prog" octave --no-gui -q $prog >test.out 2>&1 if [ $? -ne 0 ]; then echo "Failed running $prog"; fail; fi diff -Bb test.ok test.out if [ $? -ne 0 ]; then echo "Failed diff -Bb"; fail; fi # # this much worked # pass
robertgj/DesignOfIIRFilters
test/02/t0262a.sh
Shell
mit
1,206
~/workspace/vrep/vrep.sh -h -gREMOTEAPISERVERSERVICE_20000_FALSE_TRUE ~/workspace/baseline/baselines/ppo1/sim_centauro.ttt & ~/workspace/vrep/vrep.sh -h -gREMOTEAPISERVERSERVICE_20001_FALSE_TRUE ~/workspace/baseline/baselines/ppo1/sim_centauro.ttt & ~/workspace/vrep/vrep.sh -h -gREMOTEAPISERVERSERVICE_20002_FALSE_TRUE ~/workspace/baseline/baselines/ppo1/sim_centauro.ttt & ~/workspace/vrep/vrep.sh -h -gREMOTEAPISERVERSERVICE_20003_FALSE_TRUE ~/workspace/baseline/baselines/ppo1/sim_centauro.ttt
pcchenxi/baseline
baselines/ppo1/run_vrep_4.sh
Shell
mit
506
#!/bin/bash ls -d *.py | entr ./runprofilers.sh
stefantkeller/dimensionalquantity
dimensionalquantity/tests/profilers/runautomaticprofilers.sh
Shell
mit
49
#!/bin/sh # # This script will produce a dmg for DMDirc. # # DMDirc - Open Source IRC Client # Copyright (c) 2006-2017 DMDirc Developers # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. showHelp() { echo "This will generate a DMDirc osx package." echo "The following command line arguments are known:" echo "---------------------" echo "-h, --help Help information" echo "-j, --jar <jar> What jar to use for the package (requires --version)" echo "-v, --version <version> What version is this package." echo "-p, --packagename <name> Name for output (rather than DMDirc-<version>" echo "-e, --extra <extra> Extra tagging on output file." echo "---------------------" exit 0; } JAR="" VERSION="" finalTag="" PACKAGENAME="" while test -n "$1"; do case "$1" in --jar|-j) shift JAR=${1} ;; --version|-v) shift VERSION=${1} ;; --help|-h) showHelp; ;; --packagename|-p) shift PACKAGENAME="${1}" ;; --extra|-e) shift finalTag="${1}" ;; esac shift done if [ "${JAR}" = "" -o "${VERSION}" = "" -o ! -e "${JAR}" ]; then echo "You must provide a jar file and a version number to continue." exit 1; fi; # Find out where we are BASEDIR=$(cd "${0%/*}" 2>/dev/null; echo $PWD) cd "${BASEDIR}" # Check that we can create dmg files. MKISOFS=`which mkisofs` HDIUTIL=`which hdiutil` if [ "" = "${HDIUTIL}" ]; then if [ "" != "${MKISOFS}" ]; then MKISOFS_TEST=`${MKISOFS} --help 2>&1 | grep apple` if [ "" = "${MKISOFS_TEST}" ]; then echo "This machine is unable to produce dmg images (no support from mkisofs). Aborting." exit 1; fi; else echo "This machine is unable to produce dmg images (missing mkisofs or hdiutil). Aborting." exit 1; fi; fi; # Go into the OS X dir and check that the jni lib exists, if not try to compile # it (this will only work on a mac) # # We do this here so that we have it for future if needed rather than needing to # do it every time. cd osx JNIName="libDMDirc-Apple.jnilib" if [ ! -e "${JNIName}" ]; then if [ -e "/System/Library/Frameworks/JavaVM.framework/Headers" ]; then GCC=`which gcc` ${GCC} -dynamiclib -framework JavaVM -framework Carbon -o ${JNIName} DMDirc-Apple.c -arch x86_64 if [ ! -e "${JNIName}" ]; then echo "JNI Lib not found and failed to compile. Aborting." exit 1; fi; else echo "JNI Lib not found, unable to compile on this system. Aborting." exit 1; fi; fi; cd "${BASEDIR}" WGET=`which wget` FETCH=`which fetch` CURL=`which curl` getFile() { URL=${1} OUTPUT=${2} if [ "${WGET}" != "" ]; then ${WGET} -O ${OUTPUT} ${URL} elif [ "${FETCH}" != "" ]; then ${FETCH} -o ${OUTPUT} ${URL} elif [ "${CURL}" != "" ]; then ${CURL} -o ${OUTPUT} ${URL} fi; } cd "${BASEDIR}" # Where will we be building DMDirc today? BUILDDIR=`mktemp -d "--tmpdir=${BASEDIR}"` echo "Building in: '${BUILDDIR}'" # Create required OS X directories. APPDIR="${BUILDDIR}/DMDirc.app" CONTENTSDIR="${APPDIR}/Contents" RESDIR="${CONTENTSDIR}/Resources" MACOSDIR="${CONTENTSDIR}/MacOS" mkdir -pv "${APPDIR}" mkdir -pv "${CONTENTSDIR}" mkdir -pv "${RESDIR}" mkdir -pv "${RESDIR}/Java" mkdir -pv "${MACOSDIR}" mkdir -pv "${BUILDDIR}/.background/" # Copy in required files. cp "${JAR}" "${RESDIR}/Java/DMDirc.jar" cp "osx/${JNIName}" "${RESDIR}/Java/${JNIName}" cp "launcher/unix/DMDirc.sh" "${MACOSDIR}/DMDirc.sh" cp "launcher/unix/functions.sh" "${MACOSDIR}/functions.sh" cp "osx/res/dmdirc.icns" "${RESDIR}/dmdirc.icns" cp -v "osx/res/VolumeIcon.icns" "${BUILDDIR}/.VolumeIcon.icns" cp -v "osx/res/Background.png" "${BUILDDIR}/.background/background.png" cp -v "osx/.DS_Store" "${BUILDDIR}/.DS_Store" ln -sf /Applications ${BUILDDIR}/ echo "Creating meta files" echo "APPLDMDI" > "${CONTENTSDIR}/PkgInfo" # Create the plist file cat <<EOF> "${CONTENTSDIR}/Info.plist" <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist SYSTEM "file://localhost/System/Library/DTDs/PropertyList.dtd"> <plist version="0.9"> <dict> <key>CFBundleName</key> <string>DMDirc</string> <key>CFBundleIdentifier</key> <string>com.dmdirc.osx</string> <key>CFBundleAllowMixedLocalizations</key> <string>true</string> <key>CFBundleExecutable</key> <string>DMDirc.sh</string> <key>CFBundleDevelopmentRegion</key> <string>English</string> <key>CFBundlePackageType</key> <string>APPL</string> <key>CFBundleSignature</key> <string>DMDI</string> <key>CFBundleInfoDictionaryVersion</key> <string>6.0</string> <key>CFBundleIconFile</key> <string>dmdirc.icns</string> <key>CFBundleVersion</key> <string>${VERSION}</string> <key>CFBundleShortVersionString</key> <string>${VERSION}</string> <key>Java</key> <dict> <key>WorkingDirectory</key> <string>\$APP_PACKAGE/Contents/Resources/Java</string> <key>MainClass</key> <string>com.dmdirc.Main</string> <key>JVMVersion</key> <string>1.6+</string> <key>ClassPath</key> <string>\$JAVAROOT/DMDirc.jar</string> </dict> <key>CFBundleURLTypes</key> <array> <dict> <key>CFBundleURLName</key> <string>IRC URL</string> <key>CFBundleURLSchemes</key> <array> <string>irc</string> </array> </dict> </array> </dict> </plist> EOF # Now, make a dmg OUTPUTFILE="DMDirc.dmg" rm -Rf "${OUTPUTFILE}" "${OUTPUTFILE}.pre" if [ "" = "${HDIUTIL}" ]; then # File Mapping. MAPFILE=`mktemp` echo ".icns Raw 'icnC' 'ICON' \"Icon File\"" > ${MAPFILE} # Create Read-Only blessed image ${MKISOFS} -V 'DMDirc' -no-pad -r -apple -map ${MAPFILE} -o "${OUTPUTFILE}" -hfs-bless "${BUILDDIR}" "${BUILDDIR}" rm ${MAPFILE}; # Compres it \o if [ ! -e "osx/compress-dmg" ]; then getFile "http://binary.dmdirc.com/dmg" "osx/compress-dmg" chmod a+x osx/compress-dmg fi; if [ ! -e "osx/compress-dmg" ]; then echo "DMG will not be compressed." else echo "Compressing DMG" mv "${OUTPUTFILE}" "${OUTPUTFILE}.pre" osx/compress-dmg dmg "${OUTPUTFILE}.pre" "${OUTPUTFILE}" if [ -e "${OUTPUTFILE}" ]; then rm -Rf "${OUTPUTFILE}.pre" else echo "Compression failed." mv "${OUTPUTFILE}.pre" "${OUTPUTFILE}" fi; fi; else # Set information for the volume icon SETFILE=`ls /Developer/Tools/SetFile` if [ "" != "${SETFILE}" ]; then ${SETFILE} -c icnC "${BUILDDIR}/.VolumeIcon.icns" fi; # OSX # Create Read/Write image ${HDIUTIL} create -volname "DMDirc" -fs HFS+ -srcfolder "${BUILDDIR}" -format UDRW "${OUTPUTFILE}.pre" # Make it auto-open BLESS=`which bless` if [ "" != "${BLESS}" ]; then if [ -e /Volumes/DMDirc ]; then ${HDIUTIL} detach /Volumes/DMDirc fi; if [ ! -e /Volumes/DMDirc ]; then ${HDIUTIL} attach "${OUTPUTFILE}.pre" ${BLESS} -openfolder /Volumes/DMDirc ${HDIUTIL} detach /Volumes/DMDirc fi; fi; # Fix VolumeIcon if [ "" != "${SETFILE}" ]; then if [ -e /Volumes/DMDirc ]; then ${HDIUTIL} detach /Volumes/DMDirc fi; if [ ! -e /Volumes/DMDirc ]; then ${HDIUTIL} attach "${OUTPUTFILE}.pre" ${SETFILE} -a C /Volumes/DMDirc ${HDIUTIL} detach /Volumes/DMDirc fi; fi; # Convert to compressed read-only image ${HDIUTIL} convert "${OUTPUTFILE}.pre" -format UDZO -imagekey zlib-level=9 -o "${OUTPUTFILE}" rm "${OUTPUTFILE}.pre" fi; if [ "${PACKAGENAME}" = "" ]; then DEST="DMDirc-${VERSION}" else DEST="${PACKAGENAME}" fi if [ "${finalTag}" != "" ]; then DEST="${DEST}-${finalTag}" fi; DEST="${DEST}.dmg" mv "${OUTPUTFILE}" "output/${DEST}" rm -Rf "${OUTPUTFILE}" "${OUTPUTFILE}.pre" "${BUILDDIR}" echo "DMG Creation complete!"
DMDirc/Installers
makeDMG.sh
Shell
mit
8,459
#!/bin/sh echo "Choose scheme name and update it in SCHEME_XC" echo "click manage scheme and choose scheme name and find the build configuration BUILD_CONFIG" echo "if your features(automation test features) are present in different folder rather than folder where project is present , mention the path in FEATURES_PATH or else remove the argument." echo "APPNAME - name of the application usually same as the scheme name" echo "PROJ_LOC - location of xcode project if thats same as current folder remove this option." ruby gistfile1.rb set_location latitude: 51.50722, longitude: -0.12750 SCHEME_XC="Starburst-cal" BUILD_CONFIG="Debug" FEATURES_PATH="features" ARCHITECTURE_SELECTED="i386 x86_64" APPNAME="Starburst-cal" PROJ_LOC="/Users/seunare/ios-apps/UnibetApps.xcworkspace" if [ $1 = "clean" ] then xcodebuild -workspace "${PROJ_LOC}" -scheme "${SCHEME_XC}" -configuration Debug ONLY_ACTIVE_ARCH=NO -sdk iphonesimulator clean build fi if [ $1 = "build" ] then xcodebuild -workspace "${PROJ_LOC}" -scheme "${SCHEME_XC}" -configuration Debug ONLY_ACTIVE_ARCH=NO -sdk iphonesimulator build fi BUILT_PRODUCTS_DIR=$(xcodebuild -scheme "${SCHEME_XC}" -workspace "${PROJ_LOC}" ARCHS="${ARCHITECTURE_SELECTED}" ONLY_ACTIVE_ARCH=NO -sdk iphonesimulator -configuration "${BUILD_CONFIG}" -showBuildSettings | grep -m 1 "BUILT_PRODUCTS_DIR" | grep -oEi "\/.*" | xargs -L1 dirname) APP_BUNDLE_PATH_VAR="${BUILT_PRODUCTS_DIR}"/"${BUILD_CONFIG}"-iphonesimulator/"${APPNAME}".app set_location latitude: 51.50722, longitude: -0.12750 echo DEVICE_TARGET='iPad Air (8.4 Simulator)' APP_BUNDLE_PATH=$APP_BUNDLE_PATH_VAR bundle exec cucumber -p ios --tag $2 DEVICE_TARGET='iPad Air (8.4 Simulator)' APP_BUNDLE_PATH=$APP_BUNDLE_PATH_VAR bundle exec cucumber -p ios --tag $2
lummyare/Unibet-calabash-starburst
run_ios_starburst_ipad.sh
Shell
mit
1,771
#!/bin/bash echo " " echo "*********************************************************************" echo "* MT7688 Cross-environment for building native node modules/add-ons *" echo "* Tested on: *" echo "* Host: Ubuntu 14.04LTS x86_64 (MTK cross-tools) *" echo "* Target: MT7688 MIPS24KEc little endian, OpenWRT *" echo "* *" echo "* Author: Simen Li ([email protected]) *" echo "* GitHub: https://github.com/simenkid/mt7688-cross *" echo "* License: MIT *" echo "*********************************************************************" echo " " echo "<!> Please make sure you have installed the following packages on you host: " echo " >> subversion, build-essential, gcc-multilib, g++-multilib" echo " " read -n1 -p "Are you sure to create the cross environment? [Y/n]" sure echo " " sure=${sure:-y} if [ "${sure}" != "y" -a "${sure}" != "Y" ]; then exit 0 fi node_ver=`node -v` npm_ver=`npm -v` # Check version of node and npm if [ ${node_ver} != 'v0.12.7' ]; then echo "Node version on host should be v0.12.7, yours is ${node_ver}." echo "If you are using n, run: " echo "$ sudo n 0.12.7" exit 0 else echo "node version: ${node_ver}, ok!" fi if [ ${npm_ver} != '2.11.3' ]; then echo "Npm version on host should be 2.11.3, yours is ${npm_ver}." echo "To install the matched version, run: " echo "$ sudo npm install -g [email protected]" exit 0 else echo "npm version: ${npm_ver}, ok!" # if [ ! -d $(pwd)/node_modules ] || [ ! -d $(pwd)/node_modules/node-gyp ]; then # echo "Install node-gyp..." # sudo npm install --prefix $(pwd) node-gyp # fi fi echo " " echo "Create target folder..." if [ ! -d $(pwd)/linkit ]; then mkdir $(pwd)/linkit if [ ! -d $(pwd)/linkit/opt ]; then mkdir $(pwd)/linkit/opt fi fi echo " " echo "Get MT7688 OpenWrt SDK and decompress it into /mt7688sdk..." if [ ! -f OpenWrt-SDK-ramips-mt7688_gcc-4.8-linaro_uClibc-0.9.33.2.Linux-x86_64.tar.bz2 ]; then wget http://download.labs.mediatek.com/MediaTek_LinkIt_Smart_7688_Openwrt_sdk_Linux -O OpenWrt-SDK-ramips-mt7688_gcc-4.8-linaro_uClibc-0.9.33.2.Linux-x86_64.tar.bz2 fi if [ ! -d mt7688sdk ]; then tar xjvf OpenWrt-SDK-ramips-mt7688_gcc-4.8-linaro_uClibc-0.9.33.2.Linux-x86_64.tar.bz2 > /dev/null mv OpenWrt-SDK-ramips-mt7688_gcc-4.8-linaro_uClibc-0.9.33.2.Linux-x86_64/ mt7688sdk fi echo " " echo "Get node source and decompress it into /node-v0.12.7-mips..." if [ ! -f node-v0.12.7.tar.gz ]; then wget https://nodejs.org/dist/v0.12.7/node-v0.12.7.tar.gz fi if [ ! -d node-v0.12.7-mips ]; then tar xzvf node-v0.12.7.tar.gz > /dev/null mv node-v0.12.7/ node-v0.12.7-mips fi echo " " echo "Get depot tools for google chromium repository..." if [ ! -d depot_tools ]; then if [ -f .gclient ]; then rm .gclient fi if [ -f .gclient_entries ]; then rm .gclient_entries fi git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git fi # source env.sh to export environment varaible for cross-toolchain . $(pwd)/env.sh echo " " echo "Get v8 source into /v8" echo "Takes few minutes, please wait..." echo " " # Fetch and build V8 if [ ! -d v8 ]; then if [ -f .gclient ]; then rm .gclient fi if [ -f .gclient_entries ]; then rm .gclient_entries fi fetch v8 cd v8 git fetch origin # checkout to v8 version: 3.28.71 (patch 19) git checkout -b 3.28.71.19 4dbc223b1e4d git branch mv ../DEPS DEPS gclient sync cd .. fi echo " " echo "Build v8 for mips platform..." echo "Takes around 10 minutes, please wait..." echo " " cd v8/ make clean make distclean make dependencies make mipsel.release werror=no library=shared snapshot=off -j4 cp ${BASEDIR}/v8/out/mipsel.release/lib.target/libicui18n.so ${LIBPATH} cp ${BASEDIR}/v8/out/mipsel.release/lib.target/libicuuc.so ${LIBPATH} cd .. # Build Node.js echo " " echo "Build node.js for mips platform..." echo "Takes few minutes, please wait..." echo " " cd node-v0.12.7-mips/ make clean make distclean ./configure --prefix=${TARGET_PATH} --dest-cpu=mipsel --dest-os=linux --without-snapshot --shared-v8 --shared-v8-includes=${V8SOURCE}/include/ --shared-v8-libpath=${V8SOURCE}/out/mipsel.release/lib.target/ make snapshot=off -j4 make install echo " " echo "*********************************************" echo "* Cross-environment done! *" echo "* *" echo "* Use ./npm_install.sh module_name *" echo "* Or ./npm_install.sh module_name@version *" echo "* to compile the node module *" echo "*********************************************"
simenkid/mt7688-cross
create_env.sh
Shell
mit
4,933
#!/usr/bin/python import sqlite3 import os import datetime import calendar import sys cal_name = 'Arbeitszeit' cal_db = os.path.expanduser('~/Library/Calendars/Calendar Cache') days_to_show = 0 if len(sys.argv) > 1: days_to_show = int(sys.argv[1]) apple_epoche = calendar.timegm((2001, 1,1, 0,0,0)) startdate = datetime.datetime.today().replace(hour=0,minute=0,second=0,microsecond=0) + datetime.timedelta(days=days_to_show) startdate = calendar.timegm(startdate.timetuple()) - apple_epoche startdate_expr = "strftime('%s', item.zstartdate, 'unixepoch', '+%d seconds')" % ('%d.%m.%Y', apple_epoche) startdate_sort = "strftime('%s', item.zstartdate, 'unixepoch', '+%d seconds')" % ('%Y-%m-%d', apple_epoche) sql = "select %s, item.ztitle, sum((item.zenddate-item.zstartdate)/3600.0), item.zlocation, item.znotes " % startdate_expr sql += "from zcalendaritem as item inner join znode as cal on item.zcalendar = cal.z_pk " sql += "where cal.ztitle = '%s' " % cal_name sql += "and item.zstartdate >= %d " % startdate sql += "group by item.ztitle, item.zlocation, item.znotes, %s " % startdate_expr sql += "order by %s, item.zlocation, item.ztitle, item.znotes" % startdate_sort conn = sqlite3.connect(cal_db) cursor = conn.cursor() cursor.execute(sql) last_day = None last_proj = None worked = 0 for row in cursor: day = row[0] if last_day == None: last_day = day last_proj = None print "========== %s ==========" % day if last_day != day: print '--------------------------------' print "Worked: %0.2f" % worked print print "========== %s ==========" % day last_day = day worked = 0 comment = row[1] duration = row[2] project = row[3] activity = row[4] if activity == None: activity = "" worked += float(duration) if last_proj != project: last_proj = project print "%s:" % project print " %0.2f %s %s" % (duration, comment, activity) print '--------------------------------' print "Worked: %0.2f" % worked
vidl/ical-worktime
az-10.9.sh
Shell
mit
2,060
system_profiler SPPowerDataType | grep "Charge Capacity" | awk '{print $5}e'
mykey/macscripts
ARCHIEF/charge_capacity.sh
Shell
mit
77
#!/bin/sh # # second alert sample # CALL_DIR=/etc/asterisk/CALL SPOOL_DIR=/var/spool/asterisk/outgoing CALL_NUMBER="XXX-XXXX-XXXX" MAX_RETRY=900 twit="twit" consumerkey="consumerkey" consumersecret="consumersecret" requesttokenuri="https://twitter.com/oauth/request_token" accesstokenuri="https://twitter.com/oauth/access_token" authorizeuri="https://twitter.com/oauth/authorize" tokensavefile="tokensavefile" if [ "$1" == "gettoken" ]; then ${twit} --gettoken --authtype oauth --consumerkey ${consumerkey} --consumersecret ${consumersecret} --requesttokenuri ${requesttokenuri} --accesstokenuri ${accesstokenuri} --authorizeuri ${authorizeuri} --tokensavefile ${tokensavefile} exit 0 fi /bin/echo "[#IDS ALERT] 侵入者発見したかも。 " | nkf -w | ${twit} --method update --pipe --authtype oauth --tokensavefile ${tokensavefile} /usr/bin/amixer set Front on 100% /usr/bin/aplay alert.wav & if [ ! -f "${CALL_DIR}/call.txt" ]; then exit 1 fi retry=${MAX_RETRY} while [ -f ${SPOOL_DIR}/call.txt ] && [ ${retry} -gt 0 ] do /bin/sleep 1 retry=`/usr/bin/expr ${retry} - 1` done /bin/cat ${CALL_DIR}/call.txt | /bin/sed "s/#__CALL_NUMBER__#/${CALL_NUMBER}/g" > ${SPOOL_DIR}/call.txt
potix/sensor-ids
script/second_alert_script.sh
Shell
mit
1,210
#!/bin/sh set -e # Add or modify any build steps you need here cd "$(dirname "$0")" sbt="dependencies/sbt" if [ ! -f "$sbt" ]; then echo "It looks like you deleted the sbt dependency from dependencies/. You'll need it for the rest of this project." exit 1 fi "$sbt" assembly
xthexder/stripe-ctf-3.0
level3/build.sh
Shell
mit
284
#!/bin/sh prog=svcasc2noise_test.m depends="svcasc2noise_test.m test_common.m \ svcasc2noise.m butter2pq.m pq2svcasc.m svcasc2Abcd.m KW.m" tmp=/tmp/$$ here=`pwd` if [ $? -ne 0 ]; then echo "Failed pwd"; exit 1; fi fail() { echo FAILED ${0#$here"/"} $prog 1>&2 cd $here rm -rf $tmp exit 1 } pass() { echo PASSED ${0#$here"/"} $prog cd $here rm -rf $tmp exit 0 } trap "fail" 1 2 3 15 mkdir $tmp if [ $? -ne 0 ]; then echo "Failed mkdir"; exit 1; fi for file in $depends;do \ cp -R src/$file $tmp; \ if [ $? -ne 0 ]; then echo "Failed cp "$file; fail; fi \ done cd $tmp if [ $? -ne 0 ]; then echo "Failed cd"; fail; fi # # the output should look like this # cat > test.ok << 'EOF' ngcasc=[ 1.302 2.100 2.860 2.685 1.881 1.079 0.564 0.307 0.217 0.080 ] Hl2=[ 0.111 0.088 0.078 0.074 0.075 0.080 0.091 0.120 0.245 1.000 ] xbits=[ 0.339 0.683 0.906 0.861 0.604 0.203 -0.265 -0.703 -0.953 -1.677 ] EOF if [ $? -ne 0 ]; then echo "Failed output cat test.ok"; fail; fi # # run and see if the results match # echo "Running $prog" octave --no-gui -q $prog >test.out 2>&1 if [ $? -ne 0 ]; then echo "Failed running $prog"; fail; fi diff -Bb test.ok test.out if [ $? -ne 0 ]; then echo "Failed diff -Bb of test.out"; fail; fi # # this much worked # pass
robertgj/DesignOfIIRFilters
test/01/t0153a.sh
Shell
mit
1,321
# (C) 2001-2017 Altera Corporation. All rights reserved. # Your use of Altera Corporation's design tools, logic functions and # other software and tools, and its AMPP partner logic functions, and # any output files any of the foregoing (including device programming # or simulation files), and any associated documentation or information # are expressly subject to the terms and conditions of the Altera # Program License Subscription Agreement, Altera MegaCore Function # License Agreement, or other applicable license agreement, including, # without limitation, that your use is for the sole purpose of # programming logic devices manufactured by Altera and sold by Altera # or its authorized distributors. Please refer to the applicable # agreement for further details. # ACDS 16.1 196 win32 2017.01.14.16:14:12 # ---------------------------------------- # vcs - auto-generated simulation script # ---------------------------------------- # This script provides commands to simulate the following IP detected in # your Quartus project: # Avalon_Test_Streaming # # Altera recommends that you source this Quartus-generated IP simulation # script from your own customized top-level script, and avoid editing this # generated script. # # To write a top-level shell script that compiles Altera simulation libraries # and the Quartus-generated IP in your project, along with your design and # testbench files, follow the guidelines below. # # 1) Copy the shell script text from the TOP-LEVEL TEMPLATE section # below into a new file, e.g. named "vcs_sim.sh". # # 2) Copy the text from the DESIGN FILE LIST & OPTIONS TEMPLATE section into # a separate file, e.g. named "filelist.f". # # ---------------------------------------- # # TOP-LEVEL TEMPLATE - BEGIN # # # # TOP_LEVEL_NAME is used in the Quartus-generated IP simulation script to # # set the top-level simulation or testbench module/entity name. # # # # QSYS_SIMDIR is used in the Quartus-generated IP simulation script to # # construct paths to the files required to simulate the IP in your Quartus # # project. By default, the IP script assumes that you are launching the # # simulator from the IP script location. If launching from another # # location, set QSYS_SIMDIR to the output directory you specified when you # # generated the IP script, relative to the directory from which you launch # # the simulator. # # # # Source the Quartus-generated IP simulation script and do the following: # # - Compile the Quartus EDA simulation library and IP simulation files. # # - Specify TOP_LEVEL_NAME and QSYS_SIMDIR. # # - Compile the design and top-level simulation module/entity using # # information specified in "filelist.f". # # - Override the default USER_DEFINED_SIM_OPTIONS. For example, to run # # until $finish(), set to an empty string: USER_DEFINED_SIM_OPTIONS="". # # - Run the simulation. # # # source <script generation output directory>/synopsys/vcs/vcs_setup.sh \ # TOP_LEVEL_NAME=<simulation top> \ # QSYS_SIMDIR=<script generation output directory> \ # USER_DEFINED_ELAB_OPTIONS="\"-f filelist.f\"" \ # USER_DEFINED_SIM_OPTIONS=<simulation options for your design> # # # # TOP-LEVEL TEMPLATE - END # ---------------------------------------- # # ---------------------------------------- # # DESIGN FILE LIST & OPTIONS TEMPLATE - BEGIN # # # # Compile all design files and testbench files, including the top level. # # (These are all the files required for simulation other than the files # # compiled by the Quartus-generated IP simulation script) # # # +systemverilogext+.sv # <design and testbench files, compile-time options, elaboration options> # # # # DESIGN FILE LIST & OPTIONS TEMPLATE - END # ---------------------------------------- # # IP SIMULATION SCRIPT # ---------------------------------------- # If Avalon_Test_Streaming is one of several IP cores in your # Quartus project, you can generate a simulation script # suitable for inclusion in your top-level simulation # script by running the following command line: # # ip-setup-simulation --quartus-project=<quartus project> # # ip-setup-simulation will discover the Altera IP # within the Quartus project, and generate a unified # script which supports all the Altera IP within the design. # ---------------------------------------- # ACDS 16.1 196 win32 2017.01.14.16:14:12 # ---------------------------------------- # initialize variables TOP_LEVEL_NAME="Avalon_Test_Streaming" QSYS_SIMDIR="./../../" QUARTUS_INSTALL_DIR="D:/intelfpga_lite/16.1/quartus/" SKIP_FILE_COPY=0 SKIP_SIM=0 USER_DEFINED_ELAB_OPTIONS="" USER_DEFINED_SIM_OPTIONS="+vcs+finish+100" # ---------------------------------------- # overwrite variables - DO NOT MODIFY! # This block evaluates each command line argument, typically used for # overwriting variables. An example usage: # sh <simulator>_setup.sh SKIP_SIM=1 for expression in "$@"; do eval $expression if [ $? -ne 0 ]; then echo "Error: This command line argument, \"$expression\", is/has an invalid expression." >&2 exit $? fi done # ---------------------------------------- # initialize simulation properties - DO NOT MODIFY! ELAB_OPTIONS="" SIM_OPTIONS="" if [[ `vcs -platform` != *"amd64"* ]]; then : else : fi # ---------------------------------------- # copy RAM/ROM files to simulation directory vcs -lca -timescale=1ps/1ps -sverilog +verilog2001ext+.v -ntb_opts dtm $ELAB_OPTIONS $USER_DEFINED_ELAB_OPTIONS \ -v $QUARTUS_INSTALL_DIR/eda/sim_lib/altera_primitives.v \ -v $QUARTUS_INSTALL_DIR/eda/sim_lib/220model.v \ -v $QUARTUS_INSTALL_DIR/eda/sim_lib/sgate.v \ -v $QUARTUS_INSTALL_DIR/eda/sim_lib/altera_mf.v \ $QUARTUS_INSTALL_DIR/eda/sim_lib/altera_lnsim.sv \ -v $QUARTUS_INSTALL_DIR/eda/sim_lib/synopsys/cyclonev_atoms_ncrypt.v \ -v $QUARTUS_INSTALL_DIR/eda/sim_lib/synopsys/cyclonev_hmi_atoms_ncrypt.v \ -v $QUARTUS_INSTALL_DIR/eda/sim_lib/cyclonev_atoms.v \ -v $QUARTUS_INSTALL_DIR/eda/sim_lib/synopsys/cyclonev_hssi_atoms_ncrypt.v \ -v $QUARTUS_INSTALL_DIR/eda/sim_lib/cyclonev_hssi_atoms.v \ -v $QUARTUS_INSTALL_DIR/eda/sim_lib/synopsys/cyclonev_pcie_hip_atoms_ncrypt.v \ -v $QUARTUS_INSTALL_DIR/eda/sim_lib/cyclonev_pcie_hip_atoms.v \ $QSYS_SIMDIR/submodules/verbosity_pkg.sv \ $QSYS_SIMDIR/submodules/avalon_utilities_pkg.sv \ $QSYS_SIMDIR/submodules/altera_avalon_st_source_bfm.sv \ $QSYS_SIMDIR/submodules/altera_avalon_st_sink_bfm.sv \ $QSYS_SIMDIR/submodules/altera_avalon_reset_source.sv \ $QSYS_SIMDIR/submodules/altera_avalon_clock_source.sv \ $QSYS_SIMDIR/Avalon_Test_Streaming.v \ -top $TOP_LEVEL_NAME # ---------------------------------------- # simulate if [ $SKIP_SIM -eq 0 ]; then ./simv $SIM_OPTIONS $USER_DEFINED_SIM_OPTIONS fi
MattProtas/FPGA
Systems/Avalon_Test_Streaming/Avalon_Test_Streaming/simulation/synopsys/vcs/vcs_setup.sh
Shell
mit
6,728
#!/bin/bash docker build --rm -t kawanamiyuu/docker-elasticsearch-kibana:sender `dirname $0` docker images
kawanamiyuu/docker-elasticsearch-kibana
sender/docker-build.sh
Shell
mit
108
npm run clean && npm run build && docker-compose up --build
starmage/my-movies
build.sh
Shell
mit
60
reponame="svn-with-dir" mkdir $reponame cd $reponame # Creating a repository in this location svnadmin create . svn_path=`pwd` cd ../ mkdir repo03 cd repo03/ # Checking out the repository svn co file://$svn_path # Going into the repo dir cd $reponame mkdir dir # adding the new dir to the repository svn add dir cd dir touch file # Adding the newly created file to the repository svn add file cd ../ # Commiting the file and dir into the repository svn ci -m "Initial commit --> file and new dir." cd ..
hbussell/pinax-tracker
apps/pyvcal/tests/repositories/subversion/create_repository_with_directory.sh
Shell
mit
518
#!/bin/sh exec uwsgi --chdir /root/loom --socket 127.0.0.1:3545 --module loom --callable app --enable-threads
teslaworksumn/loom
scripts/uwsgi_service.sh
Shell
mit
110
#!/bin/bash #set -ex cd $(dirname $0) source ../config/scripts.conf VOLUME_RANGE_STR=$(amixer get $CONTROL_NAME | grep 'Limits: Playback' | sed -e 's/.*Playback//g' | sed -e 's/ \- /:/g') MIN_VOLUME=$(echo $VOLUME_RANGE_STR | cut -d':' -f 1) MAX_VOLUME=$(echo $VOLUME_RANGE_STR | cut -d':' -f 2) VOL_RANGE=$[ $MAX_VOLUME - $MIN_VOLUME ] amixer -M > /dev/null 2>&1 && AMIXER_HAS_NON_LINEAR_SCALING="y" function get_mute_state(){ amixer get $CONTROL_NAME | tail -n 1 | egrep -o "\[o[fn]f?\]" | tr -d [\[\]] } function get_volume(){ amixer get $CONTROL_NAME | tail -n 1 | egrep -o \(\-\|''\)[0-9]* | head -n 1 } function volum_abs_to_rel(){ local abs_val=$1 local norm_val=$(echo "100 * ((( $abs_val - $MIN_VOLUME ) / $VOL_RANGE ) ^4)" | bc -l) stripped_val=$(echo ${norm_val} | sed -e 's/\..*//g') echo ${stripped_val:-0} } function get_volume_percent(){ if [ "x${AMIXER_HAS_NON_LINEAR_SCALING}" == "xy" ];then amixer get -M $CONTROL_NAME | tail -n 1 | egrep -o [0-9]*\% | egrep -o [0-9]* else echo $(volum_abs_to_rel $(get_volume)) fi } function set_volume_percent(){ local target=$1 [ $target -gt 100 ] && target=100 [ $target -lt 0 ] && target=0 if [ "x${AMIXER_HAS_NON_LINEAR_SCALING}" == "xy" ];then amixer -M -- set $CONTROL_NAME ${target}% else local target_abs=$(echo "$MIN_VOLUME + $VOL_RANGE * sqrt(sqrt( $target / 100))" | bc -l) amixer -- set $CONTROL_NAME ${target_abs%.*} fi } function volume_change_percent(){ local delta=$1 local current=$(get_volume_percent) local new=$[ $current + $delta ] set_volume_percent $new } COMMAND=$1 case $COMMAND in 'tmute') amixer set $CONTROL_NAME toggle > /dev/null 2>&1 ;; 'up') if [ "x${AMIXER_HAS_NON_LINEAR_SCALING}" == "xy" ];then amixer -M set ${MASTER_NAME} 10%+ else volume_change_percent 10 > /dev/null 2>&1 fi ;; 'down') if [ "x${AMIXER_HAS_NON_LINEAR_SCALING}" == "xy" ];then amixer -M set ${MASTER_NAME} 10%- else volume_change_percent -10 > /dev/null 2>&1 fi ;; 'get') if [ "off" == "$(get_mute_state)" ];then echo "M"; else echo $(get_volume_percent)"%" fi ;; *) echo "Invalid argument $COMMAND" exit -1 ;; esac
enguerrand/radiopi
scripts/volume.sh
Shell
mit
2,376
#!/bin/sh # CYBERWATCH SAS - 2017 # # Security fix for DSA-3009-1 # # Security announcement date: 2014-08-21 00:00:00 UTC # Script generation date: 2017-01-01 21:07:01 UTC # # Operating System: Debian 7 (Wheezy) # Architecture: x86_64 # # Vulnerable packages fix on version: # - python-imaging:1.1.7-4+deb7u1 # # Last versions recommanded by security team: # - python-imaging:1.1.7-4+deb7u3 # # CVE List: # - CVE-2014-3589 # # More details: # - https://www.cyberwatch.fr/vulnerabilites # # Licence: Released under The MIT License (MIT), See LICENSE FILE sudo apt-get install --only-upgrade python-imaging=1.1.7-4+deb7u3 -y
Cyberwatch/cbw-security-fixes
Debian_7_(Wheezy)/x86_64/2014/DSA-3009-1.sh
Shell
mit
635
#!/bin/bash set > /root/vars.sh
tuxpiper/cloudcast
tests/scripts/sample-script.sh
Shell
mit
33
#!/usr/bin/env bash IMAGE_NAME_ARG="$1" DEFAULT_JAVA_IMAGE_NAME="vaxiom/AXIOJAVA8" DEFAULT_TOMCAT_IMAGE_NAME="vaxiom/AXIOVM01TOMCAT7" DEFAULT_BASE_IMAGE_NAME="vaxiom/centos" USAGE_STR="$(basename $0) <name of the image>" usage() { local RC=0 if [ ! $# -eq 1 ];then echo "$USAGE_STR" echo " e.g.,: ./delete-docker-images.sh $DEFAULT_BASE_IMAGE_NAME" echo " e.g.,: ./delete-docker-images.sh $DEFAULT_JAVA_IMAGE_NAME" echo " e.g.,: ./delete-docker-images.sh $DEFAULT_TOMCAT_IMAGE_NAME" RC=1 fi if [ -z "$IMAGE_NAME_ARG" ];then RC=1 echo "$USAGE_STR" fi return $RC } wrapUp() { cd $HOME_DIR } deleteDockerImage() { local RC=0 local IMAGE_NAME="$1" local DOCKER_IMAGES_STR="" local DOCKER_CONTAINER_ID="" local DOCKER_IMAGE_ID="" if [ -z "$IMAGE_NAME" ];then echo "ERROR: missing docker image name..." RC=1 fi if [ $RC -eq 0 ];then echo "INFO: Searching for $IMAGE_NAME image(s)..." echo "INFO: DELETING EXISTING DOCKER CONTAINERS FOR $IMAGE_NAME..." for container in `docker ps -a | grep $IMAGE_NAME`; do DOCKER_IMAGES_STR=$(echo '$container' | sed 's/ */\ /g') declare -a DOCKER_IMAGE_ARRAY=($DOCKER_IMAGES_STR) DOCKER_CONTAINER_ID${DOCKER_IMAGE_ARRAY[0]} echo "INFO: Deleting container: $DOCKER_CONTAINER_ID ..." docker rm -f $DOCKER_CONTAINER_ID if [ ! $? -eq 0 ];then echo "WARNING: Error deleting container $container" fi done echo "INFO: DELETING EXISTING DOCKER IMAGES..." for image in `docker images -a | grep $IMAGE_NAME`; do local DOCKER_IMAGES_STR=$(echo '$image' | sed 's/ */\ /g') declare -a DOCKER_IMAGE_ARRAY=($DOCKER_IMAGES_STR) DOCKER_IMAGE_ID=${DOCKER_IMAGE_ARRAY[2]} echo "INFO: Deleting container: $image ..." docker rmi -f $DOCKER_IMAGE_ID if [ $? -eq 0 ];then echo "WARNING: Error deleting image $image" fi done fi return $RC } main() { local RC=1 echo "INFO: Running $(basename $0) as $(whoami)" if ( usage ) then if ( deleteDockerImage "$IMAGE_NAME_ARG" ) then echo "SUCCESS: Job completed without errors." RC=0 fi fi } main wrapUp
morridm/vaxiom-docker
base/delete-docker-images.sh
Shell
mit
2,189
#!/bin/bash ( (find third_party/emsdk/ | sort -d -f); echo "__MANIFEST DONE__"; cat `find third_party/emsdk/ -type f | sort -d -f`) | openssl dgst -sha256 -hex | cut -d' ' -f2
sarum90/cpp_web_framework
tools/emsdk_hash.sh
Shell
mit
177
#!/bin/bash HADOOP_PATH=~/hadoop-2.7.0 APP_NAME=URLCat JAR_NAME=URLCat # input file on HDFS INPUT_FILE=hdfs://localhost/output.txt # run $HADOOP_PATH/bin/hadoop jar $JAR_NAME.jar $APP_NAME $INPUT_FILE
ArthurChiao/hadoop_by_examples
10_HDFS/HDFS_03_URLCat/run.sh
Shell
mit
205
#! /bin/sh PATH=${WORKSPACE}/venv/bin:$PATH PYLINT=pylint if [ ! -d "venv" ]; then virtualenv venv fi chmod +x ./venv/bin/activate ./venv/bin/activate pip install --trusted-host scmesos06 -i http://scmesos06/simple -r requirements_dev.txt --cache-dir=/tmp/recipe [ $? -gt 0 ] && exit 1 pip install --trusted-host scmesos06 -i http://scmesos06/simple Coverage --cache-dir=/tmp/recipe [ $? -gt 0 ] && exit 1 ${PYLINT} -f parseable sirius | tee pylint.out
by46/tunicorn
ci/analysis.sh
Shell
mit
459
#!/bin/sh mkdir -p /data/pcap if [ -z $1 ]; then BUILDDIR=/data/moloch-git else BUILDDIR=$1 fi echo "git clone" git clone https://github.com/aol/moloch.git $BUILDDIR echo "cd to dir and build" cd $BUILDDIR USEPFRING=no ESMEM="512M" DONOTSTART=yes MOLOCHUSER=daemon GROUPNAME=daemon PASSWORD=0mgMolochDockerRules5 INTERFACE=eth0 BATCHRUN=yes ./easybutton-singlehost.sh killall java echo "Giving ES time to shut itself" sleep 5
kost/docker-moloch
scripts/buildmoloch.sh
Shell
mit
432
#!/bin/bash lammps_dir="$HOME/lammps-18Feb11/src" project_dir="$HOME/Project_Files_2009.05.18/Lammps_Files/release" simulation_dir=`pwd` pr_file1="fix_backbone.cpp" pr_file2="fix_backbone.h" pr_file3="fix_go-model.cpp" pr_file4="fix_go-model.h" pr_file5="pair_excluded_volume.cpp" pr_file6="pair_excluded_volume.h" #pr_file7="style.h" pr_file8="smart_matrix_lib.h" pr_file9="fix_qbias.cpp" pr_file10="fix_qbias.h" pr_file11="fragment_memory.cpp" pr_file12="fragment_memory.h" lmp_name="lmp_serial" in_file="1r69.in" cp -v $project_dir/$pr_file1 $project_dir/$pr_file2 $project_dir/$pr_file3 $project_dir/$pr_file4 $project_dir/$pr_file5 $project_dir/$pr_file6 $project_dir/$pr_file8 $project_dir/$pr_file9 $project_dir/$pr_file10 $project_dir/$pr_file11 $project_dir/$pr_file12 $lammps_dir pwd cd $lammps_dir #make clean-all make serial #make serial_debug cp -v $lammps_dir/$lmp_name $simulation_dir pwd cd $simulation_dir for i in $* ; do case $i in run) ./$lmp_name < $in_file ;; mpi_run) ./start.sh ;; esac done
luwei0917/awsemmd_script
script/lammps.sh
Shell
mit
1,055
#!/bin/bash is_git_dir() { # Based on this: # https://stackoverflow.com/questions/2180270/check-if-current-directory-is-a-git-repository inside_git_repo="$(git rev-parse --is-inside-work-tree 2>/dev/null)" if [ "$inside_git_repo" ]; then return 1 else return 0 fi } # Check the status of a git repo # return codes: # 0: not a git repo # 1: git repo, but no upstream # 2: up to date # 3: need to pull # 4: need to push # 5: diverged check_status() { git remote update 2>&1 > /dev/null # '@' tells git to look at the current branch # '@{u}' tells git to look at the upstream branch for this branch LOCAL=`git rev-parse @ 2> /dev/null` if [ $? -ne 0 ]; then return 0 fi REMOTE=`git rev-parse @{u} 2> /dev/null` if [ $? -ne 0 ]; then return 1 fi BASE=`git merge-base @ @{u} 2> /dev/null` if [ $? -ne 0 ]; then return 5 fi if [ $LOCAL = $REMOTE ]; then return 2 elif [ $LOCAL = $BASE ]; then return 3 elif [ $REMOTE = $BASE ]; then return 4 else return 5 fi } DEFAULT="\033[0m" RED="\033[31m" YELLOW="\033[33m" GREEN="\033[32m" for d in */ ; do pushd "$d" > /dev/null check_status RET=$? if [ $RET -eq 0 ]; then message="not a git repo" color=${RED} elif [ $RET -eq 1 ]; then message="no upstream" color=${RED} elif [ $RET -eq 2 ]; then message="Up to date" color=${GREEN} elif [ $RET -eq 3 ]; then message="need to pull" color=${YELLOW} elif [ $RET -eq 4 ]; then message="need to push" color=${YELLOW} elif [ $RET -eq 5 ]; then message="diverged" color=${YELLOW} else message="unknown status" color=${RED} fi printf "%-35s ${color}${message}${DEFAULT}\n" "$d:" popd > /dev/null done
Blinkinlabs/BlinkinlabsAltiumLibrary
scripts/check_sync.sh
Shell
mit
1,939
#!/bin/sh # CYBERWATCH SAS - 2017 # # Security fix for USN-2400-1 # # Security announcement date: 2014-11-10 00:00:00 UTC # Script generation date: 2017-01-01 21:04:03 UTC # # Operating System: Ubuntu 12.04 LTS # Architecture: i386 # # Vulnerable packages fix on version: # - libreoffice-core:1:3.5.7-0ubuntu7 # # Last versions recommanded by security team: # - libreoffice-core:1:3.5.7-0ubuntu12 # # CVE List: # - CVE-2014-3575 # # More details: # - https://www.cyberwatch.fr/vulnerabilites # # Licence: Released under The MIT License (MIT), See LICENSE FILE sudo apt-get install --only-upgrade libreoffice-core=1:3.5.7-0ubuntu12 -y
Cyberwatch/cbw-security-fixes
Ubuntu_12.04_LTS/i386/2014/USN-2400-1.sh
Shell
mit
646
#!/usr/bin/env bash ## Makes debuggers' life easier - Unofficial Bash Strict Mode ## BASHDOC: Shell Builtin Commands - Modifying Shell Behavior - The Set Builtin set -o errexit set -o errtrace set -o nounset set -o pipefail if [[ -v "BASH_SOURCE[0]" ]]; then RUNTIME_EXECUTABLE_PATH="$(realpath --strip "${BASH_SOURCE[0]}")" RUNTIME_EXECUTABLE_FILENAME="$(basename "${RUNTIME_EXECUTABLE_PATH}")" RUNTIME_EXECUTABLE_NAME="${RUNTIME_EXECUTABLE_FILENAME%.*}" RUNTIME_EXECUTABLE_DIRECTORY="$(dirname "${RUNTIME_EXECUTABLE_PATH}")" RUNTIME_COMMANDLINE_BASECOMMAND="${0}" # Keep these partially unused variables declared # shellcheck disable=SC2034 declare -r\ RUNTIME_EXECUTABLE_PATH\ RUNTIME_EXECUTABLE_FILENAME\ RUNTIME_EXECUTABLE_NAME\ RUNTIME_EXECUTABLE_DIRECTORY\ RUNTIME_COMMANDLINE_BASECOMMAND fi # Test environment variable : "${DOCKER_BUILD_SRC_PATH:?Need to set DOCKER_BUILD_SRC_PATH}" declare -ar RUNTIME_COMMANDLINE_PARAMETERS=("${@}") declare -r ARCH="${RUNTIME_COMMANDLINE_PARAMETERS[0]}" declare -r DOCKER_IMG_REPO="emby" declare -r DOCKER_IMG_NAME="emby-base" declare -r BUILDDIR="/var/tmp/${DOCKER_IMG_REPO}_${DOCKER_IMG_NAME}_${ARCH}" declare -r DOCKER_ROOTFS_REPO="http://download.opensuse.org/repositories/home:/emby:/docker/images/" declare -r QEMU_REPO="http://download.opensuse.org/tumbleweed/repo/oss/suse/x86_64/" function clean() { rm -rf "$BUILDDIR" }; declare -fr clean function init_build() { echo "Building Docker image: $DOCKER_IMG_REPO/$DOCKER_IMG_NAME:$ARCH" if [[ -d "$BUILDDIR" ]]; then clean fi mkdir -p "$BUILDDIR" }; declare -fr init_build function prep_qemu_binfmt() { mkdir -p "$BUILDDIR/usr/bin" if [[ "$ARCH" == "armv7" ]]; then rpm2cpio "$BUILDDIR/qemu-linux-user.rpm" | cpio -D "$BUILDDIR" -idmv "*qemu-arm" "*qemu-arm-*" if [[ ! -e "/proc/sys/fs/binfmt_misc/qemu-arm" ]]; then docker run --rm --privileged emby/qemu-register:latest fi fi if [[ "$ARCH" == "aarch64" ]]; then rpm2cpio "$BUILDDIR/qemu-linux-user.rpm" | cpio -D "$BUILDDIR" -idmv "*qemu-aarch*" if [[ ! -e "/proc/sys/fs/binfmt_misc/qemu-aarch64" ]]; then docker run --rm --privileged emby/qemu-register:latest fi fi }; declare -fr prep_qemu_binfmt function prep_rootfs() { if [[ "$tar_is_native_docker_img" == "1" ]]; then tar -C "$BUILDDIR" -xvf "$BUILDDIR/temp.tar.xz" rm "$BUILDDIR/temp.tar.xz" find "$BUILDDIR" -maxdepth 1 -type f -size -10M -delete find "$BUILDDIR" -maxdepth 1 -type f -size +40M -print0 | xargs -0 -I {} mv {} "$BUILDDIR/rootfs.tar.xz" else mv "$BUILDDIR/temp.tar.xz" "$BUILDDIR/rootfs.tar.xz" fi }; declare -fr prep_rootfs function copy_docker_src_files() { cp "$DOCKER_BUILD_SRC_PATH/Dockerfile" "$BUILDDIR" cp -r "$DOCKER_BUILD_SRC_PATH/overlay-$ARCH" "$BUILDDIR/overlay-$ARCH" cp -r "$DOCKER_BUILD_SRC_PATH/overlay-common" "$BUILDDIR/overlay-common" }; declare -fr copy_docker_src_files function get_ffmpeg() { if [[ "$ARCH" == "x86_64" ]]; then \ curl -L https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-64bit-static.tar.xz -o "$BUILDDIR/ffmpeg.tar.xz" else curl -L https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-armhf-32bit-static.tar.xz -o "$BUILDDIR/ffmpeg.tar.xz" fi tar -C "$BUILDDIR/usr/bin" -xf "$BUILDDIR/ffmpeg.tar.xz" --wildcards "*/ffmpeg" --strip-components=1 tar -C "$BUILDDIR/usr/bin" -xf "$BUILDDIR/ffmpeg.tar.xz" --wildcards "*/ffprobe" --strip-components=1 }; declare -fr get_ffmpeg function prep_build() { declare docker_rootfs_txz\ tar_is_native_docker_img\ qemu_rpm docker_rootfs_txz=$( \ curl -s "$DOCKER_ROOTFS_REPO" --list-only | \ sed -n "s%.*>\(emby-base.*${ARCH}.*-.*tar.xz\)</a>.*%\1%p" | \ sort -i | \ head -1 ) curl --silent -L "$DOCKER_ROOTFS_REPO/$docker_rootfs_txz" -o "$BUILDDIR/temp.tar.xz" tar_is_native_docker_img=$( \ tar tvf "$BUILDDIR/temp.tar.xz" | \ awk 'BEGIN{ cnt=0; } { if ( $6 == "manifest.json" ) cnt=1; } END{ print cnt }' ) qemu_rpm=$( \ curl -s "$QEMU_REPO" --list-only | \ grep qemu-linux | \ sed -n "s%.*>\(qemu-linux-.*rpm\)</a>.*%\1%p" | \ tail -1 ) curl --silent -L "$QEMU_REPO/$qemu_rpm" -o "$BUILDDIR/qemu-linux-user.rpm" prep_qemu_binfmt prep_rootfs copy_docker_src_files }; declare -fr prep_build function build_and_tag() { cd "$BUILDDIR" && \ docker build --build-arg ARCH="$ARCH" --rm=true "--tag=$DOCKER_IMG_REPO/$DOCKER_IMG_NAME:$ARCH" . if [[ "$ARCH" == "x86_64" ]]; then \ docker tag "$DOCKER_IMG_REPO/$DOCKER_IMG_NAME:$ARCH" "$DOCKER_IMG_REPO/$DOCKER_IMG_NAME:latest" fi clean }; declare -fr build_and_tag init_build prep_build get_ffmpeg build_and_tag
MediaBrowser/Emby.Build
docker-containers/base/utils/docker-build.sh
Shell
mit
4,725
#!/bin/bash for test in $(find tests -name '*.ts'); do # if [[ $(uname) == MS* ]]; then # Windows (PowerShell) # node ./node_modules/typings-checker/src/index.js $test --verbose --noLines 2>&1 | Out-File -encoding utf8 tee $test.out if [[ $PWD == /mnt/* ]]; then # Bash on Windows, messes with local path so try global install typings-checker $test --verbose --noLines 2>&1 | tee $test.out else node ./node_modules/typings-checker/src/index.js $test --verbose --noLines 2>&1 | tee $test.out fi rc=${PIPESTATUS[0]}; if [[ $rc != 0 ]]; then exit $rc; fi done # This shows changes and sets the exit code. set -o errexit git status git --no-pager diff -- tests
jcristovao/typescript-ramda
update-tests.sh
Shell
mit
680
#!/bin/bash ################################################# # Check if a database table exists ################################################# Database__table_exists() { read -d '' sql <<____EOF SELECT table_name FROM information_schema.tables WHERE table_schema = 'public' AND table_name = '$Database__postgres_migration_table'; ____EOF tables=$(Postgres__fetch "${sql}") if [ "$tables" = "" ]; then echo 0 else echo 1 fi } ################################################# # Returns the database table we're using for # migrations. ################################################# Database__migration_table() { echo "$Database__postgres_migration_table" } ################################################# # Creates the table to track migrations ################################################# Database__create_migrations_table() { primary_key="$Database__postgres_migration_table"_pk read -d '' sql <<____EOF CREATE TABLE $Database__postgres_migration_table ( id BIGSERIAL, name VARCHAR(255) NULL, ran_last BOOLEAN NULL, active BOOLEAN NULL, CONSTRAINT $primary_key PRIMARY KEY (id) ); ____EOF Postgres__execute "${sql}" } ################################################# # Creates a migration # # @param $1: The name of the migration ################################################# Database__create_migration() { read -d '' sql <<____EOF INSERT INTO $Database__postgres_migration_table VALUES (DEFAULT, '$1', FALSE, FALSE); ____EOF Postgres__execute "${sql}" } ################################################# # Sets all migrations ran_last to false ################################################# Database__reset_ran_last() { read -d '' sql <<____EOF UPDATE $Database__postgres_migration_table SET ran_last=FALSE; ____EOF Postgres__execute "${sql}" } ################################################# # Sets the migration with the id=$1 # ran_last to $2 # # @param $1: The id of the migration # @param $2: What to set ran_last to ################################################# Database__set_ran_last() { read -d '' sql <<____EOF UPDATE $Database__postgres_migration_table SET ran_last='$2' WHERE id=$1; ____EOF Postgres__execute "${sql}" } ################################################# # Sets the migration with the id=$1 # active to $2 # # @param $1: The id of the migration # @param $2: What to set active to ################################################# Database__set_active() { read -d '' sql <<____EOF UPDATE $Database__postgres_migration_table SET active='$2' WHERE id=$1; ____EOF Postgres__execute "${sql}" } ################################################# # Gets all migrations that were ran last ################################################# Database__get_last_ran() { read -d '' sql <<____EOF SELECT id, name FROM $Database__postgres_migration_table WHERE ran_last='1' ORDER BY name DESC; ____EOF echo $(Postgres__fetch "${sql}") } ################################################# # Gets all names + active information ################################################# Database__get_map_data() { read -d '' sql <<____EOF SELECT name, active FROM $Database__postgres_migration_table ORDER BY name ASC; ____EOF echo $(Postgres__fetch "${sql}") } ################################################# # Gets all outstanding migrations ################################################# Database__get_outstanding_migrations() { read -d '' sql <<____EOF SELECT id, name FROM $Database__postgres_migration_table WHERE active='0' ORDER BY name ASC; ____EOF echo $(Postgres__fetch "${sql}") } ################################################# # Gets migrations for the step_down function # # @param $1: The number of migrations to get ################################################# Database__get_step_down_migrations() { read -d '' sql <<____EOF SELECT id, name FROM $Database__postgres_migration_table WHERE active='1' ORDER BY name DESC LIMIT $1; ____EOF echo $(Postgres__fetch "${sql}") } ################################################# # Gets migrations for the step_up function # # @param $1: The number of migrations to get ################################################# Database__get_step_up_migrations() { read -d '' sql <<____EOF SELECT id, name FROM $Database__postgres_migration_table WHERE active='0' ORDER BY name ASC LIMIT $1; ____EOF echo $(Postgres__fetch "${sql}") } ################################################# # Gets all active migrations ################################################# Database__get_active_migrations() { read -d '' sql <<____EOF SELECT id, name FROM $Database__postgres_migration_table WHERE active='1' ORDER BY name DESC; ____EOF echo $(Postgres__fetch "${sql}") } ################################################# # Returns a migration from it's name # # @param $1: The name of the migration ################################################# Database__get_migration_from_name() { read -d '' sql <<____EOF SELECT * FROM $Database__postgres_migration_table WHERE name='$1'; ____EOF echo $(Postgres__fetch "${sql}") } ################################################# # Executes the contents of a file on the db # # @param $1: The file to execute ################################################# Database__file_execute() { command=$(cat "$1") Postgres__execute "$command" }
DigitalCitadel/originator
modules/migrate/lib/database_drivers/postgres.bash
Shell
mit
5,690
/bin/echo "postremove script started [$1]" if [ "$1" = 0 ] then /usr/sbin/userdel -r takehome 2> /dev/null || : /bin/rm -rf /usr/local/takehome fi /bin/echo "postremove script finished" exit 0
wallrj/takehome
scripts/rpm/postremove.sh
Shell
mit
199
#!/bin/sh set -e giturl="https://$3:$4@$1.com/$2" if ! (git clone $giturl -q app) then exit 1 fi cd app glide -q init --non-interactive && glide -q install if [ $? -gt 0 ]; then echo "Cannot glide '$giturl'" >&2 exit 2 fi rm -rf coverage.out echo 'mode: count' > coverage.out for d in $(go list ./... | grep -v vendor); do ret=$(go test -tags=$5 -coverprofile=coverage-tmp.out -covermode=count $d) if [ $? -gt 0 ]; then echo $ret >&2 exit 3 fi if [ -f coverage-tmp.out ]; then tail -n +2 coverage-tmp.out >> coverage.out rm -rf coverage-tmp.out fi done go tool cover -func=coverage.out -o=report.out if [ $? -gt 0 ]; then echo "Cannot make func coverage" >&2 exit 4 fi go tool cover -html=coverage.out -o=/dev/stdout if [ $? -gt 0 ]; then echo "Cannot make html coverage" >&2 exit 5 fi number=$(cat report.out | grep 'total' | grep -o '[0-9]*[.][0-9]') echo "<!-- cov:$number -->"
plimble/aloy
docker/gocover.sh
Shell
mit
972
#!/usr/bin/env bash mkdir -p $HOME/.ncurses_db wget --directory-prefix=$HOME/.ncurses_db http://invisible-island.net/datafiles/current/terminfo.src.gz gunzip $HOME/.ncurses_db/terminfo.src.gz tic -x $HOME/.ncurses_db/terminfo.src
CoderVikas/mindotfiles
install/ncurses.sh
Shell
mit
231
#!/bin/sh # CYBERWATCH SAS - 2017 # # Security fix for USN-2577-1 # # Security announcement date: 2015-04-23 00:00:00 UTC # Script generation date: 2017-01-01 21:04:29 UTC # # Operating System: Ubuntu 14.04 LTS # Architecture: x86_64 # # Vulnerable packages fix on version: # - wpasupplicant:2.1-0ubuntu1.2 # # Last versions recommanded by security team: # - wpasupplicant:2.1-0ubuntu1.4 # # CVE List: # - CVE-2015-1863 # # More details: # - https://www.cyberwatch.fr/vulnerabilites # # Licence: Released under The MIT License (MIT), See LICENSE FILE sudo apt-get install --only-upgrade wpasupplicant=2.1-0ubuntu1.4 -y
Cyberwatch/cbw-security-fixes
Ubuntu_14.04_LTS/x86_64/2015/USN-2577-1.sh
Shell
mit
631
#!/bin/bash # Script to publish the build artifacts to a GitHub repository. # Builds will be automatically published once new changes are made to the repository. set -e -o pipefail # Go to the project root directory cd $(dirname $0)/../.. buildDir="dist/release" buildVersion=$(sed -nE 's/^\s*"version": "(.*?)",$/\1/p' package.json) commitSha=$(git rev-parse --short HEAD) commitAuthorName=$(git --no-pager show -s --format='%an' HEAD) commitAuthorEmail=$(git --no-pager show -s --format='%ae' HEAD) commitMessage=$(git log --oneline -n 1) repoName="material2-builds" repoUrl="https://github.com/angular/material2-builds.git" repoDir="tmp/$repoName" # Create a release of the current repository. $(npm bin)/gulp build:release # Prepare cloning the builds repository rm -rf $repoDir mkdir -p $repoDir # Clone the repository git clone $repoUrl $repoDir # Copy the build files to the repository rm -rf $repoDir/* cp -r $buildDir/* $repoDir # Create the build commit and push the changes to the repository. cd $repoDir # Prepare Git for pushing the artifacts to the repository. git config user.name "$commitAuthorName" git config user.email "$commitAuthorEmail" git config credential.helper "store --file=.git/credentials" echo "https://${MATERIAL2_DOCS_CONTENT_TOKEN}:@github.com" > .git/credentials git add -A git commit -m "$commitMessage" git tag "$buildVersion-$commitSha" git push origin master --tags echo "Finished publishing build artifacts"
gnucoop/material2-extra
scripts/release/publish-build-artifacts.sh
Shell
mit
1,463
# ------------------------------------------------------- # Design Assets Management (for Git projects) # Written by Nathan Broadbent (www.madebynathan.com) # ------------------------------------------------------- # # * The `design` function manages the 'design assets' directories for the current project, # including folders such as Backgrounds, Logos, Icons, and Samples. The actual directories are # created in the root design directory, symlinked into the project, and ignored from source control. # This is because we usually don't want to check in design development files such as bitmaps or wav files. # It also gives us the option to sync the root design directory via Dropbox. # # Examples: # # $ design link # Requires SCM Breeze - Links existing design directories into each of your projects # $ design init # Creates default directory structure at $root_design_dir/**/ubuntu_config and symlinks into project. # (Images Backgrounds Logos Icons Mockups Screenshots) # $ design init --av # Creates extra directories for audio/video assets # (Images Backgrounds Logos Icons Mockups Screenshots Animations Videos Flash Music Samples) # $ design rm # Removes any design directories for ubuntu_config # $ design trim # Trims empty design directories for ubuntu_config # # Add ignore rule to .git/info/exclude if not already present _design_add_git_exclude(){ if [ -e "$1/.git/info/exclude" ] && ! $(grep -q "$project_design_dir" "$1/.git/info/exclude"); then echo "$project_design_dir" >> "$1/.git/info/exclude" fi } # Manage design directories for project. design() { local project=`basename $(pwd)` local all_project_dirs="$design_base_dirs $design_av_dirs" # Ensure design dir contains all subdirectories unset IFS # Create root design dirs for dir in $design_ext_dirs; do mkdir -p "$root_design_dir/$dir"; done # Create project design dirs mkdir -p "$root_design_dir/projects" if [ -z "$1" ]; then echo "design: Manage design directories for project assets that are external to source control." echo echo " Examples:" echo echo " $ design init # Creates default directory structure at $root_design_dir/projects/$project and symlinks into project." echo " ($design_base_dirs)" echo " $ design link # Links existing design directories into existing repos" echo " $ design init --av # Adds extra directories for audio/video assets" echo " ($design_base_dirs $design_av_dirs)" echo " $ design rm # Removes any design directories for $project" echo " $ design trim # Trims empty design directories for $project" echo return 1 fi if [ "$1" = "init" ]; then create_dirs="$design_base_dirs" if [ "$2" = "--av" ]; then create_dirs+=" $design_av_dirs"; fi echo "Creating design directories for '$project': $create_dirs" # Create and symlink each directory for dir in $create_dirs; do mkdir -p "$root_design_dir/projects/$project/$dir" if [ ! -e ./$project_design_dir ]; then ln -sf "$root_design_dir/projects/$project" $project_design_dir; fi done _design_add_git_exclude $PWD elif [ "$1" = "link" ]; then enable_nullglob echo "== Linking existing Design directories into existing repos..." for design_project in $root_design_dir/projects/*; do proj=$(basename $design_project) repo_path=$(grep "/$proj$" $GIT_REPO_DIR/.git_index) if [ -n "$repo_path" ]; then if ! [ -e "$repo_path/$project_design_dir" ]; then ln -fs "$design_project" "$repo_path/$project_design_dir" _design_add_git_exclude "$repo_path" fi echo "=> $repo_path/$project_design_dir" fi done disable_nullglob elif [ "$1" = "rm" ]; then echo "Removing all design directories for $project..." rm -rf "$root_design_dir/projects/$project" "$project_design_dir" elif [ "$1" = "trim" ]; then echo "Trimming empty design directories for $project..." for dir in $(find $project_design_dir/ -type d -empty); do asset=$(basename $dir) rm -rf "$project_design_dir/$asset" done # Remove design dir from project if there's nothing in it. if find $project_design_dir/ -type d -empty | grep -q $project_design_dir; then rm -rf "$project_design_dir" "$root_design_dir/projects/$project" fi else printf "Invalid command.\n\n" design fi }
ErinCall/scm_breeze
lib/design.sh
Shell
mit
4,583
# splunk.plugin.zsh alias splunk-pwd='export SPLUNK_HOME=`pwd`' spl() { cd /opt/splunk/"$*"; } _spl() { _files -W /opt/splunk/ } compdef _spl spl
noisufnoc/splunk.plugin.zsh
splunk.plugin.zsh
Shell
mit
156
#!/bin/bash -l #SBATCH #SBATCH --job-name=glm_2_nodes_4_calls_parallel.sh #SBATCH --time=03:00:00 #SBATCH --mail-type=begin,end #SBATCH [email protected] #SBATCH --nodes=2 #SBATCH --partition=parallel module load netcdf/intel/4.3.3.1 glm cd /home-3/[email protected]/work/kaw/GLM_Wrapper/GLM_Executables/examples_2.2/coldlake/fabm glm module load netcdf/intel/4.3.3.1 glm cd /home-3/[email protected]/work/kaw/GLM_Wrapper/GLM_Executables/examples_2.2/coldlake/fabm glm module load netcdf/intel/4.3.3.1 glm cd /home-3/[email protected]/work/kaw/GLM_Wrapper/GLM_Executables/examples_2.2/coldlake/fabm glm module load netcdf/intel/4.3.3.1 glm cd /home-3/[email protected]/work/kaw/GLM_Wrapper/GLM_Executables/examples_2.2/coldlake/fabm glm
karoraw1/GLM_Wrapper
MARCCTEST/glm_2_nodes_4_calls_parallel.sh
Shell
mit
750
#!/bin/bash EXISTS="$(docker ps -a|grep centos7ansible)" if ! [[ -z "$EXISTS" ]]; then docker exec -it centos7ansible bash else echo "Container centos7ansible not found ..." fi
fabriziotorelli-wipro/ansible-machines
centos7-ansible/access.sh
Shell
mit
181
#! /bin/sh # # Perform mapping and split the results BIN_DIR=`dirname $0` BWA_BIN=$BIN_DIR/bwa SSC_BIN=$BIN_DIR/splitSam2Contig2 N_THREADS=1 INPUT_DIR=$1 MED_DIR=$2 BWA_FILE=$3 CONTIG_FILE=$4 EXTS=() for file in ${INPUT_DIR}/* ; do extension=${file##*.} EXTS+=($extension) done EXTS=(`for ext in "${EXTS[@]}"; do echo $ext; done | sort | uniq`) for ext in "${EXTS[@]}"; do files=(`ls ${INPUT_DIR}/*.${ext}`) SEQ1_FILE=${files[0]} SEQ2_FILE=${files[1]} ALN_DIR=$MED_DIR/$ext mkdir -p $ALN_DIR ALN_PREF="${BWA_BIN} aln -t ${N_THREADS} ${BWA_FILE}" SEQ1_SAI=$ALN_DIR/`basename ${SEQ1_FILE}`.sai CMD="${ALN_PREF} ${SEQ1_FILE} > ${SEQ1_SAI}" eval $CMD SEQ2_SAI=$ALN_DIR/`basename ${SEQ2_FILE}`.sai CMD="${ALN_PREF} ${SEQ2_FILE} > ${SEQ2_SAI}" eval $CMD SAM_FILE=$ALN_DIR/0.sam CMD="${BWA_BIN} sampe ${BWA_FILE} ${SEQ1_SAI} ${SEQ2_SAI} ${SEQ1_FILE} ${SEQ2_FILE} > ${SAM_FILE}" eval $CMD CMD="${SSC_BIN} ${CONTIG_FILE} ${SAM_FILE} ${ALN_DIR} 1>&2" eval $CMD for path in ${ALN_DIR}/*.sam ; do if [ $path = $ALN_DIR/0.sam ] || \ [ $path = $ALN_DIR/single.sam ] || \ [ $path = $ALN_DIR/unmap.sam ] ; then continue fi target=`basename $path` cat $path >> $MED_DIR/$target done done
fiber-miniapp/ngsa-mini
workflow/workflow_01.sh
Shell
mit
1,265
#!/bin/bash source ~/.bashrc cd /home/ubuntu/myapp npm run start
vimal1083/travis-deployment
scripts/app_start.sh
Shell
mit
65
#! /bin/bash IFS=$'\n' for x in $(find . -iname "theme*" ); do y=${x/theme-/} mv "$x" "${y}" done
sburnett/seattle
repy/apps/tryrepy/web/js/ace/renam.sh
Shell
mit
104
#!/bin/zsh # Each line in this string has the following entries separated by a space # character. # <repo-url>, <plugin-location>, <bundle-type>, <has-local-clone> # FIXME: Is not kept local by zsh! local _ANTIGEN_BUNDLE_RECORD="" # Syntaxes # antigen-bundle <url> [<loc>=/] # Keyword only arguments: # branch - The branch of the repo to use for this bundle. antigen-bundle () { # Bundle spec arguments' default values. local url="$ANTIGEN_DEFAULT_REPO_URL" local loc=/ local branch= local no_local_clone=false local btype=plugin # Parse the given arguments. (Will overwrite the above values). eval "$(-antigen-parse-args \ 'url?, loc? ; branch:?, no-local-clone?, btype:?' \ "$@")" # Check if url is just the plugin name. Super short syntax. if [[ "$url" != */* ]]; then loc="plugins/$url" url="$ANTIGEN_DEFAULT_REPO_URL" fi # Resolve the url. url="$(-antigen-resolve-bundle-url "$url")" # Add the branch information to the url. if [[ ! -z $branch ]]; then url="$url|$branch" fi # The `make_local_clone` variable better represents whether there should be # a local clone made. For cloning to be avoided, firstly, the `$url` should # be an absolute local path and `$branch` should be empty. In addition to # these two conditions, either the `--no-local-clone` option should be # given, or `$url` should not a git repo. local make_local_clone=true if [[ $url == /* && -z $branch && ( $no_local_clone == true || ! -d $url/.git ) ]]; then make_local_clone=false fi # Add the theme extension to `loc`, if this is a theme. if [[ $btype == theme && $loc != *.zsh-theme ]]; then loc="$loc.zsh-theme" fi # Add it to the record. _ANTIGEN_BUNDLE_RECORD="$_ANTIGEN_BUNDLE_RECORD\n$url $loc $btype" _ANTIGEN_BUNDLE_RECORD="$_ANTIGEN_BUNDLE_RECORD $make_local_clone" # Ensure a clone exists for this repo, if needed. if $make_local_clone; then -antigen-ensure-repo "$url" fi # Load the plugin. -antigen-load "$url" "$loc" "$btype" "$make_local_clone" } -antigen-resolve-bundle-url () { # Given an acceptable short/full form of a bundle's repo url, this function # echoes the full form of the repo's clone url. local url="$1" # Expand short github url syntax: `username/reponame`. if [[ $url != git://* && $url != https://* && $url != /* && $url != [email protected]:*/* ]]; then url="https://github.com/${url%.git}.git" fi echo "$url" } antigen-bundles () { # Bulk add many bundles at one go. Empty lines and lines starting with a `#` # are ignored. Everything else is given to `antigen-bundle` as is, no # quoting rules applied. local line grep -v '^\s*$\|^#' | while read line; do # Using `eval` so that we can use the shell-style quoting in each line # piped to `antigen-bundles`. eval "antigen-bundle $line" done } antigen-update () { # Update your bundles, i.e., `git pull` in all the plugin repos. date > $ADOTDIR/revert-info -antigen-echo-record | awk '{print $1}' | sort -u | while read url; do echo "**** Pulling $url" (dir="$(-antigen-get-clone-dir "$url")" echo -n "$dir:" cd "$dir" git rev-parse HEAD) >> $ADOTDIR/revert-info -antigen-ensure-repo "$url" --update --verbose echo done } antigen-revert () { if ! [[ -f $ADOTDIR/revert-info ]]; then echo 'No revert information available. Cannot revert.' >&2 fi cat $ADOTDIR/revert-info | sed '1!p' | while read line; do dir="$(echo "$line" | cut -d: -f1)" git --git-dir="$dir/.git" --work-tree="$dir" \ checkout "$(echo "$line" | cut -d: -f2)" 2> /dev/null done echo "Reverted to state before running -update on $( cat $ADOTDIR/revert-info | sed -n 1p)." } -antigen-get-clone-dir () { # Takes a repo url and gives out the path that this url needs to be cloned # to. Doesn't actually clone anything. echo -n $ADOTDIR/repos/ echo "$1" | sed \ -e 's./.-SLASH-.g' \ -e 's.:.-COLON-.g' \ -e 's.|.-PIPE-.g' } -antigen-get-clone-url () { # Takes a repo's clone dir and gives out the repo's original url that was # used to create the given directory path. echo "$1" | sed \ -e "s:^$ADOTDIR/repos/::" \ -e 's.-SLASH-./.g' \ -e 's.-COLON-.:.g' \ -e 's.-PIPE-.|.g' } -antigen-ensure-repo () { # Ensure that a clone exists for the given repo url and branch. If the first # argument is `--update` and if a clone already exists for the given repo # and branch, it is pull-ed, i.e., updated. # Argument defaults. # The url. No sane default for this, so just empty. local url= # Check if we have to update. local update=false # Verbose output. local verbose=false eval "$(-antigen-parse-args 'url ; update?, verbose?' "$@")" shift $# # Get the clone's directory as per the given repo url and branch. local clone_dir="$(-antigen-get-clone-dir $url)" # A temporary function wrapping the `git` command with repeated arguments. --plugin-git () { eval git --git-dir=$clone_dir/.git --work-tree=$clone_dir "$@" } # Clone if it doesn't already exist. if [[ ! -d $clone_dir ]]; then git clone "${url%|*}" "$clone_dir" elif $update; then # Save current revision. local old_rev="$(--plugin-git rev-parse HEAD)" # Pull changes if update requested. --plugin-git pull # Get the new revision. local new_rev="$(--plugin-git rev-parse HEAD)" fi # If its a specific branch that we want, checkout that branch. if [[ $url == *\|* ]]; then local current_branch=${$(--plugin-git symbolic-ref HEAD)##refs/heads/} local requested_branch="${url#*|}" # Only do the checkout when we are not already on the branch. [[ $requested_branch != $current_branch ]] && --plugin-git checkout $requested_branch fi if ! [[ -z $old_rev || $old_rev == $new_rev ]]; then echo Updated from ${old_rev:0:7} to ${new_rev:0:7}. if $verbose; then --plugin-git log --oneline --reverse --no-merges --stat '@{1}..' fi fi # Remove the temporary git wrapper function. unfunction -- --plugin-git } -antigen-load () { local url="$1" local loc="$2" local btype="$3" local make_local_clone="$4" # The full location where the plugin is located. local location if $make_local_clone; then location="$(-antigen-get-clone-dir "$url")/$loc" else location="$url" fi if [[ $btype == theme ]]; then # Of course, if its a theme, the location would point to the script # file. source "$location" else # Source the plugin script. # FIXME: I don't know. Looks very very ugly. Needs a better # implementation once tests are ready. local script_loc="$(ls "$location" | grep -m1 '\.plugin\.zsh$')" if [[ -f $script_loc ]]; then # If we have a `*.plugin.zsh`, source it. source "$script_loc" elif [[ ! -z "$(ls "$location" | grep -m1 '\.zsh$')" ]]; then # If there is no `*.plugin.zsh` file, source *all* the `*.zsh` # files. for script ($location/*.zsh(N)) source "$script" elif [[ ! -z "$(ls "$location" | grep -m1 '\.sh$')" ]]; then # If there are no `*.zsh` files either, we look for and source any # `*.sh` files instead. for script ($location/*.sh(N)) source "$script" fi # Add to $fpath, for completion(s). fpath=($location $fpath) fi } antigen-cleanup () { # Cleanup unused repositories. local force=false if [[ $1 == --force ]]; then force=true fi if [[ ! -d "$ADOTDIR/repos" || -z "$(ls "$ADOTDIR/repos/")" ]]; then echo "You don't have any bundles." return 0 fi # Find directores in ADOTDIR/repos, that are not in the bundles record. local unused_clones="$(comm -13 \ <(-antigen-echo-record | awk '$4 == "true" {print $1}' | while read line; do -antigen-get-clone-dir "$line" done | sort -u) \ <(ls -d "$ADOTDIR/repos/"* | sort -u))" if [[ -z $unused_clones ]]; then echo "You don't have any unidentified bundles." return 0 fi echo 'You have clones for the following repos, but are not used.' echo "$unused_clones" | while read line; do -antigen-get-clone-url "$line" done | sed -e 's/^/ /' -e 's/|/, branch /' if $force || (echo -n '\nDelete them all? [y/N] '; read -q); then echo echo echo "$unused_clones" | while read line; do echo -n "Deleting clone for $(-antigen-get-clone-url "$line")..." rm -rf "$line" echo ' done.' done else echo echo Nothing deleted. fi } antigen-lib () { antigen-bundle --loc=lib } antigen-theme () { if [[ "$1" != */* && "$1" != --* ]]; then # The first argument is just a name of the plugin, to be picked up from # the default repo. local name="${1:-robbyrussell}" antigen-bundle --loc=themes/$name --btype=theme else antigen-bundle "$@" --btype=theme fi } antigen-apply () { # Initialize completion. # TODO: Only load completions if there are any changes to the bundle # repositories. compinit -i } antigen-list () { # List all currently installed bundles. if [[ -z "$_ANTIGEN_BUNDLE_RECORD" ]]; then echo "You don't have any bundles." >&2 return 1 else -antigen-echo-record | sort -u fi } antigen-snapshot () { local snapshot_file="${1:-antigen-shapshot}" # The snapshot content lines are pairs of repo-url and git version hash, in # the form: # <version-hash> <repo-url> local snapshot_content="$(-antigen-echo-record | grep 'true$' | sed 's/ .*$//' | sort -u | while read url; do local dir="$(-antigen-get-clone-dir "$url")" local version_hash="$(cd "$dir" && git rev-parse HEAD)" echo "$version_hash $url" done)" { # The first line in the snapshot file is for metadata, in the form: # key='value'; key='value'; key='value'; # Where `key`s are valid shell variable names. # Snapshot version. Has no relation to antigen version. If the snapshot # file format changes, this number can be incremented. echo -n "version='1';" # Snapshot creation date+time. echo -n " created_on='$(date)';" # Add a checksum with the md5 checksum of all the snapshot lines. local checksum="$(echo "$snapshot_content" | md5sum)" echo -n " checksum='${checksum%% *}';" # A newline after the metadata and then the snapshot lines. echo "\n$snapshot_content" } > "$snapshot_file" } antigen-restore () { if [[ $# == 0 ]]; then echo 'Please provide a snapshot file to restore from.' >&2 return 1 fi local snapshot_file="$1" # TODO: Before doing anything with the snapshot file, verify its checksum. # If it fails, notify this to the user and confirm if restore should # proceed. echo -n "Restoring from $snapshot_file..." sed -n '1!p' "$snapshot_file" | while read line; do local version_hash="${line%% *}" local url="${line##* }" local clone_dir="$(-antigen-get-clone-dir "$url")" if [[ ! -d $clone_dir ]]; then git clone "$url" "$clone_dir" > /dev/null fi (cd "$clone_dir" && git checkout $version_hash) 2> /dev/null done echo ' done.' echo 'Please open a new shell to get the restored changes.' } antigen-help () { cat <<EOF Antigen is a plugin management system for zsh. It makes it easy to grab awesome shell scripts and utilities, put up on github. For further details and complete documentation, visit the project's page at 'http://antigen.sharats.me'. EOF } # A syntax sugar to avoid the `-` when calling antigen commands. With this # function, you can write `antigen-bundle` as `antigen bundle` and so on. antigen () { local cmd="$1" shift "antigen-$cmd" "$@" } -antigen-parse-args () { # An argument parsing functionality to parse arguments the *antigen* way :). # Takes one first argument (called spec), which dictates how to parse and # the rest of the arguments are parsed. Outputs a piece of valid shell code # that can be passed to `eval` inside a function which creates the arguments # and their values as local variables. Suggested use is to set the defaults # to all arguments first and then eval the output of this function. # Spec: Only long argument supported. No support for parsing short options. # The spec must have two sections, separated by a `;`. # '<positional-arguments>;<keyword-only-arguments>' # Positional arguments are passed as just values, like `command a b`. # Keyword arguments are passed as a `--name=value` pair, like `command # --arg1=a --arg2=b`. # Each argument in the spec is separated by a `,`. Each keyword argument can # end in a `:` to specifiy that this argument wants a value, otherwise it # doesn't take a value. (The value in the output when the keyword argument # doesn't have a `:` is `true`). # Arguments in either section can end with a `?` (should come after `:`, if # both are present), means optional. FIXME: Not yet implemented. # See the test file, tests/arg-parser.t for (working) examples. local spec="$1" shift # Sanitize the spec spec="$(echo "$spec" | tr '\n' ' ' | sed 's/[[:space:]]//g')" local code='' --add-var () { test -z "$code" || code="$code\n" code="${code}local $1='$2'" } local positional_args="$(echo "$spec" | cut -d\; -f1)" local positional_args_count="$(echo $positional_args | awk -F, '{print NF}')" # Set spec values based on the positional arguments. local i=1 while ! [[ -z $1 || $1 == --* ]]; do if (( $i > $positional_args_count )); then echo "Only $positional_args_count positional arguments allowed." >&2 echo "Found at least one more: '$1'" >&2 return fi local name_spec="$(echo "$positional_args" | cut -d, -f$i)" local name="${${name_spec%\?}%:}" local value="$1" if echo "$code" | grep -qm1 "^local $name="; then echo "Argument '$name' repeated with the value '$value'". >&2 return fi --add-var $name "$value" shift i=$(($i + 1)) done local keyword_args="$( # Positional arguments can double up as keyword arguments too. echo "$positional_args" | tr , '\n' | while read line; do if [[ $line == *\? ]]; then echo "${line%?}:?" else echo "$line:" fi done # Specified keyword arguments. echo "$spec" | cut -d\; -f2 | tr , '\n' )" local keyword_args_count="$(echo $keyword_args | awk -F, '{print NF}')" # Set spec values from keyword arguments, if any. The remaining arguments # are all assumed to be keyword arguments. while [[ $1 == --* ]]; do # Remove the `--` at the start. local arg="${1#--}" # Get the argument name and value. if [[ $arg != *=* ]]; then local name="$arg" local value='' else local name="${arg%\=*}" local value="${arg#*=}" fi if echo "$code" | grep -qm1 "^local $name="; then echo "Argument '$name' repeated with the value '$value'". >&2 return fi # The specification for this argument, used for validations. local arg_line="$(echo "$keyword_args" | grep -m1 "^$name:\??\?")" # Validate argument and value. if [[ -z $arg_line ]]; then # This argument is not known to us. echo "Unknown argument '$name'." >&2 return elif (echo "$arg_line" | grep -qm1 ':') && [[ -z $value ]]; then # This argument needs a value, but is not provided. echo "Required argument for '$name' not provided." >&2 return elif (echo "$arg_line" | grep -vqm1 ':') && [[ ! -z $value ]]; then # This argument doesn't need a value, but is provided. echo "No argument required for '$name', but provided '$value'." >&2 return fi if [[ -z $value ]]; then value=true fi --add-var "${name//-/_}" "$value" shift done echo "$code" unfunction -- --add-var } # Echo the bundle specs as in the record. The first line is not echoed since it # is a blank line. -antigen-echo-record () { echo "$_ANTIGEN_BUNDLE_RECORD" | sed -n '1!p' } -antigen-env-setup () { # Pre-startup initializations. -set-default ANTIGEN_DEFAULT_REPO_URL \ https://github.com/robbyrussell/oh-my-zsh.git -set-default ADOTDIR $HOME/.antigen # Load the compinit module. autoload -U compinit # Without the following, `compdef` function is not defined. compinit -i compdef _antigen antigen } # Same as `export $1=$2`, but will only happen if the name specified by `$1` is # not already set. -set-default () { local arg_name="$1" local arg_value="$2" eval "test -z \"\$$arg_name\" && export $arg_name='$arg_value'" } # Setup antigen's autocompletion _antigen () { compadd \ bundle\ bundles\ update\ revert\ list\ cleanup\ lib\ theme\ apply\ help } -antigen-env-setup
dqminh/dotfiles
antigen.zsh
Shell
mit
18,498
#!/bin/bash mkdir Logs; for DIR in `ls STAR`; do echo -ne "$DIR\t" >> Logs/Input.tsv; cat STAR/$DIR/Log.final.out | grep "Number of input reads" | cut -f2 >> Logs/Input.tsv; done for DIR in `ls STAR`; do echo -ne "$DIR\t" >> Logs/Unique.tsv; cat STAR/$DIR/Log.final.out | grep "Uniquely mapped reads number" | cut -f2 >> Logs/Unique.tsv; done for DIR in `ls STAR`; do echo -ne "$DIR\t" >> Logs/Multiple.tsv; cat STAR/$DIR/Log.final.out | grep "Number of reads mapped to multiple loci" | cut -f2 >> Logs/Multiple.tsv; done for DIR in `ls STAR`; do echo -ne "$DIR\t" >> Logs/TooMany.tsv; cat STAR/$DIR/Log.final.out | grep "Number of reads mapped to too many loci" | cut -f2 >> Logs/TooMany.tsv; done join Logs/Input.tsv Logs/Unique.tsv | join - Logs/Multiple.tsv | join - Logs/TooMany.tsv > Logs/Logs.tsv
risslandlab/DRUID
Scripts/STARlogs.sh
Shell
mit
824
#! /usr/bin/env bash coffee -c gol.coffee node gol.js
HGrzywacz/GameOfCoffee
run.bash
Shell
mit
54
sudo docker build -t dckreg:5000/hbase:1.2.4 . sudo docker push dckreg:5000/hbase:1.2.4
reza-rahim/microservice
ansible/mesos-analytics/docker/hbase/build.sh
Shell
mit
89
#!/bin/bash word=$1 grep "^$1$" ../dict/cracklib-small -q if [ $? -eq 0 ];then echo $word is cracklib-small word; else echo $word is not a dictionary word; fi
BofengDuke/shell_script
chapter2/checkword.sh
Shell
mit
167
#/usr/bin/env bash curr_time=`date +%s-hamwave` text2wave -eval "(voice_cmu_us_clb_arctic_clunits)" -o /tmp/$curr_time.wav $1 #play a 200hz tone to key VOX circuit if necessary aplay /home/troy/projects/oinker/200hz.wav aplay /tmp/$curr_time.wav
troylanes/oinker
oink.sh
Shell
mit
258
#!/bin/sh if [ "$#" -ne 1 ] || ! [ -d "$1" ]; then echo "Usage: $0 <directory to liquid source tree>" >&2 exit 1 fi LIQUID=$(readlink -e $1) ln -s $LIQUID/lib test/liquid/lib ln -s $LIQUID/test/liquid test/liquid/test/liquid ln -s $LIQUID/test/test_helper.rb test/liquid/test/liquid_test_helper.rb
fw42/liquidprof
add_liquid_tests.sh
Shell
mit
303
#!/bin/bash # Kill script for cleaning up the local CuteCasa instance. Deletes the local secret directories containing the database # as well as the compiled CSS files. rm -rf config/secret rm -rf test/secret rm -f static/css/bin/bulma.css rm -f static/css/bin/bulma.css.map rm -f static/css/bin/cutecasa.css rm -f static/css/bin/cutecasa.css.map rm -f static/css/bin/cutecasa-splash.css rm -f static/css/bin/cutecasa-splash.css.map rm -f init.sh rm -f run.sh
akersten/cute-casa
kill.sh
Shell
mit
461
#!/bin/bash printf "foo_parse_fail.js = " assert_ok \ "$FLOW" autocomplete --strip-root foo_parse_fail.js 10 17 < foo_parse_fail.js printf "foo.js = " assert_ok \ "$FLOW" autocomplete --strip-root --pretty foo.js 10 5 < foo.js printf "bar.js = " assert_ok \ "$FLOW" autocomplete --strip-root --pretty bar.js 4 5 < bar.js printf "qux.js = " assert_ok \ "$FLOW" autocomplete --strip-root --pretty qux.js 6 3 < qux.js printf "str.js = " assert_ok \ "$FLOW" autocomplete --strip-root --pretty str.js 3 9 < str.js printf "num.js = " assert_ok \ "$FLOW" autocomplete --strip-root --pretty num.js 4 5 < num.js printf "bool.js = " assert_ok \ "$FLOW" autocomplete --strip-root --pretty bool.js 3 6 < bool.js printf "union.js = " assert_ok \ "$FLOW" autocomplete --strip-root --pretty union.js 10 5 < union.js printf "object_builtins.js = " assert_ok \ "$FLOW" autocomplete --strip-root --pretty object_builtins.js 4 5 < object_builtins.js printf "function_builtins.js = " assert_ok \ "$FLOW" autocomplete --strip-root --pretty function_builtins.js 4 5 < function_builtins.js printf "fun.js = " assert_ok \ "$FLOW" autocomplete --strip-root --pretty fun.js 4 5 < fun.js printf "this.js = " assert_ok \ "$FLOW" autocomplete --strip-root --pretty this.js 8 10 < this.js printf "typeparams.js = " assert_ok \ "$FLOW" autocomplete --strip-root --pretty typeparams.js 6 16 < typeparams.js printf "generics.js = " assert_ok \ "$FLOW" autocomplete --strip-root --pretty generics.js 6 5 < generics.js printf "optional.js = " assert_ok \ "$FLOW" autocomplete --strip-root --pretty optional.js 4 14 < optional.js printf "jsx1.js = " assert_ok \ "$FLOW" autocomplete --strip-root --pretty jsx1.js 8 4 < jsx1.js printf "jsx2.js = " assert_ok \ "$FLOW" autocomplete --strip-root --pretty jsx2.js 8 11 < jsx2.js printf "customfun.js = " assert_ok \ "$FLOW" autocomplete --strip-root --pretty customfun.js 6 1 < customfun.js printf "issue-1368.js = " assert_ok \ "$FLOW" autocomplete --strip-root --pretty issue-1368.js 20 10 < issue-1368.js printf "if.js = " assert_ok \ "$FLOW" autocomplete --strip-root --pretty if.js 3 7 < if.js printf "override.js = " assert_ok \ "$FLOW" autocomplete --strip-root --pretty override.js 10 16 < override.js printf "class.js = " assert_ok \ "$FLOW" autocomplete --strip-root --pretty class.js 7 5 < class.js printf "optional_chaining_new.js = " assert_ok \ "$FLOW" autocomplete --strip-root --pretty optional_chaining_new.js 9 15 < optional_chaining_new.js printf "optional_chaining_continue.js = " assert_ok \ "$FLOW" autocomplete --strip-root --pretty optional_chaining_continue.js 13 19 < optional_chaining_continue.js printf "idx.js = " assert_ok \ "$FLOW" autocomplete --strip-root --pretty idx.js 12 28 < idx.js printf "generic_alias.js = " assert_ok \ "$FLOW" autocomplete --strip-root --pretty generic_alias.js 7 5 < generic_alias.js
popham/flow
tests/autocomplete/test.sh
Shell
mit
2,931
#!/bin/bash -e echo "-----------------------------------------------------" echo "" echo " Enabling site" echo "" echo "-----------------------------------------------------" echo "" host_file_path="/etc/hosts" apache_file_path="/srv/sites/apache/apache.conf" # Request sudo action before continuing to force password prompt (if needed) before script really starts sudo ls &>/dev/null echo "" getSiteInfo(){ site_array=("$@") if [ -n "${site_array[1]}" ]; then if [ "${site_array[0]}" = "${site_array[1]}" ]; then echo "${site_array[0]}" else echo "${site_array[@]}" fi else echo "${site_array[0]}" fi } enablingApacheSite(){ include=$(echo "Include \"$(getSiteInfo "$1" | sed s,/theme/www,/apache/httpd-vhosts.conf, )\"") apache_entry_exists=$(grep "$include" "$apache_file_path" || echo "") #echo "$include" #echo "Apache Entry: $apache_entry_exists" if [ -z "$apache_entry_exists" ]; then echo "enabling conf in $apache_file_path" echo "$include" >> "$apache_file_path" else echo "Virtual Host allready enabled in $apache_file_path" fi } setHost(){ server=$(echo -e "127.0.0.1\\t$1") sudo chmod 777 "$host_file_path" host_exist=$(cat "$host_file_path" | grep "$server" || echo "") if [ -z "$host_exist" ]; then echo "Setting up $1 host" echo -e "127.0.0.1\\t$1" >> "$host_file_path" else echo "$1 exists" fi sudo chmod 644 "$host_file_path" } # Does current location seem to fullfil requirements (is httpd-vhosts.conf found where it is expected to be found) if [ -e "$PWD/apache/httpd-vhosts.conf" ] ; then # Parse DocumentRoot from httpd-vhosts.conf document_root=($(grep -E "DocumentRoot" "$PWD/apache/httpd-vhosts.conf" | sed -e "s/ DocumentRoot \"//; s/\"//")) export document_root # Parse ServerName from httpd-vhosts.conf server_name=($(grep -E "ServerName" "$PWD/apache/httpd-vhosts.conf" | sed "s/ ServerName //")) export server_name # Parse ServerAlias from httpd-vhosts.conf server_alias=($(grep -E "ServerAlias" "$PWD/apache/httpd-vhosts.conf" | sed "s/ ServerAlias //")) export server_alias # Could not find DocumentRoot or ServerName if [ -z "$(getSiteInfo "${document_root[@]}")" ] && [ -z "$(getSiteInfo "${server_name[@]}")" ]; then echo "" echo "Apache configuration seems to be broken." echo "Please revert any changes you have made to the https-vhosts.conf file." echo "" else echo "Setting up site" for alias in $(getSiteInfo "${server_alias[@]}") do echo "$alias" done # Updating apache.conf for doc in $(getSiteInfo "${document_root[@]}") do enablingApacheSite "$doc" done fi # Updating hosts for server in $(getSiteInfo "${server_name[@]}") do setHost "$server" done # Restart apache after modification echo "" echo "Restarting Apache" sudo service apache2 restart echo "" echo "Site enabled: OK" echo "" else echo "Apache configuration not found." echo "You can only enable a site, if you run this command from the project root folder" fi
parentnode/ubuntu_environment
scripts/enable_site.sh
Shell
mit
3,024
#!/bin/bash set -xv #run on eye_CRnum0_Pnum0.fits first file="/nfs/slac/kipac/fs1/u/awright/eyes/eye-10_3_cr.2.1/W-C-RC/both/edge_out/inputs/eye_CRnum0_Pnum0.fits" #can use this dir if needed: /u/ki/awright/my_data/thesis_stuff/CRN_final_purecomp/ ## first the stuff that's in create_weights_raw_delink_para_CRNitschke_setup.sh INSTRUMENT=SUBARU . ${INSTRUMENT:?}.ini > /tmp/out.log 2>&1 . progs.ini > /tmp/out.log 2>&1 SATLEVEL=${SATURATION:-30000} runCRN=0 runold=1 filter='W-C-RC' cluster='THESIS' files=`\ls /nfs/slac/kipac/fs1/u/awright/eyes/eye-10_3_cr.2.1/W-C-RC/both/edge_out/inputs/eye_CRnum[0-9]_Pnum*.fits /nfs/slac/kipac/fs1/u/awright/eyes/eye-10_3_cr.2.1/W-C-RC/both/edge_out/inputs/eye_CRnum1[0-9]_Pnum*.fits /nfs/slac/kipac/fs1/u/awright/eyes/eye-10_3_cr.2.1/W-C-RC/both/edge_out/inputs/eye_CRnum20_Pnum*.fits` for file in ${files} do BASE=`basename ${file} .fits` CHIP=10 #rm tmp_file.tmp #./adam_THESIS_get_sextract_thresholds.py ${file} tmp_file.tmp #cat CRNitschke_final_eye_training.txt tmp_file.tmp >> CRNitschke_final_eye_training.tmp.txt #sort CRNitschke_final_eye_training.tmp.txt | uniq | column -t >> CRNitschke_final_eye_training.txt #adam# START MY STUFF! #adam# determine the seeing and get the optimal sextractor thresholds rms_fwhm_dt_ft=( `grep $BASE CRNitschke_final_eye_training.txt | awk '{print $2, $3, $4, $5}'`) rms=${rms_fwhm_dt_ft[0]} fwhm=${rms_fwhm_dt_ft[1]} dt=${rms_fwhm_dt_ft[2]} ft=${rms_fwhm_dt_ft[3]} #adam# run sextractor to get the cosmics #CRN-files# # 1.) data_SCIENCE_cosmics/SEGMENTATION_CRN-cosmics_${cluster}_${filter}.${BASE}.fits # 2.) data_SCIENCE_cosmics/FILTERED_CRN-cosmics_${cluster}_${filter}.${BASE}.fits \ # 3.) data_SCIENCE_cosmics/CATALOG_CRN-cosmics_${cluster}_${filter}.${BASE}.cat # check with: ls -lrth /u/ki/awright/data/eyes/CRNitschke_output/data_SCIENCE_cosmics/ > CRN-cosmics_latest_run.log if [ "${runCRN}" == "1" ]; then if [ ! -f "/u/ki/awright/data/eyes/CRNitschke_output/data_SCIENCE_cosmics/SEGMENTATION_CRN-cosmics_${cluster}_${filter}.${BASE}.fits" ]; then ${P_SEX} ${file} -c /u/ki/awright/thiswork/eyes/CRNitschke/config-sex.10_3_cr \ -SEEING_FWHM ${fwhm} \ -FILTER_NAME /u/ki/awright/thiswork/eyes/CRNitschke/retina-eye.10_3_cr.ret \ -FILTER_THRESH ${ft} \ -DETECT_THRESH ${dt} \ -ANALYSIS_THRESH ${dt} \ -DETECT_MINAREA 1 \ -CHECKIMAGE_TYPE SEGMENTATION,FILTERED \ -CHECKIMAGE_NAME /u/ki/awright/data/eyes/CRNitschke_output/data_SCIENCE_cosmics/SEGMENTATION_CRN-cosmics_${cluster}_${filter}.${BASE}.fits,/u/ki/awright/data/eyes/CRNitschke_output/data_SCIENCE_cosmics/FILTERED_CRN-cosmics_${cluster}_${filter}.${BASE}.fits \ -CATALOG_NAME /u/ki/awright/data/eyes/CRNitschke_output/data_SCIENCE_cosmics/CATALOG_CRN-cosmics_${cluster}_${filter}.${BASE}.cat else echo "SKIPPING sextractor for ${file}" fi exit_stat=$? if [ "${exit_stat}" -gt "0" ]; then echo "adam-look: create_weights_raw_delink_para_CRNitschke.sh failed for file=${file}" exit 1 fi #adam# now put in the FT400 stuff in order to pick up extra cosmics ft400=$(echo "400.0 / $rms" |bc -l) #adam# run sextractor to get the FT400 cosmics #CRN-files# # 4.) data_SCIENCE_cosmics/FILTERED_FT400_CRN-cosmics_${cluster}_${filter}.${BASE}.fits \ # 5.) data_SCIENCE_cosmics/CATALOG_FT400_CRN-cosmics_${cluster}_${filter}.${BASE}.cat # check (1-6) with: ls -lrth /u/ki/awright/data/eyes/CRNitschke_output/data_SCIENCE_cosmics/ > CRN-cosmics_latest_run.log if [ ! -f "/u/ki/awright/data/eyes/CRNitschke_output/data_SCIENCE_cosmics/FILTERED_FT400_CRN-cosmics_${cluster}_${filter}.${BASE}.fits" ]; then ${P_SEX} ${file} -c /u/ki/awright/thiswork/eyes/CRNitschke/config-sex.10_3_cr \ -SEEING_FWHM ${fwhm} \ -FILTER_NAME /u/ki/awright/thiswork/eyes/CRNitschke/retina-eye.10_3_cr.ret \ -FILTER_THRESH ${ft400} \ -DETECT_THRESH ${dt} \ -ANALYSIS_THRESH ${dt} \ -DETECT_MINAREA 1 \ -CHECKIMAGE_TYPE FILTERED \ -CHECKIMAGE_NAME /u/ki/awright/data/eyes/CRNitschke_output/data_SCIENCE_cosmics/FILTERED_FT400_CRN-cosmics_${cluster}_${filter}.${BASE}.fits \ -CATALOG_NAME /u/ki/awright/data/eyes/CRNitschke_output/data_SCIENCE_cosmics/CATALOG_FT400_CRN-cosmics_${cluster}_${filter}.${BASE}.cat else echo "SKIPPING sextractor FT400 for ${file}" fi exit_stat=$? if [ "${exit_stat}" -gt "0" ]; then echo "adam-look: create_weights_raw_delink_para_CRNitschke.sh failed for file=${file}" exit 1 fi #adam# put keywords in the headers of these files: /u/ki/awright/InstallingSoftware/pythons/header_key_add.py /u/ki/awright/data/eyes/CRNitschke_output/data_SCIENCE_cosmics/FILTERED_FT400_CRN-cosmics_${cluster}_${filter}.${BASE}.fits CRN_FT=${ft400} CRN_DT=${dt} CRN_DMA=1 MYSEEING=${fwhm} MYRMS=${rms} MYOBJ=${cluster} /u/ki/awright/InstallingSoftware/pythons/header_key_add.py /u/ki/awright/data/eyes/CRNitschke_output/data_SCIENCE_cosmics/FILTERED_CRN-cosmics_${cluster}_${filter}.${BASE}.fits CRN_FT=${ft} CRN_DT=${dt} CRN_DMA=1 MYSEEING=${fwhm} MYRMS=${rms} MYOBJ=${cluster} /u/ki/awright/InstallingSoftware/pythons/header_key_add.py /u/ki/awright/data/eyes/CRNitschke_output/data_SCIENCE_cosmics/SEGMENTATION_CRN-cosmics_${cluster}_${filter}.${BASE}.fits CRN_FT=${ft} CRN_DT=${dt} CRN_DMA=1 MYSEEING=${fwhm} MYRMS=${rms} MYOBJ=${cluster} /u/ki/awright/InstallingSoftware/pythons/header_key_add.py ${file} MYSEEING=${fwhm} MYOBJ=${cluster} FILTER=${filter} MYRMS=${rms} IMAGEID=$CHIP #adam#now get the stars #CRN-files# # 6.) data_SCIENCE_stars/SEGMENTATION_stars_${BASE}OCF.fits # 7.) data_SCIENCE_stars/CATALOG_stars_${BASE}OCF.cat # check with: ls -lrth /u/ki/awright/data/eyes/CRNitschke_output/data_SCIENCE_stars/ > CRN-stars_latest_run.log # check with: ls -lrth /u/ki/awright/data/eyes/CRNitschke_output/data_SCIENCE_stars/ > CRN-stars_latest_run.log if [ ! -f "/u/ki/awright/data/eyes/CRNitschke_output/data_SCIENCE_stars/SEGMENTATION_CRN-stars_${cluster}_${filter}.${BASE}.fits" ]; then /u/ki/awright/thiswork/eyes/CRNitschke/stars2block.py ${file} else echo "SKIPPING stars2block.py for ${file}" fi exit_stat=$? if [ "${exit_stat}" -gt "0" ]; then echo "adam-look: create_weights_raw_delink_para_CRNitschke.sh failed for file=${file}" exit 1 fi #adam# now run the blocked_blender! #CRN-files# # 8.) data_SCIENCE_compare/BBout_ORIGINAL_MACS0416-24_W-S-Z+.SUPA0125868_4.fits # 9.) data_SCIENCE_compare/BBout_WOblend_MACS0416-24_W-S-Z+.SUPA0125868_4.fits # 10.) data_SCIENCE_compare/BB_ERASED_bthresh075_BBCR_MACS0416-24_W-S-Z+.SUPA0125868_4.fits # 11.) data_SCIENCE_compare/BBrevised_bthresh075_BBCR_MACS0416-24_W-S-Z+.SUPA0125868_4.fits # 12.) data_SCIENCE_cosmics/SEGMENTATION_BB_CRN-cosmics_MACS0416-24_W-S-Z+.SUPA0125868_4.fits # LOTS OF PLOTS IN: /u/ki/awright/data/eyes/CRNitschke_output/plot_SCIENCE_compare/ # check with:ls -lrth /u/ki/awright/data/eyes/CRNitschke_output/data_SCIENCE_compare/ > CRN-compare_last_run.log # ls -lrth /u/ki/awright/data/eyes/CRNitschke_output/data_SCIENCE_cosmics/SEGMENTATION_BB_CRN*.fits >> CRN-compare_last_run.log if [ ! -f "/u/ki/awright/data/eyes/CRNitschke_output/data_SCIENCE_cosmics/SEGMENTATION_BB_CRN-cosmics_${cluster}_${filter}.${BASE}.fits" ]; then /u/ki/awright/thiswork/eyes/CRNitschke/blocked_blender.2.2.py ${file} else echo "SKIPPING blocked_blender.2.2.py for ${file}" fi exit_stat=$? if [ "${exit_stat}" -gt "0" ]; then echo "adam-look: create_weights_raw_delink_para_CRNitschke.sh failed for file=${file}" exit 1 fi #SS# next line runs StarStripper.py #CRN-files# # 13.) data_SCIENCE_cosmics/SEGMENTATION_KeepOrRM-starlike_cosmics_MACS0416-24_W-J-B.SUPA0126101_7.fits # 14.) data_SCIENCE_cosmics/StarRMout_KeepOrRM-purified_cosmics_MACS0416-24_W-J-B.SUPA0126101_7.fits # 15.) data_SCIENCE_cosmics/SEGMENTATION_BBSS_CRN-cosmics_MACS0416-24_W-J-B.SUPA0126101_7.fits # LOTS OF PLOTS IN: /u/ki/awright/data/eyes/CRNitschke_output/plot_SCIENCE_SS/ # check with:ls -lrth /u/ki/awright/data/eyes/CRNitschke_output/data_SCIENCE_cosmics/SEGMENTATION_KeepOrRM-starlike_cosmics*.fits > CRN-SS_last_run.log # ls -lrth /u/ki/awright/data/eyes/CRNitschke_output/data_SCIENCE_cosmics/SEGMENTATION_BBSS_CRN*.fits >> CRN-SS_last_run.log # ls -lrth /u/ki/awright/data/eyes/CRNitschke_output/data_SCIENCE_cosmics/StarRMout_KeepOrRM-purified_cosmics*.fits >> CRN-SS_last_run.log if [ ! -f "/u/ki/awright/data/eyes/CRNitschke_output/data_SCIENCE_cosmics/SEGMENTATION_BBSS_CRN-cosmics_${cluster}_${filter}.${BASE}.fits" ]; then /u/ki/awright/thiswork/eyes/CRNitschke/StarStripper.py ${file} else echo "SKIPPING StarStripper.py for ${file}" fi exit_stat=$? if [ "${exit_stat}" -gt "0" ]; then echo "adam-look: create_weights_raw_delink_para_CRNitschke.sh failed for file=${file}" exit 1 fi #adam# END MY STUFF! # Expand the cosmic ray masking: if [ ${config} == "10_3" ]; then if [ ${filter} == "W-J-B" ]; then flmid="BB" elif [ ${filter} == "W-S-G+" ]; then flmid="BB" elif [ ${filter} == "W-J-V" ]; then flmid="BB" elif [ ${filter} == "W-C-RC" ]; then seeing_ok=$(echo "${fwhm}<0.70" |bc -l) if [ ${seeing_ok} -eq 1 ]; then flmid="BBSS" else flmid="BB" fi elif [ ${filter} == "W-S-I+" ]; then seeing_ok=$(echo "${fwhm}<0.90" |bc -l) if [ ${seeing_ok} -eq 1 ]; then flmid="BBSS" else flmid="BB" fi elif [ ${filter} == "W-C-IC" ]; then seeing_ok=$(echo "${fwhm}<0.80" |bc -l) if [ ${seeing_ok} -eq 1 ]; then flmid="BBSS" else flmid="BB" fi elif [ ${filter} == "W-S-Z+" ]; then seeing_ok=$(echo "${fwhm}<1.20" |bc -l) if [ ${seeing_ok} -eq 1 ]; then flmid="BBSS" else flmid="BB" fi else echo "exiting because none the filter " ${filter} " isn't recognized as a filter" exit 1 fi elif [ ${config} == "10_2" ]; then seeing_ok=$(echo "${fwhm}<1.00" |bc -l) if [ ${seeing_ok} -eq 1 ]; then flmid="BBSS" else flmid="BB" fi else echo "exiting because none the config " ${config} " isn't recognized as a config" exit 1 fi echo "BB or BBSS (filter=" ${filter} " seeing=" ${fwhm} " config=" ${config} "):" ${flmid} #SS# next line uses BBSS output! cp /u/ki/awright/data/eyes/CRNitschke_output/data_SCIENCE_cosmics/SEGMENTATION_${flmid}_CRN-cosmics_${cluster}_${filter}.${BASE}.fits ${TEMPDIR}/cosmic_${CHIP}_$$.fits sfdir/expand_cosmics_mask ${TEMPDIR}/cosmic_${CHIP}_$$.fits ${TEMPDIR}/cosmic_${CHIP}_$$.2.fits exit_stat=$? if [ "${exit_stat}" -gt "0" ]; then echo "adam-look: create_weights_raw_delink_para_CRNitschke.sh failed for file=${file}" exit 1 fi #compare to /nfs/slac/kipac/fs1/u/awright/eyes/eye-10_3_cr.2.1/W-C-RC/both/edge_out/outputs/ OUTDIR="/u/ki/awright/my_data/thesis_stuff/CRN_final_purecomp/" OUTIMAGECRN="${OUTDIR}/CRNmask_${BASE}.fits" exOUTIMAGECRN="${OUTDIR}/CRNmask_expanded_${BASE}.fits" #cp /u/ki/awright/data/eyes/CRNitschke_output/data_SCIENCE_cosmics/SEGMENTATION_${flmid}_CRN-cosmics_${cluster}_${filter}.${BASE}.fits ${OUTIMAGECRN} mv ${TEMPDIR}/cosmic_${CHIP}_$$.fits ${OUTIMAGECRN} mv ${TEMPDIR}/cosmic_${CHIP}_$$.2.fits ${exOUTIMAGECRN} fi if [ "${runold}" == "1" ]; then OUTDIR="/u/ki/awright/my_data/thesis_stuff/CRN_final_purecomp/" OUTIMAGEOLD="${OUTDIR}/OLDmask_${BASE}.fits" exOUTIMAGEOLD="${OUTDIR}/OLDmask_expanded_${BASE}.fits" ## now run the old-style masker MASKOLD=${CONF}/cosmic.ret.sex conffile=cosmic.conf.sex ${P_SEX} ${file} -c ${conffile} -CHECKIMAGE_NAME \ ${TEMPDIR}/cosmic_${CHIP}_$$.fits \ -FILTER_NAME ${MASKOLD} \ -CATALOG_NAME ${TEMPDIR}/cosmic.cat_$$ \ -SEEING_FWHM ${fwhm} sfdir/expand_cosmics_mask ${TEMPDIR}/cosmic_${CHIP}_$$.fits ${TEMPDIR}/cosmic_${CHIP}_$$.2.fits exit_stat=$? if [ "${exit_stat}" -gt "0" ]; then echo "adam-look: create_weights_raw_delink_para_CRNitschke.sh failed for file=${file}" exit 1 fi mv ${TEMPDIR}/cosmic_${CHIP}_$$.fits ${OUTIMAGEOLD} mv ${TEMPDIR}/cosmic_${CHIP}_$$.2.fits ${exOUTIMAGEOLD} #./adam_make_comparable_CRmask.py ${file} ${OUTIMAGECRN} ${OUTIMAGEOLD} fi done echo "adam_THESIS_CRN_performance_metrics.py"
deapplegate/wtgpipeline
adam_THESIS_quantify_CRN_performance.sh
Shell
mit
12,654
#!/bin/bash ############################################################################ #Skillset2 initialization scritp ############################################################################ echo "Starting Skillset2 initialization process,please wait." cp ./questions/images /home/ocm/ > /dev/null 2>&1 mv /home/ocm/Skillset1.html ./questions/Skillset1 > /dev/null 2>&1 mv ./questions/Skillset2/Skillset2.html /home/ocm/ > /dev/null 2>&1 cd ./questions/Skillset2 > /dev/null 2>&1 tar -zcvf Skillset2.tar.gz * > /dev/null 2>&1 #Transferring files echo "Transferring files to Database Server Machine, Please wait..." expect -c " set timeout 30; spawn ssh oracle@host01 -p 22; expect { yes/no {send \"yes\r\";exp_continue} password {send \"oracle\r\"} }; expect oracle@* {send \"rm -rf /home/oracle/scripts/\*\r\" } ; expect oracle@* {send exit\r } ; expect eof; "> /dev/null 2>&1 expect -c " set timeout 30; spawn scp Skillset2.tar.gz oracle@host01:/home/oracle/scripts; expect { yes/no {send \"yes\r\";exp_continue} password {send \"oracle\r\"} }; expect eof; "> /dev/null 2>&1 expect -c " set timeout 30; spawn ssh oracle@host01 -p 22; expect { yes/no {send \"yes\r\";exp_continue} password {send \"oracle\r\"} }; expect oracle@* {send \"tar -zxvf /home/oracle/scripts/Skillset2.tar.gz -C /home/oracle/scripts\r\" } ; expect oracle@* {send \"rm -rf /home/oracle/scripts/Skillset2.tar.gz\r\" }; expect oracle@* {send exit\r } ; expect eof; "> /dev/null 2>&1 echo "Transferring files is completed." rm -rf Skillset2.tar.gz echo "Skillset2 initialization is successfully completed."
bigdatalyn/bigdatalyn.github.io
files/Oracle/OCM/HaiLiang/skillset2/initsec2.sh
Shell
mit
1,977
#!/bin/bash if [[ -z "$MYSQL_ENV_MYSQL_ROOT_PASSWORD" && -z "$KIPPO_DB_PASSWORD" ]]; then echo "You must specify KIPPO_DB_PASSWORD and link to a mysql container." exit 1 fi : ${KIPPO_DB_HOST:="mysql"} : ${KIPPO_DB_USERNAME:="kippo"} : ${KIPPO_DB_PASSWORD:="$MYSQL_ENV_MYSQL_ROOT_PASSWORD"} : ${KIPPO_DB_DATABASE:="kippo"} : ${KIPPO_DB_PORT:="3306"} sed -i -e "s/'127.0.0.1'/'$KIPPO_DB_HOST'/" /var/www/html/kippo-graph/config.php sed -i -e "s/'username'/'$KIPPO_DB_USERNAME'/" /var/www/html/kippo-graph/config.php sed -i -e "s/'password'/'$KIPPO_DB_PASSWORD'/" /var/www/html/kippo-graph/config.php sed -i -e "s/'database'/'$KIPPO_DB_DATABASE'/" /var/www/html/kippo-graph/config.php sed -i -e "s/'3306'/'$KIPPO_DB_PORT'/" /var/www/html/kippo-graph/config.php sed -i -e "s/'LOCAL'/'GEOPLUGIN'/" /var/www/html/kippo-graph/config.php ALLOW="" if [[ -n $ALLOW_HTTP_LOCAL || -n $ALLOW_HTTP_FROM ]]; then ALLOW="Limit access to kippo-graph\n Order deny,allow\n Deny from all" fi if [[ -n $ALLOW_HTTP_LOCAL ]]; then ALLOW="$ALLOW\n Allow from $(ip -4 -o addr show eth0 | cut -d\ -f7)" fi if [[ -n $ALLOW_HTTP_FROM ]]; then ALLOW="$ALLOW\n Allow from $ALLOW_HTTP_FROM" fi if [[ $ALLOW != "" ]]; then sed -i -e "s?Placeholder?$ALLOW?" /etc/apache2/sites-available/kippo-graph.conf fi exec "$@"
reuteras/docker-kippo-graph
entrypoint.sh
Shell
mit
1,346
#!/bin/sh SCRIPT=`realpath "$0"` SCRIPTPATH=`dirname "$SCRIPT"` cd "$SCRIPTPATH" git diff --ext-diff | meld -
cefn/firmware-codesign-readinglog
diff_dirs.sh
Shell
mit
110
#!/usr/bin/env bash pod repo push makingspace NetworkingServiceKit.podspec --allow-warnings
makingspace/NetworkingServiceKit
update-spec.sh
Shell
mit
92
#!/bin/bash docker run --rm -it --network=command-net roadster/mqtt-spy sh
lizard43/docker-demo17
swarm/missileCommand/mqtt-spy/runMqttSpyDocker.sh
Shell
mit
76
#!/bin/bash # sh xamps_np/t_xs_np.sh
AppliedLogicSystems/ALSProlog
docs/src_help_md/run_np_samples.sh
Shell
mit
37
#!/usr/bin/env bash set -euv export CRATESFYI_PREFIX=/opt/docsrs/prefix export DOCS_RS_DOCKER=true export RUST_LOG=${RUST_LOG-cratesfyi,rustwide=info} export PATH="$PATH:/build/target/release" # Try migrating the database multiple times if it fails # This avoids the docker container crashing the first time it's started with # docker-compose, as PostgreSQL needs some time to initialize. set +e failed=0 while true; do if ! cratesfyi database migrate; then ((failed=failed + 1)) if [ "${failed}" -eq 5 ]; then exit 1 fi echo "failed to migrate the database" echo "waiting 1 second..." sleep 1 else break fi done set -e cratesfyi database update-search-index cratesfyi database update-release-activity if ! [ -d "${CRATESFYI_PREFIX}/crates.io-index/.git" ]; then git clone https://github.com/rust-lang/crates.io-index "${CRATESFYI_PREFIX}/crates.io-index" # Prevent new crates built before the container creation to be built git --git-dir="$CRATESFYI_PREFIX/crates.io-index/.git" branch crates-index-diff_last-seen fi cratesfyi build update-toolchain --only-first-time cratesfyi "$@"
onur/cratesfyi
docker-entrypoint.sh
Shell
mit
1,183
#!/bin/bash set -o errtrace #trap inherited in sub script set -o errexit set -o functrace #trap inherited in function ##################### # get real path ##################### APP_CMD_HOME=$(cd `dirname $0`; pwd) APP_HOME=$(dirname "$APP_CMD_HOME") ##################### # init ##################### . ${APP_CMD_HOME}/_common.sh ##################### # 任务 ##################### fn_run rm -rf $APP_HOME/themes/hugo-theme-docdock fn_run git clone https://github.com/vjeantet/hugo-theme-docdock.git $APP_HOME/themes/hugo-theme-docdock;
chen56/thinking
script/init.sh
Shell
epl-1.0
543
#! /bin/bash cd . echo "codebox started: `date`" >> ./codebox.log nohup node ./node_modules/codebox/bin/codebox.js run ./ -p 3001 -u USERNAME:PASSWORD,guest:havoc42c >> ./codebox.log 2>&1 &
plamzi/Havoc
codebox.sh
Shell
gpl-2.0
190
#!/bin/sh test_description='blob conversion via gitattributes' . ./test-lib.sh TEST_ROOT="$PWD" PATH=$TEST_ROOT:$PATH write_script <<\EOF "$TEST_ROOT/rot13.sh" tr \ 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ' \ 'nopqrstuvwxyzabcdefghijklmNOPQRSTUVWXYZABCDEFGHIJKLM' EOF write_script rot13-filter.pl "$PERL_PATH" \ <"$TEST_DIRECTORY"/t0021/rot13-filter.pl generate_random_characters () { LEN=$1 NAME=$2 test-genrandom some-seed $LEN | perl -pe "s/./chr((ord($&) % 26) + ord('a'))/sge" >"$TEST_ROOT/$NAME" } file_size () { perl -e 'print -s $ARGV[0]' "$1" } filter_git () { rm -f rot13-filter.log && git "$@" } # Compare two files and ensure that `clean` and `smudge` respectively are # called at least once if specified in the `expect` file. The actual # invocation count is not relevant because their number can vary. # c.f. http://public-inbox.org/git/[email protected]/ test_cmp_count () { expect=$1 actual=$2 for FILE in "$expect" "$actual" do sort "$FILE" | uniq -c | sed -e "s/^ *[0-9][0-9]*[ ]*IN: /x IN: /" >"$FILE.tmp" && mv "$FILE.tmp" "$FILE" || return done && test_cmp "$expect" "$actual" } # Compare two files but exclude all `clean` invocations because Git can # call `clean` zero or more times. # c.f. http://public-inbox.org/git/[email protected]/ test_cmp_exclude_clean () { expect=$1 actual=$2 for FILE in "$expect" "$actual" do grep -v "IN: clean" "$FILE" >"$FILE.tmp" && mv "$FILE.tmp" "$FILE" done && test_cmp "$expect" "$actual" } # Check that the contents of two files are equal and that their rot13 version # is equal to the committed content. test_cmp_committed_rot13 () { test_cmp "$1" "$2" && rot13.sh <"$1" >expected && git cat-file blob :"$2" >actual && test_cmp expected actual } test_expect_success setup ' git config filter.rot13.smudge ./rot13.sh && git config filter.rot13.clean ./rot13.sh && { echo "*.t filter=rot13" echo "*.i ident" } >.gitattributes && { echo a b c d e f g h i j k l m echo n o p q r s t u v w x y z echo '\''$Id$'\'' } >test && cat test >test.t && cat test >test.o && cat test >test.i && git add test test.t test.i && rm -f test test.t test.i && git checkout -- test test.t test.i && echo "content-test2" >test2.o && echo "content-test3 - filename with special characters" >"test3 '\''sq'\'',\$x.o" ' script='s/^\$Id: \([0-9a-f]*\) \$/\1/p' test_expect_success check ' test_cmp test.o test && test_cmp test.o test.t && # ident should be stripped in the repository git diff --raw --exit-code :test :test.i && id=$(git rev-parse --verify :test) && embedded=$(sed -ne "$script" test.i) && test "z$id" = "z$embedded" && git cat-file blob :test.t >test.r && ./rot13.sh <test.o >test.t && test_cmp test.r test.t ' # If an expanded ident ever gets into the repository, we want to make sure that # it is collapsed before being expanded again on checkout test_expect_success expanded_in_repo ' { echo "File with expanded keywords" echo "\$Id\$" echo "\$Id:\$" echo "\$Id: 0000000000000000000000000000000000000000 \$" echo "\$Id: NoSpaceAtEnd\$" echo "\$Id:NoSpaceAtFront \$" echo "\$Id:NoSpaceAtEitherEnd\$" echo "\$Id: NoTerminatingSymbol" echo "\$Id: Foreign Commit With Spaces \$" } >expanded-keywords.0 && { cat expanded-keywords.0 && printf "\$Id: NoTerminatingSymbolAtEOF" } >expanded-keywords && cat expanded-keywords >expanded-keywords-crlf && git add expanded-keywords expanded-keywords-crlf && git commit -m "File with keywords expanded" && id=$(git rev-parse --verify :expanded-keywords) && { echo "File with expanded keywords" echo "\$Id: $id \$" echo "\$Id: $id \$" echo "\$Id: $id \$" echo "\$Id: $id \$" echo "\$Id: $id \$" echo "\$Id: $id \$" echo "\$Id: NoTerminatingSymbol" echo "\$Id: Foreign Commit With Spaces \$" } >expected-output.0 && { cat expected-output.0 && printf "\$Id: NoTerminatingSymbolAtEOF" } >expected-output && { append_cr <expected-output.0 && printf "\$Id: NoTerminatingSymbolAtEOF" } >expected-output-crlf && { echo "expanded-keywords ident" echo "expanded-keywords-crlf ident text eol=crlf" } >>.gitattributes && rm -f expanded-keywords expanded-keywords-crlf && git checkout -- expanded-keywords && test_cmp expanded-keywords expected-output && git checkout -- expanded-keywords-crlf && test_cmp expanded-keywords-crlf expected-output-crlf ' # The use of %f in a filter definition is expanded to the path to # the filename being smudged or cleaned. It must be shell escaped. # First, set up some interesting file names and pet them in # .gitattributes. test_expect_success 'filter shell-escaped filenames' ' cat >argc.sh <<-EOF && #!$SHELL_PATH cat >/dev/null echo argc: \$# "\$@" EOF normal=name-no-magic && special="name with '\''sq'\'' and \$x" && echo some test text >"$normal" && echo some test text >"$special" && git add "$normal" "$special" && git commit -q -m "add files" && echo "name* filter=argc" >.gitattributes && # delete the files and check them out again, using a smudge filter # that will count the args and echo the command-line back to us test_config filter.argc.smudge "sh ./argc.sh %f" && rm "$normal" "$special" && git checkout -- "$normal" "$special" && # make sure argc.sh counted the right number of args echo "argc: 1 $normal" >expect && test_cmp expect "$normal" && echo "argc: 1 $special" >expect && test_cmp expect "$special" && # do the same thing, but with more args in the filter expression test_config filter.argc.smudge "sh ./argc.sh %f --my-extra-arg" && rm "$normal" "$special" && git checkout -- "$normal" "$special" && # make sure argc.sh counted the right number of args echo "argc: 2 $normal --my-extra-arg" >expect && test_cmp expect "$normal" && echo "argc: 2 $special --my-extra-arg" >expect && test_cmp expect "$special" && : ' test_expect_success 'required filter should filter data' ' test_config filter.required.smudge ./rot13.sh && test_config filter.required.clean ./rot13.sh && test_config filter.required.required true && echo "*.r filter=required" >.gitattributes && cat test.o >test.r && git add test.r && rm -f test.r && git checkout -- test.r && test_cmp test.o test.r && ./rot13.sh <test.o >expected && git cat-file blob :test.r >actual && test_cmp expected actual ' test_expect_success 'required filter smudge failure' ' test_config filter.failsmudge.smudge false && test_config filter.failsmudge.clean cat && test_config filter.failsmudge.required true && echo "*.fs filter=failsmudge" >.gitattributes && echo test >test.fs && git add test.fs && rm -f test.fs && test_must_fail git checkout -- test.fs ' test_expect_success 'required filter clean failure' ' test_config filter.failclean.smudge cat && test_config filter.failclean.clean false && test_config filter.failclean.required true && echo "*.fc filter=failclean" >.gitattributes && echo test >test.fc && test_must_fail git add test.fc ' test_expect_success 'filtering large input to small output should use little memory' ' test_config filter.devnull.clean "cat >/dev/null" && test_config filter.devnull.required true && for i in $(test_seq 1 30); do printf "%1048576d" 1; done >30MB && echo "30MB filter=devnull" >.gitattributes && GIT_MMAP_LIMIT=1m GIT_ALLOC_LIMIT=1m git add 30MB ' test_expect_success 'filter that does not read is fine' ' test-genrandom foo $((128 * 1024 + 1)) >big && echo "big filter=epipe" >.gitattributes && test_config filter.epipe.clean "echo xyzzy" && git add big && git cat-file blob :big >actual && echo xyzzy >expect && test_cmp expect actual ' test_expect_success EXPENSIVE 'filter large file' ' test_config filter.largefile.smudge cat && test_config filter.largefile.clean cat && for i in $(test_seq 1 2048); do printf "%1048576d" 1; done >2GB && echo "2GB filter=largefile" >.gitattributes && git add 2GB 2>err && test_must_be_empty err && rm -f 2GB && git checkout -- 2GB 2>err && test_must_be_empty err ' test_expect_success "filter: clean empty file" ' test_config filter.in-repo-header.clean "echo cleaned && cat" && test_config filter.in-repo-header.smudge "sed 1d" && echo "empty-in-worktree filter=in-repo-header" >>.gitattributes && >empty-in-worktree && echo cleaned >expected && git add empty-in-worktree && git show :empty-in-worktree >actual && test_cmp expected actual ' test_expect_success "filter: smudge empty file" ' test_config filter.empty-in-repo.clean "cat >/dev/null" && test_config filter.empty-in-repo.smudge "echo smudged && cat" && echo "empty-in-repo filter=empty-in-repo" >>.gitattributes && echo dead data walking >empty-in-repo && git add empty-in-repo && echo smudged >expected && git checkout-index --prefix=filtered- empty-in-repo && test_cmp expected filtered-empty-in-repo ' test_expect_success 'disable filter with empty override' ' test_config_global filter.disable.smudge false && test_config_global filter.disable.clean false && test_config filter.disable.smudge false && test_config filter.disable.clean false && echo "*.disable filter=disable" >.gitattributes && echo test >test.disable && git -c filter.disable.clean= add test.disable 2>err && test_must_be_empty err && rm -f test.disable && git -c filter.disable.smudge= checkout -- test.disable 2>err && test_must_be_empty err ' test_expect_success 'diff does not reuse worktree files that need cleaning' ' test_config filter.counter.clean "echo . >>count; sed s/^/clean:/" && echo "file filter=counter" >.gitattributes && test_commit one file && test_commit two file && >count && git diff-tree -p HEAD && test_line_count = 0 count ' test_expect_success PERL 'required process filter should filter data' ' test_config_global filter.protocol.process "rot13-filter.pl clean smudge" && test_config_global filter.protocol.required true && rm -rf repo && mkdir repo && ( cd repo && git init && echo "git-stderr.log" >.gitignore && echo "*.r filter=protocol" >.gitattributes && git add . && git commit . -m "test commit 1" && git branch empty-branch && cp "$TEST_ROOT/test.o" test.r && cp "$TEST_ROOT/test2.o" test2.r && mkdir testsubdir && cp "$TEST_ROOT/test3 '\''sq'\'',\$x.o" "testsubdir/test3 '\''sq'\'',\$x.r" && >test4-empty.r && S=$(file_size test.r) && S2=$(file_size test2.r) && S3=$(file_size "testsubdir/test3 '\''sq'\'',\$x.r") && filter_git add . && cat >expected.log <<-EOF && START init handshake complete IN: clean test.r $S [OK] -- OUT: $S . [OK] IN: clean test2.r $S2 [OK] -- OUT: $S2 . [OK] IN: clean test4-empty.r 0 [OK] -- OUT: 0 [OK] IN: clean testsubdir/test3 '\''sq'\'',\$x.r $S3 [OK] -- OUT: $S3 . [OK] STOP EOF test_cmp_count expected.log rot13-filter.log && filter_git commit . -m "test commit 2" && cat >expected.log <<-EOF && START init handshake complete IN: clean test.r $S [OK] -- OUT: $S . [OK] IN: clean test2.r $S2 [OK] -- OUT: $S2 . [OK] IN: clean test4-empty.r 0 [OK] -- OUT: 0 [OK] IN: clean testsubdir/test3 '\''sq'\'',\$x.r $S3 [OK] -- OUT: $S3 . [OK] IN: clean test.r $S [OK] -- OUT: $S . [OK] IN: clean test2.r $S2 [OK] -- OUT: $S2 . [OK] IN: clean test4-empty.r 0 [OK] -- OUT: 0 [OK] IN: clean testsubdir/test3 '\''sq'\'',\$x.r $S3 [OK] -- OUT: $S3 . [OK] STOP EOF test_cmp_count expected.log rot13-filter.log && rm -f test2.r "testsubdir/test3 '\''sq'\'',\$x.r" && filter_git checkout --quiet --no-progress . && cat >expected.log <<-EOF && START init handshake complete IN: smudge test2.r $S2 [OK] -- OUT: $S2 . [OK] IN: smudge testsubdir/test3 '\''sq'\'',\$x.r $S3 [OK] -- OUT: $S3 . [OK] STOP EOF test_cmp_exclude_clean expected.log rot13-filter.log && filter_git checkout --quiet --no-progress empty-branch && cat >expected.log <<-EOF && START init handshake complete IN: clean test.r $S [OK] -- OUT: $S . [OK] STOP EOF test_cmp_exclude_clean expected.log rot13-filter.log && filter_git checkout --quiet --no-progress master && cat >expected.log <<-EOF && START init handshake complete IN: smudge test.r $S [OK] -- OUT: $S . [OK] IN: smudge test2.r $S2 [OK] -- OUT: $S2 . [OK] IN: smudge test4-empty.r 0 [OK] -- OUT: 0 [OK] IN: smudge testsubdir/test3 '\''sq'\'',\$x.r $S3 [OK] -- OUT: $S3 . [OK] STOP EOF test_cmp_exclude_clean expected.log rot13-filter.log && test_cmp_committed_rot13 "$TEST_ROOT/test.o" test.r && test_cmp_committed_rot13 "$TEST_ROOT/test2.o" test2.r && test_cmp_committed_rot13 "$TEST_ROOT/test3 '\''sq'\'',\$x.o" "testsubdir/test3 '\''sq'\'',\$x.r" ) ' test_expect_success PERL 'required process filter takes precedence' ' test_config_global filter.protocol.clean false && test_config_global filter.protocol.process "rot13-filter.pl clean" && test_config_global filter.protocol.required true && rm -rf repo && mkdir repo && ( cd repo && git init && echo "*.r filter=protocol" >.gitattributes && cp "$TEST_ROOT/test.o" test.r && S=$(file_size test.r) && # Check that the process filter is invoked here filter_git add . && cat >expected.log <<-EOF && START init handshake complete IN: clean test.r $S [OK] -- OUT: $S . [OK] STOP EOF test_cmp_count expected.log rot13-filter.log ) ' test_expect_success PERL 'required process filter should be used only for "clean" operation only' ' test_config_global filter.protocol.process "rot13-filter.pl clean" && rm -rf repo && mkdir repo && ( cd repo && git init && echo "*.r filter=protocol" >.gitattributes && cp "$TEST_ROOT/test.o" test.r && S=$(file_size test.r) && filter_git add . && cat >expected.log <<-EOF && START init handshake complete IN: clean test.r $S [OK] -- OUT: $S . [OK] STOP EOF test_cmp_count expected.log rot13-filter.log && rm test.r && filter_git checkout --quiet --no-progress . && # If the filter would be used for "smudge", too, we would see # "IN: smudge test.r 57 [OK] -- OUT: 57 . [OK]" here cat >expected.log <<-EOF && START init handshake complete STOP EOF test_cmp_exclude_clean expected.log rot13-filter.log ) ' test_expect_success PERL 'required process filter should process multiple packets' ' test_config_global filter.protocol.process "rot13-filter.pl clean smudge" && test_config_global filter.protocol.required true && rm -rf repo && mkdir repo && ( cd repo && git init && # Generate data requiring 1, 2, 3 packets S=65516 && # PKTLINE_DATA_MAXLEN -> Maximal size of a packet generate_random_characters $(($S )) 1pkt_1__.file && generate_random_characters $(($S +1)) 2pkt_1+1.file && generate_random_characters $(($S*2-1)) 2pkt_2-1.file && generate_random_characters $(($S*2 )) 2pkt_2__.file && generate_random_characters $(($S*2+1)) 3pkt_2+1.file && for FILE in "$TEST_ROOT"/*.file do cp "$FILE" . && rot13.sh <"$FILE" >"$FILE.rot13" done && echo "*.file filter=protocol" >.gitattributes && filter_git add *.file .gitattributes && cat >expected.log <<-EOF && START init handshake complete IN: clean 1pkt_1__.file $(($S )) [OK] -- OUT: $(($S )) . [OK] IN: clean 2pkt_1+1.file $(($S +1)) [OK] -- OUT: $(($S +1)) .. [OK] IN: clean 2pkt_2-1.file $(($S*2-1)) [OK] -- OUT: $(($S*2-1)) .. [OK] IN: clean 2pkt_2__.file $(($S*2 )) [OK] -- OUT: $(($S*2 )) .. [OK] IN: clean 3pkt_2+1.file $(($S*2+1)) [OK] -- OUT: $(($S*2+1)) ... [OK] STOP EOF test_cmp_count expected.log rot13-filter.log && rm -f *.file && filter_git checkout --quiet --no-progress -- *.file && cat >expected.log <<-EOF && START init handshake complete IN: smudge 1pkt_1__.file $(($S )) [OK] -- OUT: $(($S )) . [OK] IN: smudge 2pkt_1+1.file $(($S +1)) [OK] -- OUT: $(($S +1)) .. [OK] IN: smudge 2pkt_2-1.file $(($S*2-1)) [OK] -- OUT: $(($S*2-1)) .. [OK] IN: smudge 2pkt_2__.file $(($S*2 )) [OK] -- OUT: $(($S*2 )) .. [OK] IN: smudge 3pkt_2+1.file $(($S*2+1)) [OK] -- OUT: $(($S*2+1)) ... [OK] STOP EOF test_cmp_exclude_clean expected.log rot13-filter.log && for FILE in *.file do test_cmp_committed_rot13 "$TEST_ROOT/$FILE" $FILE done ) ' test_expect_success PERL 'required process filter with clean error should fail' ' test_config_global filter.protocol.process "rot13-filter.pl clean smudge" && test_config_global filter.protocol.required true && rm -rf repo && mkdir repo && ( cd repo && git init && echo "*.r filter=protocol" >.gitattributes && cp "$TEST_ROOT/test.o" test.r && echo "this is going to fail" >clean-write-fail.r && echo "content-test3-subdir" >test3.r && test_must_fail git add . ) ' test_expect_success PERL 'process filter should restart after unexpected write failure' ' test_config_global filter.protocol.process "rot13-filter.pl clean smudge" && rm -rf repo && mkdir repo && ( cd repo && git init && echo "*.r filter=protocol" >.gitattributes && cp "$TEST_ROOT/test.o" test.r && cp "$TEST_ROOT/test2.o" test2.r && echo "this is going to fail" >smudge-write-fail.o && cp smudge-write-fail.o smudge-write-fail.r && S=$(file_size test.r) && S2=$(file_size test2.r) && SF=$(file_size smudge-write-fail.r) && git add . && rm -f *.r && rm -f rot13-filter.log && git checkout --quiet --no-progress . 2>git-stderr.log && grep "smudge write error at" git-stderr.log && grep "error: external filter" git-stderr.log && cat >expected.log <<-EOF && START init handshake complete IN: smudge smudge-write-fail.r $SF [OK] -- OUT: $SF [WRITE FAIL] START init handshake complete IN: smudge test.r $S [OK] -- OUT: $S . [OK] IN: smudge test2.r $S2 [OK] -- OUT: $S2 . [OK] STOP EOF test_cmp_exclude_clean expected.log rot13-filter.log && test_cmp_committed_rot13 "$TEST_ROOT/test.o" test.r && test_cmp_committed_rot13 "$TEST_ROOT/test2.o" test2.r && # Smudge failed ! test_cmp smudge-write-fail.o smudge-write-fail.r && rot13.sh <smudge-write-fail.o >expected && git cat-file blob :smudge-write-fail.r >actual && test_cmp expected actual ) ' test_expect_success PERL 'process filter should not be restarted if it signals an error' ' test_config_global filter.protocol.process "rot13-filter.pl clean smudge" && rm -rf repo && mkdir repo && ( cd repo && git init && echo "*.r filter=protocol" >.gitattributes && cp "$TEST_ROOT/test.o" test.r && cp "$TEST_ROOT/test2.o" test2.r && echo "this will cause an error" >error.o && cp error.o error.r && S=$(file_size test.r) && S2=$(file_size test2.r) && SE=$(file_size error.r) && git add . && rm -f *.r && filter_git checkout --quiet --no-progress . && cat >expected.log <<-EOF && START init handshake complete IN: smudge error.r $SE [OK] -- OUT: 0 [ERROR] IN: smudge test.r $S [OK] -- OUT: $S . [OK] IN: smudge test2.r $S2 [OK] -- OUT: $S2 . [OK] STOP EOF test_cmp_exclude_clean expected.log rot13-filter.log && test_cmp_committed_rot13 "$TEST_ROOT/test.o" test.r && test_cmp_committed_rot13 "$TEST_ROOT/test2.o" test2.r && test_cmp error.o error.r ) ' test_expect_success PERL 'process filter abort stops processing of all further files' ' test_config_global filter.protocol.process "rot13-filter.pl clean smudge" && rm -rf repo && mkdir repo && ( cd repo && git init && echo "*.r filter=protocol" >.gitattributes && cp "$TEST_ROOT/test.o" test.r && cp "$TEST_ROOT/test2.o" test2.r && echo "error this blob and all future blobs" >abort.o && cp abort.o abort.r && SA=$(file_size abort.r) && git add . && rm -f *.r && # Note: This test assumes that Git filters files in alphabetical # order ("abort.r" before "test.r"). filter_git checkout --quiet --no-progress . && cat >expected.log <<-EOF && START init handshake complete IN: smudge abort.r $SA [OK] -- OUT: 0 [ABORT] STOP EOF test_cmp_exclude_clean expected.log rot13-filter.log && test_cmp "$TEST_ROOT/test.o" test.r && test_cmp "$TEST_ROOT/test2.o" test2.r && test_cmp abort.o abort.r ) ' test_expect_success PERL 'invalid process filter must fail (and not hang!)' ' test_config_global filter.protocol.process cat && test_config_global filter.protocol.required true && rm -rf repo && mkdir repo && ( cd repo && git init && echo "*.r filter=protocol" >.gitattributes && cp "$TEST_ROOT/test.o" test.r && test_must_fail git add . 2>git-stderr.log && grep "does not support filter protocol version" git-stderr.log ) ' test_done
cpackham/git
t/t0021-conversion.sh
Shell
gpl-2.0
20,683
#!/bin/sh # Prepare mxcloud testing environment from firmware V1.4 if [ "$1" == "" ]; echo "Usage: $0 [ip-segment#4]" exit 1 fi cd /tmp # setup the network cp -a /etc/resolv.conf /etc/resolv.conf.bak cp -a /etc/network/interfaces /etc/network/interfaces.bak cp -a /etc/hosts /etc/hosts.bak echo "nameserver 192.168.50.33" > /etc/resolv.conf sed -i "s|192.168.3.|192.168.31.|g" /etc/network/interfaces sed -i "s|192.168.31.127|192.168.31.$1|g" /etc/network/interfaces sed -i '11 a \\tgateway 192.168.31.254' /etc/network/interfaces /etc/init.d/networking restart ip route add default via 192.168.31.254 ntpdate 192.168.50.33 CG_PACKAGES=" \ python-dev \ python-pip \ syslog-ng \ " # update packages sed -i "s|debian.moxa.com|220.135.161.42|g" /etc/apt/sources.list apt-get update; apt-get -y upgrade # install packages apt-get -y install ${CG_PACKAGES} # install mosquitto (latest version) wget http://repo.mosquitto.org/debian/mosquitto-repo.gpg.key apt-key add mosquitto-repo.gpg.key wget http://repo.mosquitto.org/debian/mosquitto-wheezy.list mv mosquitto-wheezy.list /etc/apt/sources.list.d/ apt-get update apt-get install -y mosquitto libmosquitto1 mosquitto-clients # install sanji controller wget -O sanji-controller_1.0.0_armhf.deb http://192.168.31.31/dokuwiki/lib/exe/fetch.php?media=software:linux:product:mxcloud:uc8100:sanji-controller_1.0.0_armhf.deb dpkg -i sanji-controller_1.0.0_armhf.deb cd /tmp # install project packages wget http://192.168.31.74:8080/job/mxc/lastSuccessfulBuild/artifact/build-deb/mxc_0.2.7-1_all.deb wget http://192.168.31.74:8080/job/mxcg/lastSuccessfulBuild/artifact/build-deb/mxcg_0.2.0-1_all.deb wget http://192.168.31.74:8080/job/mxc-sanji/lastSuccessfulBuild/artifact/build-deb/mxc-sanji_0.1.0-1_all.deb wget http://192.168.31.74:8080/job/mxcg-sanji/lastSuccessfulBuild/artifact/build-deb/mxcg-sanji_0.3.0-1_all.deb dpkg -i mxc_0.2.7-1_all.deb mxcg_0.2.0-1_all.deb \ mxc-sanji_0.1.0-1_all.deb mxcg-sanji_0.3.0-1_all.deb # install python packages cd /home/moxa pip install git+https://github.com/Sanji-IO/sanji.git#egg=sanji echo 192.168.31.81 mxc-cs >> /etc/hosts sed -i "s|#mqtt-tls-psk|mqtt-tls-psk|g" /etc/mxc/fwd/configuration ./install-generic-bundles.sh #./clean-system sed -i "s|220.135.161.42|debian.moxa.com|g" /etc/apt/sources.list mv /etc/resolv.conf.bak /etc/resolv.conf mv /etc/network/interfaces.bak /etc/network/interfaces mv /etc/hosts.bak /etc/hosts
lwindg/mxcloud-cg-configurator
prepare-rootfs.sh
Shell
gpl-2.0
2,429
convert images/OCS-426.png -crop 1647x4938+0+0 +repage images/OCS-426-A.png convert images/OCS-426.png -crop 1647x4938+1647+0 +repage images/OCS-426-B.png #/OCS-426.png # # #
jonnymwalker/Staroslavjanskij-Slovar
scripts/middlesplit.OCS-426.sh
Shell
gpl-2.0
175
#!/bin/sh # I created this because I couldn't get the ant target dist to compile on OS X =ml= if [[ `uname` != 'Darwin' ]]; then echo "OS X is required to build all distros." echo "You have been warned!" fi rm -rf dist-all mkdir dist-all echo "===> Compiling Linux distro..." ./dist-linux.sh & wait mv dist/* dist-all/. echo "===> done" echo "===> Compiling Windows distro..." ./dist-windows.sh & wait mv dist/* dist-all/. echo "===> done" echo "===> Compiling OS X distro..." ./dist-mac.sh & wait mv dist/* dist-all/. rm -rf dist echo "===> done"
natetrue/ReplicatorG
dist-all.sh
Shell
gpl-2.0
553
echo "MISE A JOUR DES ENTITES A PARTIR DES BASES"; vendor/bin/doctrine orm:convert-mapping --from-database yml ./config/yaml --force; vendor/bin/doctrine orm:generate-entities ./src; vendor/bin/doctrine orm:info; exit 0;
mistert14/espe2015
ESPE-DOCT/update.sh
Shell
gpl-2.0
221
#!/bin/bash -e echo 2
tjamet/dynker
resources/image2/scripts/value.sh
Shell
gpl-2.0
22
#!/bin/bash # ipcop advanced proxy log addon binary installer Ver 1.0.0 for IPCop 2.0.x # # created 01 January 2014 by Umberto 'joeyramone76' Miceli <[email protected]> # # # $Id: install.sh v 1.0.2 2014-04-14 23:56:23Z joeyramone76 $ # SCRIPTPATH=`dirname $0` CMD="$1" STEP=1 UPDATE=0 ADVPLVER=1.0.2 ADVPLURL=http://joeyramone76.altervista.org/advproxylog/latest LOGDIR="/var/log/advproxylog" #error handling err() { echo " " echo "Error : $1 " echo " " echo "Choose your option:" echo " " echo "./install -i ---> to install" echo "./install -u ---> to uninstall" echo " " exit } # installation ai() { echo "" echo "====================================================" echo " IPCop 2.0 Advanced proxy Log 1.0.2 add-on installation" echo "====================================================" echo "" ## verify already installed and uninstall if [ -e /var/ipcop/addons/advproxylog/version ]; then UPDATE=1 fi echo "Step $STEP: Creating directories" echo "--------------------------------------------" for DIR in /var/ipcop/addons/advproxylog /var/ipcop/addons/advproxylog/reports /var/log/advproxylog do echo "$DIR" if [ ! -d $DIR ]; then mkdir $DIR fi done echo " " let STEP++ echo "Step $STEP: Patching system files" echo "--------------------------------------------" echo "Patching language files" addtolanguage AdvProxyLog bz,de,en,es,fr,it,nl,pl,pt,ru $SCRIPTPATH/langs echo " " let STEP++ echo "Step $STEP: Copying Advanced Proxy Log files" echo "--------------------------------------------" echo "/home/httpd/cgi-bin/advproxylog.cgi" addcgi $SCRIPTPATH/cgi/advproxylog.cgi echo "/var/ipcop/addons/advproxylog/advpoxylog-lib.pl" cp $SCRIPTPATH/cgi/advproxylog-lib.pl /var/ipcop/addons/advproxylog/advproxylog-lib.pl echo "/var/ipcop/proxy/advproxylog/viewersettings" cp $SCRIPTPATH/setup/viewersettings /var/ipcop/addons/advproxylog/viewersettings echo "/var/ipcop/addons/advproxylog/version" echo "$ADVPLVER" > /var/ipcop/addons/advproxylog/version # echo "URL=$ADVPLURL" >> /var/ipcop/addons/advproxylog/version rm -rf /var/ipcop/addons/advproxylog/latestVersion touch -t 201402100000 /var/ipcop/addons/advproxylog/.up2date echo " " let STEP++ echo "Step $STEP: Setting ownerships and permissions" echo "--------------------------------------------" echo "Setting ownership and permissions (advproxylog)" chown -R nobody:nobody /var/ipcop/addons/advproxylog echo " " let STEP++ if [ "$UPDATE" == 1 ]; then echo " " fi echo " " } # deinstallation au() { echo "====================================================" echo " IPCop 2.0 Advanced Proxy Log 1.0.2 add-on uninstall" echo "====================================================" echo "" if [ ! -e "/home/httpd/cgi-bin/advproxylog.cgi" ] && [ ! -d "/var/ipcop/addons/advproxylog" ]; then echo "ERROR: Advanced Proxy Log add-on is not installed." exit fi echo "Step $STEP: Removing directories" echo "--------------------------------------------" for DIR in /var/ipcop/addons/advproxylog /var/ipcop/addons/advproxylog/reports /var/ipcop/proxy/advproxylog /var/log/advproxylog do echo "$DIR" if [ -d "$DIR" ]; then rm -rf $DIR fi done echo "" let STEP++ echo "Step $STEP: Deleting AdvProxyLog files" echo "--------------------------------------------" echo "/home/httpd/cgi-bin/advproxylog.cgi" removecgi advproxylog.cgi echo "/home/httpd/cgi-bin/advproxylog-lib.pl" rm -f /home/httpd/cgi-bin/advproxylog-lib.pl echo "" let STEP++ echo "Step $STEP: Restoring system files" echo "--------------------------------------------" echo "Removing language texts" removefromlanguage AdvProxyLog echo "" let STEP++ } if [ ! -e /usr/lib/ipcop/library.sh ]; then echo "Upgrade your IPCop, library.sh is missing" exit 1 fi . /usr/lib/ipcop/library.sh # check IPCop version VERSIONOK=1 if [ 0$LIBVERSION -ge 2 ]; then isversion 2.0.3 newer VERSIONOK=$? fi #DEBUG: #echo "VERSIONOK: $VERSIONOK" if [ $VERSIONOK -ne 0 ]; then echo "Upgrade your IPCop, this Addon requires at least IPCop 2.0.3" exit 1 fi case $CMD in -i|i|install) echo " " ai echo " " ;; -u|u|uninstall) echo " " au echo " " ;; *) err "Invalid Option" ;; esac sync #end of file
joeyramone76/ipcop-advproxylog
install.sh
Shell
gpl-2.0
4,716
#! /bin/sh ./send.py '{ "cmd":"stop", "id":"big_left" }'
flok99/matrix-server
stop-one.sh
Shell
gpl-2.0
58
# # ASKAP Data Challenge 1A Processing Pipeline # ############################################################################## # Specific Configuration ############################################################################## # ############## # # This file defines various constants used in the scripts. # # This version is for a full BETA simulation, with the original BETA # specs of 300MHz bandwidth, and full field-of-view of 36 beams echo Running pipeline for original BETA specs: 300MHz BW, 36 beams ################## # THIS IS FOR FULL BANDWIDTH # final channel, used by create-coarse-ms.sh END_CHANNEL_CREATECOARSE=16416 # number of workers used by create-coarse-ms.sh NUM_WORKERS_CREATECOARSE=304 SBATCH_RANGE_CREATECOARSE="0-303" # number of worker nodes needed for gains-calibration.sh - work with 2 worker cpus per node GAINS_CAL_MPPWIDTH=305 GAINS_CAL_MPPNPPN=4 NUM_BEAMS_GAINSCAL=36 # image size -- number of pixels and cellsize IMAGING_NUM_PIXELS=3328 IMAGING_CELLSIZE=10arcsec IMAGING_DIRECTION="[12h30m00.00, -45.00.00.00, J2000]" IMAGING_WTOL=800 IMAGING_WMAX=800 IMAGING_MAXSUP=512 IMAGING_GAUSSTAPER="[30arcsec, 30arcsec, 0deg]" IMAGING_EQUALISE=True # number of worker nodes needed for imager-cont-clean.sh - work with 2 worker cpus per node (but with nworkergroups=3) CONT_CLEAN_MPPWIDTH=913 CONT_CLEAN_MPPNPPN=16 CONT_CLEAN_FREQ=1.270e9 # number of worker nodes needed for imager-cont-dirty.sh - work with 6 worker cpus per node, plus extra on the master's node CONT_DIRTY_MPPWIDTH=305 CONT_DIRTY_MPPNPPN=16 CONT_DIRTY_FREQ=1.270e9 # base frequency for continuum cubes CONT_CUBE_FREQ_ZERO_CHAN=1.421e9 # number of workers used for continuum cubes, and qsub range NUM_WORKERS_CONT_CUBE=304 SBATCH_RANGE_CONT_CUBE="0-303" # final channel used for the make-spectral-cube call for continuum cubes CONT_CUBE_FINALCH=303 # base frequency for spectral-line cubes SPECTRAL_CUBE_FREQ_ZERO_CHAN=1.421e9 # number of workers used for spectral-line cubes, and qsub range NUM_WORKERS_SPECTRAL_CUBE=16416 SBATCH_RANGE_SPECTRAL_CUBE_1="0-8207" SBATCH_RANGE_SPECTRAL_CUBE_2="8208-16415" SBATCH_RANGE_SPECTRAL_CUBE_FULL="0-16415" # final channel used for the make-spectral-cube call for continuum cubes SPECTRAL_CUBE_FINALCH=16415 # reference frequency for sky model SKYMODEL_REFFREQ="1.270GHz" SKYMODEL_FREQ="1.270GHz" SKYMODEL_ALT_FREQ="1.270e9" # subsection of image used for analysis ANALYSIS_SUBSECTION_BLC=600 ANALYSIS_SUBSECTION_TRC=2699 ANALYSIS_SUBSECTION=`echo ${ANALYSIS_SUBSECTION_BLC} ${ANALYSIS_SUBSECTION_TRC} | awk '{printf "[%d:%d,%d:%d,*,*]",\$1+1,\$2+1,\$1+1,\$2+1}'` THRESHIMAGE=detectionThreshold.i.clean NOISEIMAGE=noiseMap.i.clean SNRIMAGE=snr.i.clean AVERAGEIMAGE=meanMap.i.clean
ATNF/askapsdp
Tests/data_challenge_1a/processing/scripts/config_full_BETA.sh
Shell
gpl-2.0
2,729
#!/bin/bash # Run SnpEff for annotating variants. module load snpEff java -Xmx4g -jar $SNPEFF_HOME/snpEff.jar hg19 -noStats -noLog -lof -canon -ud 0 Joeri_exome.variant.calls.GATK.sorted.alldiploid.vcf > Joeri_exome.variant.calls.GATK.sorted.alldiploid_snpeff.vcf
marieke-bijlsma/graduation-project
src/main/bash/runSnpEff.sh
Shell
gpl-2.0
266
#!/bin/bash PRUNE="" INDEXFILTER="git rm -r --cached --ignore-unmatch ${PRUNE}" MSGFILTER="sed -e 's/likewise-oem-isilon/likewise-oem/g'" git filter-branch --msg-filter "${MSGFILTER}" --prune-empty HEAD && \ git for-each-ref --format="%(refname)" refs/original/ | xargs -n 1 git update-ref -d && \ git reflog expire --expire=now --all && \ git reset --hard
Coffeedude/slag
scripts/git-filter/git-filter2.sh
Shell
gpl-2.0
370
#!/bin/bash # # loads script functions . ./scripts/utils # # download all data . ./scripts/downloads # # starts project build . ./scripts/build
AKSW/FOX
ScriptBuild.sh
Shell
gpl-2.0
143
PING 0.0.0.0 (127.0.0.1) 56(84) bytes of data. 64 bytes from 127.0.0.1: icmp_req=1 ttl=64 time=0.043 ms --- 0.0.0.0 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 0.043/0.043/0.043/0.000 ms PING 128.118.0.0 (128.118.0.0) 56(84) bytes of data. --- 128.118.0.0 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.1 (128.118.0.1) 56(84) bytes of data. --- 128.118.0.1 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.2 (128.118.0.2) 56(84) bytes of data. 64 bytes from 128.118.0.2: icmp_req=1 ttl=241 time=44.8 ms --- 128.118.0.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 44.811/44.811/44.811/0.000 ms PING 128.118.0.3 (128.118.0.3) 56(84) bytes of data. --- 128.118.0.3 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.4 (128.118.0.4) 56(84) bytes of data. --- 128.118.0.4 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.5 (128.118.0.5) 56(84) bytes of data. --- 128.118.0.5 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.6 (128.118.0.6) 56(84) bytes of data. --- 128.118.0.6 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.7 (128.118.0.7) 56(84) bytes of data. --- 128.118.0.7 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.2 (128.118.0.2) 56(84) bytes of data. 64 bytes from 128.118.0.2: icmp_req=1 ttl=241 time=43.3 ms --- 128.118.0.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 43.383/43.383/43.383/0.000 ms PING 128.118.0.65 (128.118.0.65) 56(84) bytes of data. 64 bytes from 128.118.0.65: icmp_req=1 ttl=51 time=28.0 ms --- 128.118.0.65 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.016/28.016/28.016/0.000 ms PING 128.118.0.66 (128.118.0.66) 56(84) bytes of data. 64 bytes from 128.118.0.66: icmp_req=1 ttl=115 time=36.3 ms --- 128.118.0.66 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 36.358/36.358/36.358/0.000 ms PING 128.118.0.69 (128.118.0.69) 56(84) bytes of data. 64 bytes from 128.118.0.69: icmp_req=1 ttl=51 time=30.5 ms --- 128.118.0.69 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.554/30.554/30.554/0.000 ms PING 128.118.0.70 (128.118.0.70) 56(84) bytes of data. 64 bytes from 128.118.0.70: icmp_req=1 ttl=50 time=29.8 ms --- 128.118.0.70 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.817/29.817/29.817/0.000 ms PING 128.118.0.71 (128.118.0.71) 56(84) bytes of data. 64 bytes from 128.118.0.71: icmp_req=1 ttl=51 time=28.6 ms --- 128.118.0.71 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.627/28.627/28.627/0.000 ms PING 128.118.0.72 (128.118.0.72) 56(84) bytes of data. 64 bytes from 128.118.0.72: icmp_req=1 ttl=50 time=29.9 ms --- 128.118.0.72 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.985/29.985/29.985/0.000 ms PING 128.118.0.73 (128.118.0.73) 56(84) bytes of data. 64 bytes from 128.118.0.73: icmp_req=1 ttl=51 time=29.4 ms --- 128.118.0.73 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.498/29.498/29.498/0.000 ms PING 128.118.0.74 (128.118.0.74) 56(84) bytes of data. 64 bytes from 128.118.0.74: icmp_req=1 ttl=50 time=31.0 ms --- 128.118.0.74 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 31.064/31.064/31.064/0.000 ms PING 128.118.0.75 (128.118.0.75) 56(84) bytes of data. 64 bytes from 128.118.0.75: icmp_req=1 ttl=51 time=29.0 ms --- 128.118.0.75 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.086/29.086/29.086/0.000 ms PING 128.118.0.76 (128.118.0.76) 56(84) bytes of data. 64 bytes from 128.118.0.76: icmp_req=1 ttl=51 time=28.8 ms --- 128.118.0.76 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.804/28.804/28.804/0.000 ms PING 128.118.0.89 (128.118.0.89) 56(84) bytes of data. 64 bytes from 128.118.0.89: icmp_req=1 ttl=114 time=29.4 ms --- 128.118.0.89 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.444/29.444/29.444/0.000 ms PING 128.118.0.91 (128.118.0.91) 56(84) bytes of data. 64 bytes from 128.118.0.91: icmp_req=1 ttl=114 time=29.7 ms --- 128.118.0.91 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.720/29.720/29.720/0.000 ms PING 128.118.0.92 (128.118.0.92) 56(84) bytes of data. 64 bytes from 128.118.0.92: icmp_req=1 ttl=114 time=29.6 ms --- 128.118.0.92 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.699/29.699/29.699/0.000 ms PING 128.118.0.93 (128.118.0.93) 56(84) bytes of data. 64 bytes from 128.118.0.93: icmp_req=1 ttl=115 time=28.3 ms --- 128.118.0.93 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.385/28.385/28.385/0.000 ms PING 128.118.0.96 (128.118.0.96) 56(84) bytes of data. 64 bytes from 128.118.0.96: icmp_req=1 ttl=115 time=30.2 ms --- 128.118.0.96 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.229/30.229/30.229/0.000 ms PING 128.118.0.98 (128.118.0.98) 56(84) bytes of data. 64 bytes from 128.118.0.98: icmp_req=1 ttl=115 time=30.6 ms --- 128.118.0.98 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.642/30.642/30.642/0.000 ms PING 128.118.0.102 (128.118.0.102) 56(84) bytes of data. 64 bytes from 128.118.0.102: icmp_req=1 ttl=114 time=30.2 ms --- 128.118.0.102 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.226/30.226/30.226/0.000 ms PING 128.118.0.103 (128.118.0.103) 56(84) bytes of data. 64 bytes from 128.118.0.103: icmp_req=1 ttl=115 time=30.3 ms --- 128.118.0.103 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.300/30.300/30.300/0.000 ms PING 128.118.0.105 (128.118.0.105) 56(84) bytes of data. 64 bytes from 128.118.0.105: icmp_req=1 ttl=115 time=29.7 ms --- 128.118.0.105 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.797/29.797/29.797/0.000 ms PING 128.118.0.106 (128.118.0.106) 56(84) bytes of data. 64 bytes from 128.118.0.106: icmp_req=1 ttl=114 time=30.2 ms --- 128.118.0.106 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.225/30.225/30.225/0.000 ms PING 128.118.0.108 (128.118.0.108) 56(84) bytes of data. 64 bytes from 128.118.0.108: icmp_req=1 ttl=115 time=29.5 ms --- 128.118.0.108 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.500/29.500/29.500/0.000 ms PING 128.118.0.112 (128.118.0.112) 56(84) bytes of data. 64 bytes from 128.118.0.112: icmp_req=1 ttl=114 time=29.0 ms --- 128.118.0.112 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.017/29.017/29.017/0.000 ms PING 128.118.0.113 (128.118.0.113) 56(84) bytes of data. 64 bytes from 128.118.0.113: icmp_req=1 ttl=115 time=29.7 ms --- 128.118.0.113 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.712/29.712/29.712/0.000 ms PING 128.118.0.114 (128.118.0.114) 56(84) bytes of data. 64 bytes from 128.118.0.114: icmp_req=1 ttl=114 time=29.7 ms --- 128.118.0.114 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.703/29.703/29.703/0.000 ms PING 128.118.0.116 (128.118.0.116) 56(84) bytes of data. 64 bytes from 128.118.0.116: icmp_req=1 ttl=115 time=29.6 ms --- 128.118.0.116 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.620/29.620/29.620/0.000 ms PING 128.118.0.117 (128.118.0.117) 56(84) bytes of data. 64 bytes from 128.118.0.117: icmp_req=1 ttl=114 time=30.9 ms --- 128.118.0.117 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.974/30.974/30.974/0.000 ms PING 128.118.0.125 (128.118.0.125) 56(84) bytes of data. 64 bytes from 128.118.0.125: icmp_req=1 ttl=51 time=35.2 ms --- 128.118.0.125 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 35.293/35.293/35.293/0.000 ms PING 128.118.0.129 (128.118.0.129) 56(84) bytes of data. 64 bytes from 128.118.0.129: icmp_req=1 ttl=51 time=33.0 ms --- 128.118.0.129 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 33.080/33.080/33.080/0.000 ms PING 128.118.0.140 (128.118.0.140) 56(84) bytes of data. 64 bytes from 128.118.0.140: icmp_req=1 ttl=51 time=29.2 ms --- 128.118.0.140 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.235/29.235/29.235/0.000 ms PING 128.118.0.141 (128.118.0.141) 56(84) bytes of data. 64 bytes from 128.118.0.141: icmp_req=1 ttl=50 time=29.5 ms --- 128.118.0.141 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.553/29.553/29.553/0.000 ms PING 128.118.0.142 (128.118.0.142) 56(84) bytes of data. 64 bytes from 128.118.0.142: icmp_req=1 ttl=51 time=28.9 ms --- 128.118.0.142 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.990/28.990/28.990/0.000 ms PING 128.118.0.143 (128.118.0.143) 56(84) bytes of data. 64 bytes from 128.118.0.143: icmp_req=1 ttl=50 time=31.4 ms --- 128.118.0.143 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 31.435/31.435/31.435/0.000 ms PING 128.118.0.144 (128.118.0.144) 56(84) bytes of data. 64 bytes from 128.118.0.144: icmp_req=1 ttl=50 time=28.9 ms --- 128.118.0.144 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.939/28.939/28.939/0.000 ms PING 128.118.0.145 (128.118.0.145) 56(84) bytes of data. 64 bytes from 128.118.0.145: icmp_req=1 ttl=51 time=35.3 ms --- 128.118.0.145 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 35.334/35.334/35.334/0.000 ms PING 128.118.0.146 (128.118.0.146) 56(84) bytes of data. 64 bytes from 128.118.0.146: icmp_req=1 ttl=50 time=29.9 ms --- 128.118.0.146 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.981/29.981/29.981/0.000 ms PING 128.118.0.203 (128.118.0.203) 56(84) bytes of data. 64 bytes from 128.118.0.203: icmp_req=1 ttl=115 time=29.1 ms --- 128.118.0.203 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.171/29.171/29.171/0.000 ms PING 128.118.0.206 (128.118.0.206) 56(84) bytes of data. 64 bytes from 128.118.0.206: icmp_req=1 ttl=115 time=28.9 ms --- 128.118.0.206 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.955/28.955/28.955/0.000 ms PING 128.118.0.209 (128.118.0.209) 56(84) bytes of data. 64 bytes from 128.118.0.209: icmp_req=1 ttl=115 time=31.9 ms --- 128.118.0.209 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 31.928/31.928/31.928/0.000 ms PING 128.118.0.213 (128.118.0.213) 56(84) bytes of data. 64 bytes from 128.118.0.213: icmp_req=1 ttl=114 time=35.1 ms --- 128.118.0.213 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 35.176/35.176/35.176/0.000 ms PING 128.118.0.217 (128.118.0.217) 56(84) bytes of data. 64 bytes from 128.118.0.217: icmp_req=1 ttl=114 time=30.1 ms --- 128.118.0.217 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.172/30.172/30.172/0.000 ms PING 128.118.0.220 (128.118.0.220) 56(84) bytes of data. 64 bytes from 128.118.0.220: icmp_req=1 ttl=114 time=30.3 ms --- 128.118.0.220 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.333/30.333/30.333/0.000 ms PING 128.118.0.221 (128.118.0.221) 56(84) bytes of data. 64 bytes from 128.118.0.221: icmp_req=1 ttl=115 time=29.0 ms --- 128.118.0.221 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.001/29.001/29.001/0.000 ms PING 128.118.0.222 (128.118.0.222) 56(84) bytes of data. 64 bytes from 128.118.0.222: icmp_req=1 ttl=114 time=29.9 ms --- 128.118.0.222 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.995/29.995/29.995/0.000 ms PING 128.118.0.223 (128.118.0.223) 56(84) bytes of data. 64 bytes from 128.118.0.223: icmp_req=1 ttl=115 time=28.4 ms --- 128.118.0.223 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.467/28.467/28.467/0.000 ms PING 128.118.0.225 (128.118.0.225) 56(84) bytes of data. 64 bytes from 128.118.0.225: icmp_req=1 ttl=114 time=28.5 ms --- 128.118.0.225 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.563/28.563/28.563/0.000 ms PING 128.118.0.229 (128.118.0.229) 56(84) bytes of data. 64 bytes from 128.118.0.229: icmp_req=1 ttl=115 time=28.3 ms --- 128.118.0.229 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.370/28.370/28.370/0.000 ms PING 128.118.0.232 (128.118.0.232) 56(84) bytes of data. 64 bytes from 128.118.0.232: icmp_req=1 ttl=114 time=32.1 ms --- 128.118.0.232 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 32.121/32.121/32.121/0.000 ms PING 128.118.0.234 (128.118.0.234) 56(84) bytes of data. 64 bytes from 128.118.0.234: icmp_req=1 ttl=114 time=48.5 ms --- 128.118.0.234 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 48.594/48.594/48.594/0.000 ms PING 128.118.0.236 (128.118.0.236) 56(84) bytes of data. 64 bytes from 128.118.0.236: icmp_req=1 ttl=115 time=28.9 ms --- 128.118.0.236 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.903/28.903/28.903/0.000 ms PING 128.118.0.238 (128.118.0.238) 56(84) bytes of data. 64 bytes from 128.118.0.238: icmp_req=1 ttl=115 time=28.4 ms --- 128.118.0.238 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.486/28.486/28.486/0.000 ms PING 128.118.0.240 (128.118.0.240) 56(84) bytes of data. 64 bytes from 128.118.0.240: icmp_req=1 ttl=114 time=29.6 ms --- 128.118.0.240 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.689/29.689/29.689/0.000 ms PING 128.118.0.242 (128.118.0.242) 56(84) bytes of data. 64 bytes from 128.118.0.242: icmp_req=1 ttl=114 time=28.4 ms --- 128.118.0.242 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.479/28.479/28.479/0.000 ms PING 128.118.0.250 (128.118.0.250) 56(84) bytes of data. PING 128.118.0.249 (128.118.0.249) 56(84) bytes of data. --- 128.118.0.250 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.249 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.248 (128.118.0.248) 56(84) bytes of data. PING 128.118.0.246 (128.118.0.246) 56(84) bytes of data. --- 128.118.0.248 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.246 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.247 (128.118.0.247) 56(84) bytes of data. --- 128.118.0.247 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.241 (128.118.0.241) 56(84) bytes of data. --- 128.118.0.241 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.245 (128.118.0.245) 56(84) bytes of data. --- 128.118.0.245 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.239 (128.118.0.239) 56(84) bytes of data. --- 128.118.0.239 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.244 (128.118.0.244) 56(84) bytes of data. --- 128.118.0.244 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.228 (128.118.0.228) 56(84) bytes of data. --- 128.118.0.228 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.243 (128.118.0.243) 56(84) bytes of data. --- 128.118.0.243 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.227 (128.118.0.227) 56(84) bytes of data. --- 128.118.0.227 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.237 (128.118.0.237) 56(84) bytes of data. --- 128.118.0.237 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.219 (128.118.0.219) 56(84) bytes of data. --- 128.118.0.219 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.235 (128.118.0.235) 56(84) bytes of data. --- 128.118.0.235 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.216 (128.118.0.216) 56(84) bytes of data. PING 128.118.0.233 (128.118.0.233) 56(84) bytes of data. --- 128.118.0.216 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.233 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.230 (128.118.0.230) 56(84) bytes of data. --- 128.118.0.230 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.214 (128.118.0.214) 56(84) bytes of data. --- 128.118.0.214 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.226 (128.118.0.226) 56(84) bytes of data. --- 128.118.0.226 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.211 (128.118.0.211) 56(84) bytes of data. --- 128.118.0.211 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.224 (128.118.0.224) 56(84) bytes of data. --- 128.118.0.224 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.210 (128.118.0.210) 56(84) bytes of data. --- 128.118.0.210 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.218 (128.118.0.218) 56(84) bytes of data. --- 128.118.0.218 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.204 (128.118.0.204) 56(84) bytes of data. --- 128.118.0.204 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.215 (128.118.0.215) 56(84) bytes of data. --- 128.118.0.215 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.200 (128.118.0.200) 56(84) bytes of data. --- 128.118.0.200 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.212 (128.118.0.212) 56(84) bytes of data. --- 128.118.0.212 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.199 (128.118.0.199) 56(84) bytes of data. --- 128.118.0.199 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.208 (128.118.0.208) 56(84) bytes of data. --- 128.118.0.208 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.198 (128.118.0.198) 56(84) bytes of data. --- 128.118.0.198 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.207 (128.118.0.207) 56(84) bytes of data. --- 128.118.0.207 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.194 (128.118.0.194) 56(84) bytes of data. --- 128.118.0.194 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.205 (128.118.0.205) 56(84) bytes of data. --- 128.118.0.205 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.193 (128.118.0.193) 56(84) bytes of data. --- 128.118.0.193 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.202 (128.118.0.202) 56(84) bytes of data. --- 128.118.0.202 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.190 (128.118.0.190) 56(84) bytes of data. --- 128.118.0.190 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.201 (128.118.0.201) 56(84) bytes of data. --- 128.118.0.201 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.187 (128.118.0.187) 56(84) bytes of data. --- 128.118.0.187 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.197 (128.118.0.197) 56(84) bytes of data. --- 128.118.0.197 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.185 (128.118.0.185) 56(84) bytes of data. --- 128.118.0.185 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.196 (128.118.0.196) 56(84) bytes of data. --- 128.118.0.196 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.183 (128.118.0.183) 56(84) bytes of data. --- 128.118.0.183 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.195 (128.118.0.195) 56(84) bytes of data. --- 128.118.0.195 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.181 (128.118.0.181) 56(84) bytes of data. --- 128.118.0.181 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.192 (128.118.0.192) 56(84) bytes of data. --- 128.118.0.192 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.180 (128.118.0.180) 56(84) bytes of data. --- 128.118.0.180 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.191 (128.118.0.191) 56(84) bytes of data. --- 128.118.0.191 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.179 (128.118.0.179) 56(84) bytes of data. --- 128.118.0.179 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.189 (128.118.0.189) 56(84) bytes of data. --- 128.118.0.189 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.178 (128.118.0.178) 56(84) bytes of data. --- 128.118.0.178 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.188 (128.118.0.188) 56(84) bytes of data. --- 128.118.0.188 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.174 (128.118.0.174) 56(84) bytes of data. --- 128.118.0.174 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.186 (128.118.0.186) 56(84) bytes of data. --- 128.118.0.186 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.173 (128.118.0.173) 56(84) bytes of data. --- 128.118.0.173 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.184 (128.118.0.184) 56(84) bytes of data. --- 128.118.0.184 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.139 (128.118.0.139) 56(84) bytes of data. --- 128.118.0.139 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.182 (128.118.0.182) 56(84) bytes of data. --- 128.118.0.182 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.138 (128.118.0.138) 56(84) bytes of data. --- 128.118.0.138 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.177 (128.118.0.177) 56(84) bytes of data. --- 128.118.0.177 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.137 (128.118.0.137) 56(84) bytes of data. --- 128.118.0.137 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.176 (128.118.0.176) 56(84) bytes of data. --- 128.118.0.176 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.134 (128.118.0.134) 56(84) bytes of data. --- 128.118.0.134 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.175 (128.118.0.175) 56(84) bytes of data. --- 128.118.0.175 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.133 (128.118.0.133) 56(84) bytes of data. --- 128.118.0.133 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.172 (128.118.0.172) 56(84) bytes of data. --- 128.118.0.172 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.131 (128.118.0.131) 56(84) bytes of data. --- 128.118.0.131 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.171 (128.118.0.171) 56(84) bytes of data. --- 128.118.0.171 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.127 (128.118.0.127) 56(84) bytes of data. --- 128.118.0.127 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.170 (128.118.0.170) 56(84) bytes of data. --- 128.118.0.170 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.123 (128.118.0.123) 56(84) bytes of data. --- 128.118.0.123 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.169 (128.118.0.169) 56(84) bytes of data. --- 128.118.0.169 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.122 (128.118.0.122) 56(84) bytes of data. --- 128.118.0.122 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.168 (128.118.0.168) 56(84) bytes of data. --- 128.118.0.168 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.121 (128.118.0.121) 56(84) bytes of data. --- 128.118.0.121 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.167 (128.118.0.167) 56(84) bytes of data. --- 128.118.0.167 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.110 (128.118.0.110) 56(84) bytes of data. --- 128.118.0.110 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.166 (128.118.0.166) 56(84) bytes of data. --- 128.118.0.166 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.107 (128.118.0.107) 56(84) bytes of data. --- 128.118.0.107 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.165 (128.118.0.165) 56(84) bytes of data. --- 128.118.0.165 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.101 (128.118.0.101) 56(84) bytes of data. --- 128.118.0.101 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.164 (128.118.0.164) 56(84) bytes of data. --- 128.118.0.164 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.100 (128.118.0.100) 56(84) bytes of data. --- 128.118.0.100 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.163 (128.118.0.163) 56(84) bytes of data. --- 128.118.0.163 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.99 (128.118.0.99) 56(84) bytes of data. --- 128.118.0.99 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.162 (128.118.0.162) 56(84) bytes of data. --- 128.118.0.162 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.97 (128.118.0.97) 56(84) bytes of data. --- 128.118.0.97 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.161 (128.118.0.161) 56(84) bytes of data. --- 128.118.0.161 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.95 (128.118.0.95) 56(84) bytes of data. --- 128.118.0.95 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.160 (128.118.0.160) 56(84) bytes of data. --- 128.118.0.160 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.88 (128.118.0.88) 56(84) bytes of data. --- 128.118.0.88 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.159 (128.118.0.159) 56(84) bytes of data. --- 128.118.0.159 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.86 (128.118.0.86) 56(84) bytes of data. --- 128.118.0.86 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.158 (128.118.0.158) 56(84) bytes of data. --- 128.118.0.158 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.83 (128.118.0.83) 56(84) bytes of data. --- 128.118.0.83 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.157 (128.118.0.157) 56(84) bytes of data. --- 128.118.0.157 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.82 (128.118.0.82) 56(84) bytes of data. --- 128.118.0.82 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.156 (128.118.0.156) 56(84) bytes of data. --- 128.118.0.156 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.81 (128.118.0.81) 56(84) bytes of data. --- 128.118.0.81 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.155 (128.118.0.155) 56(84) bytes of data. --- 128.118.0.155 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.77 (128.118.0.77) 56(84) bytes of data. --- 128.118.0.77 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.154 (128.118.0.154) 56(84) bytes of data. --- 128.118.0.154 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.68 (128.118.0.68) 56(84) bytes of data. --- 128.118.0.68 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.153 (128.118.0.153) 56(84) bytes of data. --- 128.118.0.153 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.63 (128.118.0.63) 56(84) bytes of data. --- 128.118.0.63 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.152 (128.118.0.152) 56(84) bytes of data. --- 128.118.0.152 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.62 (128.118.0.62) 56(84) bytes of data. --- 128.118.0.62 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.151 (128.118.0.151) 56(84) bytes of data. --- 128.118.0.151 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.61 (128.118.0.61) 56(84) bytes of data. --- 128.118.0.61 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.150 (128.118.0.150) 56(84) bytes of data. --- 128.118.0.150 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.60 (128.118.0.60) 56(84) bytes of data. --- 128.118.0.60 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.149 (128.118.0.149) 56(84) bytes of data. --- 128.118.0.149 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.59 (128.118.0.59) 56(84) bytes of data. --- 128.118.0.59 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.148 (128.118.0.148) 56(84) bytes of data. --- 128.118.0.148 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.58 (128.118.0.58) 56(84) bytes of data. --- 128.118.0.58 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.147 (128.118.0.147) 56(84) bytes of data. --- 128.118.0.147 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.56 (128.118.0.56) 56(84) bytes of data. --- 128.118.0.56 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.136 (128.118.0.136) 56(84) bytes of data. --- 128.118.0.136 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.55 (128.118.0.55) 56(84) bytes of data. --- 128.118.0.55 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.135 (128.118.0.135) 56(84) bytes of data. --- 128.118.0.135 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.54 (128.118.0.54) 56(84) bytes of data. --- 128.118.0.54 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.132 (128.118.0.132) 56(84) bytes of data. --- 128.118.0.132 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.53 (128.118.0.53) 56(84) bytes of data. --- 128.118.0.53 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.130 (128.118.0.130) 56(84) bytes of data. --- 128.118.0.130 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.52 (128.118.0.52) 56(84) bytes of data. --- 128.118.0.52 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.128 (128.118.0.128) 56(84) bytes of data. --- 128.118.0.128 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.51 (128.118.0.51) 56(84) bytes of data. --- 128.118.0.51 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.126 (128.118.0.126) 56(84) bytes of data. --- 128.118.0.126 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.124 (128.118.0.124) 56(84) bytes of data. PING 128.118.0.50 (128.118.0.50) 56(84) bytes of data. --- 128.118.0.124 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.50 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.120 (128.118.0.120) 56(84) bytes of data. --- 128.118.0.120 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.49 (128.118.0.49) 56(84) bytes of data. --- 128.118.0.49 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.119 (128.118.0.119) 56(84) bytes of data. --- 128.118.0.119 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.48 (128.118.0.48) 56(84) bytes of data. --- 128.118.0.48 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.118 (128.118.0.118) 56(84) bytes of data. --- 128.118.0.118 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.47 (128.118.0.47) 56(84) bytes of data. --- 128.118.0.47 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.115 (128.118.0.115) 56(84) bytes of data. --- 128.118.0.115 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.45 (128.118.0.45) 56(84) bytes of data. --- 128.118.0.45 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.111 (128.118.0.111) 56(84) bytes of data. --- 128.118.0.111 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.43 (128.118.0.43) 56(84) bytes of data. --- 128.118.0.43 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.109 (128.118.0.109) 56(84) bytes of data. --- 128.118.0.109 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.42 (128.118.0.42) 56(84) bytes of data. --- 128.118.0.42 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.104 (128.118.0.104) 56(84) bytes of data. --- 128.118.0.104 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.41 (128.118.0.41) 56(84) bytes of data. --- 128.118.0.41 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.94 (128.118.0.94) 56(84) bytes of data. --- 128.118.0.94 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.38 (128.118.0.38) 56(84) bytes of data. --- 128.118.0.38 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.90 (128.118.0.90) 56(84) bytes of data. --- 128.118.0.90 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.36 (128.118.0.36) 56(84) bytes of data. --- 128.118.0.36 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.87 (128.118.0.87) 56(84) bytes of data. --- 128.118.0.87 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 7ms PING 128.118.0.34 (128.118.0.34) 56(84) bytes of data. --- 128.118.0.34 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.85 (128.118.0.85) 56(84) bytes of data. --- 128.118.0.85 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.33 (128.118.0.33) 56(84) bytes of data. --- 128.118.0.33 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.84 (128.118.0.84) 56(84) bytes of data. --- 128.118.0.84 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.29 (128.118.0.29) 56(84) bytes of data. --- 128.118.0.29 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.80 (128.118.0.80) 56(84) bytes of data. --- 128.118.0.80 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.28 (128.118.0.28) 56(84) bytes of data. --- 128.118.0.28 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.79 (128.118.0.79) 56(84) bytes of data. --- 128.118.0.79 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.27 (128.118.0.27) 56(84) bytes of data. --- 128.118.0.27 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.78 (128.118.0.78) 56(84) bytes of data. --- 128.118.0.78 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.24 (128.118.0.24) 56(84) bytes of data. --- 128.118.0.24 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.67 (128.118.0.67) 56(84) bytes of data. --- 128.118.0.67 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.23 (128.118.0.23) 56(84) bytes of data. --- 128.118.0.23 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.64 (128.118.0.64) 56(84) bytes of data. --- 128.118.0.64 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.22 (128.118.0.22) 56(84) bytes of data. --- 128.118.0.22 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.57 (128.118.0.57) 56(84) bytes of data. --- 128.118.0.57 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.20 (128.118.0.20) 56(84) bytes of data. --- 128.118.0.20 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.46 (128.118.0.46) 56(84) bytes of data. --- 128.118.0.46 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.18 (128.118.0.18) 56(84) bytes of data. --- 128.118.0.18 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.44 (128.118.0.44) 56(84) bytes of data. --- 128.118.0.44 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.17 (128.118.0.17) 56(84) bytes of data. --- 128.118.0.17 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.40 (128.118.0.40) 56(84) bytes of data. --- 128.118.0.40 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.14 (128.118.0.14) 56(84) bytes of data. --- 128.118.0.14 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.39 (128.118.0.39) 56(84) bytes of data. --- 128.118.0.39 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.13 (128.118.0.13) 56(84) bytes of data. --- 128.118.0.13 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.37 (128.118.0.37) 56(84) bytes of data. --- 128.118.0.37 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.10 (128.118.0.10) 56(84) bytes of data. --- 128.118.0.10 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.35 (128.118.0.35) 56(84) bytes of data. --- 128.118.0.35 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.1 (128.118.0.1) 56(84) bytes of data. --- 128.118.0.1 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.32 (128.118.0.32) 56(84) bytes of data. --- 128.118.0.32 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.231 (128.118.0.231) 56(84) bytes of data. --- 128.118.0.231 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.31 (128.118.0.31) 56(84) bytes of data. --- 128.118.0.31 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.30 (128.118.0.30) 56(84) bytes of data. --- 128.118.0.30 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.26 (128.118.0.26) 56(84) bytes of data. --- 128.118.0.26 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.25 (128.118.0.25) 56(84) bytes of data. --- 128.118.0.25 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.21 (128.118.0.21) 56(84) bytes of data. --- 128.118.0.21 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.19 (128.118.0.19) 56(84) bytes of data. --- 128.118.0.19 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.16 (128.118.0.16) 56(84) bytes of data. --- 128.118.0.16 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.15 (128.118.0.15) 56(84) bytes of data. --- 128.118.0.15 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.12 (128.118.0.12) 56(84) bytes of data. --- 128.118.0.12 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.11 (128.118.0.11) 56(84) bytes of data. --- 128.118.0.11 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.9 (128.118.0.9) 56(84) bytes of data. --- 128.118.0.9 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.8 (128.118.0.8) 56(84) bytes of data. --- 128.118.0.8 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.7 (128.118.0.7) 56(84) bytes of data. --- 128.118.0.7 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.6 (128.118.0.6) 56(84) bytes of data. --- 128.118.0.6 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.5 (128.118.0.5) 56(84) bytes of data. --- 128.118.0.5 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.251 (128.118.0.251) 56(84) bytes of data. --- 128.118.0.251 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.4 (128.118.0.4) 56(84) bytes of data. --- 128.118.0.4 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.3 (128.118.0.3) 56(84) bytes of data. --- 128.118.0.3 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.0 (128.118.0.0) 56(84) bytes of data. --- 128.118.0.0 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.2 (128.118.0.2) 56(84) bytes of data. 64 bytes from 128.118.0.2: icmp_req=1 ttl=241 time=43.8 ms --- 128.118.0.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 43.801/43.801/43.801/0.000 ms PING 128.118.0.65 (128.118.0.65) 56(84) bytes of data. 64 bytes from 128.118.0.65: icmp_req=1 ttl=51 time=28.5 ms --- 128.118.0.65 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.568/28.568/28.568/0.000 ms PING 128.118.0.66 (128.118.0.66) 56(84) bytes of data. 64 bytes from 128.118.0.66: icmp_req=1 ttl=115 time=29.2 ms --- 128.118.0.66 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.289/29.289/29.289/0.000 ms PING 128.118.0.69 (128.118.0.69) 56(84) bytes of data. 64 bytes from 128.118.0.69: icmp_req=1 ttl=51 time=29.9 ms --- 128.118.0.69 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.987/29.987/29.987/0.000 ms PING 128.118.0.70 (128.118.0.70) 56(84) bytes of data. 64 bytes from 128.118.0.70: icmp_req=1 ttl=50 time=33.0 ms --- 128.118.0.70 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 33.057/33.057/33.057/0.000 ms PING 128.118.0.71 (128.118.0.71) 56(84) bytes of data. 64 bytes from 128.118.0.71: icmp_req=1 ttl=51 time=29.5 ms --- 128.118.0.71 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.527/29.527/29.527/0.000 ms PING 128.118.0.72 (128.118.0.72) 56(84) bytes of data. 64 bytes from 128.118.0.72: icmp_req=1 ttl=50 time=28.4 ms --- 128.118.0.72 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.446/28.446/28.446/0.000 ms PING 128.118.0.73 (128.118.0.73) 56(84) bytes of data. 64 bytes from 128.118.0.73: icmp_req=1 ttl=51 time=30.2 ms --- 128.118.0.73 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.291/30.291/30.291/0.000 ms PING 128.118.0.74 (128.118.0.74) 56(84) bytes of data. 64 bytes from 128.118.0.74: icmp_req=1 ttl=50 time=30.3 ms --- 128.118.0.74 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.398/30.398/30.398/0.000 ms PING 128.118.0.75 (128.118.0.75) 56(84) bytes of data. 64 bytes from 128.118.0.75: icmp_req=1 ttl=51 time=30.4 ms --- 128.118.0.75 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.485/30.485/30.485/0.000 ms PING 128.118.0.76 (128.118.0.76) 56(84) bytes of data. 64 bytes from 128.118.0.76: icmp_req=1 ttl=51 time=30.0 ms --- 128.118.0.76 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.021/30.021/30.021/0.000 ms PING 128.118.0.89 (128.118.0.89) 56(84) bytes of data. 64 bytes from 128.118.0.89: icmp_req=1 ttl=114 time=30.3 ms --- 128.118.0.89 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.393/30.393/30.393/0.000 ms PING 128.118.0.91 (128.118.0.91) 56(84) bytes of data. 64 bytes from 128.118.0.91: icmp_req=1 ttl=114 time=38.3 ms --- 128.118.0.91 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 38.327/38.327/38.327/0.000 ms PING 128.118.0.92 (128.118.0.92) 56(84) bytes of data. 64 bytes from 128.118.0.92: icmp_req=1 ttl=114 time=42.4 ms --- 128.118.0.92 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 42.450/42.450/42.450/0.000 ms PING 128.118.0.93 (128.118.0.93) 56(84) bytes of data. 64 bytes from 128.118.0.93: icmp_req=1 ttl=115 time=28.3 ms --- 128.118.0.93 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.370/28.370/28.370/0.000 ms PING 128.118.0.96 (128.118.0.96) 56(84) bytes of data. 64 bytes from 128.118.0.96: icmp_req=1 ttl=115 time=33.1 ms --- 128.118.0.96 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 33.141/33.141/33.141/0.000 ms PING 128.118.0.98 (128.118.0.98) 56(84) bytes of data. 64 bytes from 128.118.0.98: icmp_req=1 ttl=115 time=29.8 ms --- 128.118.0.98 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.856/29.856/29.856/0.000 ms PING 128.118.0.102 (128.118.0.102) 56(84) bytes of data. 64 bytes from 128.118.0.102: icmp_req=1 ttl=114 time=29.2 ms --- 128.118.0.102 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.259/29.259/29.259/0.000 ms PING 128.118.0.103 (128.118.0.103) 56(84) bytes of data. 64 bytes from 128.118.0.103: icmp_req=1 ttl=115 time=27.6 ms --- 128.118.0.103 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 27.624/27.624/27.624/0.000 ms PING 128.118.0.105 (128.118.0.105) 56(84) bytes of data. 64 bytes from 128.118.0.105: icmp_req=1 ttl=115 time=31.1 ms --- 128.118.0.105 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 31.174/31.174/31.174/0.000 ms PING 128.118.0.106 (128.118.0.106) 56(84) bytes of data. 64 bytes from 128.118.0.106: icmp_req=1 ttl=114 time=29.8 ms --- 128.118.0.106 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.803/29.803/29.803/0.000 ms PING 128.118.0.108 (128.118.0.108) 56(84) bytes of data. 64 bytes from 128.118.0.108: icmp_req=1 ttl=115 time=29.7 ms --- 128.118.0.108 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.756/29.756/29.756/0.000 ms PING 128.118.0.112 (128.118.0.112) 56(84) bytes of data. 64 bytes from 128.118.0.112: icmp_req=1 ttl=114 time=30.5 ms --- 128.118.0.112 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.588/30.588/30.588/0.000 ms PING 128.118.0.113 (128.118.0.113) 56(84) bytes of data. 64 bytes from 128.118.0.113: icmp_req=1 ttl=115 time=32.3 ms --- 128.118.0.113 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 32.397/32.397/32.397/0.000 ms PING 128.118.0.114 (128.118.0.114) 56(84) bytes of data. 64 bytes from 128.118.0.114: icmp_req=1 ttl=114 time=29.6 ms --- 128.118.0.114 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.670/29.670/29.670/0.000 ms PING 128.118.0.116 (128.118.0.116) 56(84) bytes of data. 64 bytes from 128.118.0.116: icmp_req=1 ttl=115 time=31.4 ms --- 128.118.0.116 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 31.425/31.425/31.425/0.000 ms PING 128.118.0.117 (128.118.0.117) 56(84) bytes of data. 64 bytes from 128.118.0.117: icmp_req=1 ttl=114 time=28.9 ms --- 128.118.0.117 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.985/28.985/28.985/0.000 ms PING 128.118.0.125 (128.118.0.125) 56(84) bytes of data. 64 bytes from 128.118.0.125: icmp_req=1 ttl=51 time=29.1 ms --- 128.118.0.125 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.152/29.152/29.152/0.000 ms PING 128.118.0.129 (128.118.0.129) 56(84) bytes of data. 64 bytes from 128.118.0.129: icmp_req=1 ttl=51 time=28.6 ms --- 128.118.0.129 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.670/28.670/28.670/0.000 ms PING 128.118.0.140 (128.118.0.140) 56(84) bytes of data. 64 bytes from 128.118.0.140: icmp_req=1 ttl=51 time=29.7 ms --- 128.118.0.140 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.771/29.771/29.771/0.000 ms PING 128.118.0.141 (128.118.0.141) 56(84) bytes of data. 64 bytes from 128.118.0.141: icmp_req=1 ttl=50 time=29.3 ms --- 128.118.0.141 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.367/29.367/29.367/0.000 ms PING 128.118.0.142 (128.118.0.142) 56(84) bytes of data. 64 bytes from 128.118.0.142: icmp_req=1 ttl=51 time=30.2 ms --- 128.118.0.142 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.238/30.238/30.238/0.000 ms PING 128.118.0.143 (128.118.0.143) 56(84) bytes of data. 64 bytes from 128.118.0.143: icmp_req=1 ttl=50 time=28.9 ms --- 128.118.0.143 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.922/28.922/28.922/0.000 ms PING 128.118.0.144 (128.118.0.144) 56(84) bytes of data. 64 bytes from 128.118.0.144: icmp_req=1 ttl=50 time=29.6 ms --- 128.118.0.144 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.687/29.687/29.687/0.000 ms PING 128.118.0.145 (128.118.0.145) 56(84) bytes of data. 64 bytes from 128.118.0.145: icmp_req=1 ttl=51 time=28.8 ms --- 128.118.0.145 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.870/28.870/28.870/0.000 ms PING 128.118.0.146 (128.118.0.146) 56(84) bytes of data. 64 bytes from 128.118.0.146: icmp_req=1 ttl=50 time=30.7 ms --- 128.118.0.146 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.749/30.749/30.749/0.000 ms PING 128.118.0.203 (128.118.0.203) 56(84) bytes of data. 64 bytes from 128.118.0.203: icmp_req=1 ttl=115 time=33.4 ms --- 128.118.0.203 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 33.482/33.482/33.482/0.000 ms PING 128.118.0.206 (128.118.0.206) 56(84) bytes of data. 64 bytes from 128.118.0.206: icmp_req=1 ttl=115 time=29.5 ms --- 128.118.0.206 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.542/29.542/29.542/0.000 ms PING 128.118.0.209 (128.118.0.209) 56(84) bytes of data. 64 bytes from 128.118.0.209: icmp_req=1 ttl=115 time=33.7 ms --- 128.118.0.209 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 33.765/33.765/33.765/0.000 ms PING 128.118.0.213 (128.118.0.213) 56(84) bytes of data. 64 bytes from 128.118.0.213: icmp_req=1 ttl=114 time=29.5 ms --- 128.118.0.213 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.517/29.517/29.517/0.000 ms PING 128.118.0.217 (128.118.0.217) 56(84) bytes of data. 64 bytes from 128.118.0.217: icmp_req=1 ttl=114 time=28.7 ms --- 128.118.0.217 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.722/28.722/28.722/0.000 ms PING 128.118.0.220 (128.118.0.220) 56(84) bytes of data. 64 bytes from 128.118.0.220: icmp_req=1 ttl=114 time=29.0 ms --- 128.118.0.220 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.013/29.013/29.013/0.000 ms PING 128.118.0.221 (128.118.0.221) 56(84) bytes of data. 64 bytes from 128.118.0.221: icmp_req=1 ttl=115 time=29.7 ms --- 128.118.0.221 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.748/29.748/29.748/0.000 ms PING 128.118.0.222 (128.118.0.222) 56(84) bytes of data. 64 bytes from 128.118.0.222: icmp_req=1 ttl=114 time=34.3 ms --- 128.118.0.222 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 34.357/34.357/34.357/0.000 ms PING 128.118.0.223 (128.118.0.223) 56(84) bytes of data. 64 bytes from 128.118.0.223: icmp_req=1 ttl=115 time=28.1 ms --- 128.118.0.223 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.176/28.176/28.176/0.000 ms PING 128.118.0.225 (128.118.0.225) 56(84) bytes of data. 64 bytes from 128.118.0.225: icmp_req=1 ttl=114 time=29.8 ms --- 128.118.0.225 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.813/29.813/29.813/0.000 ms PING 128.118.0.229 (128.118.0.229) 56(84) bytes of data. 64 bytes from 128.118.0.229: icmp_req=1 ttl=115 time=32.5 ms --- 128.118.0.229 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 32.554/32.554/32.554/0.000 ms PING 128.118.0.232 (128.118.0.232) 56(84) bytes of data. 64 bytes from 128.118.0.232: icmp_req=1 ttl=114 time=28.8 ms --- 128.118.0.232 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.822/28.822/28.822/0.000 ms PING 128.118.0.234 (128.118.0.234) 56(84) bytes of data. 64 bytes from 128.118.0.234: icmp_req=1 ttl=114 time=28.3 ms --- 128.118.0.234 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.363/28.363/28.363/0.000 ms PING 128.118.0.236 (128.118.0.236) 56(84) bytes of data. 64 bytes from 128.118.0.236: icmp_req=1 ttl=115 time=29.9 ms --- 128.118.0.236 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.957/29.957/29.957/0.000 ms PING 128.118.0.238 (128.118.0.238) 56(84) bytes of data. 64 bytes from 128.118.0.238: icmp_req=1 ttl=115 time=40.7 ms --- 128.118.0.238 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 40.772/40.772/40.772/0.000 ms PING 128.118.0.240 (128.118.0.240) 56(84) bytes of data. 64 bytes from 128.118.0.240: icmp_req=1 ttl=114 time=28.9 ms --- 128.118.0.240 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.986/28.986/28.986/0.000 ms PING 128.118.0.242 (128.118.0.242) 56(84) bytes of data. 64 bytes from 128.118.0.242: icmp_req=1 ttl=114 time=29.5 ms --- 128.118.0.242 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.560/29.560/29.560/0.000 ms PING 128.118.1.1 (128.118.1.1) 56(84) bytes of data. 64 bytes from 128.118.1.1: icmp_req=1 ttl=243 time=34.1 ms --- 128.118.1.1 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 34.151/34.151/34.151/0.000 ms PING 128.118.1.2 (128.118.1.2) 56(84) bytes of data. 64 bytes from 128.118.1.2: icmp_req=1 ttl=241 time=31.8 ms --- 128.118.1.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 31.883/31.883/31.883/0.000 ms PING 128.118.1.5 (128.118.1.5) 56(84) bytes of data. 64 bytes from 128.118.1.5: icmp_req=1 ttl=242 time=36.2 ms --- 128.118.1.5 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 36.238/36.238/36.238/0.000 ms PING 128.118.1.6 (128.118.1.6) 56(84) bytes of data. 64 bytes from 128.118.1.6: icmp_req=1 ttl=242 time=29.9 ms --- 128.118.1.6 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.932/29.932/29.932/0.000 ms PING 128.118.1.9 (128.118.1.9) 56(84) bytes of data. 64 bytes from 128.118.1.9: icmp_req=1 ttl=242 time=30.1 ms --- 128.118.1.9 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.141/30.141/30.141/0.000 ms PING 128.118.1.10 (128.118.1.10) 56(84) bytes of data. 64 bytes from 128.118.1.10: icmp_req=1 ttl=241 time=34.6 ms --- 128.118.1.10 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 34.608/34.608/34.608/0.000 ms PING 128.118.1.13 (128.118.1.13) 56(84) bytes of data. 64 bytes from 128.118.1.13: icmp_req=1 ttl=242 time=31.4 ms --- 128.118.1.13 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 31.401/31.401/31.401/0.000 ms PING 128.118.1.14 (128.118.1.14) 56(84) bytes of data. 64 bytes from 128.118.1.14: icmp_req=1 ttl=241 time=29.3 ms --- 128.118.1.14 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.311/29.311/29.311/0.000 ms PING 128.118.1.17 (128.118.1.17) 56(84) bytes of data. 64 bytes from 128.118.1.17: icmp_req=1 ttl=243 time=32.6 ms --- 128.118.1.17 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 32.678/32.678/32.678/0.000 ms PING 128.118.1.18 (128.118.1.18) 56(84) bytes of data. 64 bytes from 128.118.1.18: icmp_req=1 ttl=241 time=31.8 ms --- 128.118.1.18 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 31.839/31.839/31.839/0.000 ms PING 128.118.1.41 (128.118.1.41) 56(84) bytes of data. 64 bytes from 128.118.1.41: icmp_req=1 ttl=243 time=30.8 ms --- 128.118.1.41 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.826/30.826/30.826/0.000 ms PING 128.118.1.42 (128.118.1.42) 56(84) bytes of data. 64 bytes from 128.118.1.42: icmp_req=1 ttl=243 time=28.6 ms --- 128.118.1.42 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.687/28.687/28.687/0.000 ms PING 128.118.1.45 (128.118.1.45) 56(84) bytes of data. 64 bytes from 128.118.1.45: icmp_req=1 ttl=242 time=32.8 ms --- 128.118.1.45 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 32.856/32.856/32.856/0.000 ms PING 128.118.1.46 (128.118.1.46) 56(84) bytes of data. 64 bytes from 128.118.1.46: icmp_req=1 ttl=242 time=32.1 ms --- 128.118.1.46 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 32.193/32.193/32.193/0.000 ms PING 128.118.1.49 (128.118.1.49) 56(84) bytes of data. 64 bytes from 128.118.1.49: icmp_req=1 ttl=242 time=30.8 ms --- 128.118.1.49 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.864/30.864/30.864/0.000 ms PING 128.118.1.50 (128.118.1.50) 56(84) bytes of data. 64 bytes from 128.118.1.50: icmp_req=1 ttl=243 time=29.3 ms --- 128.118.1.50 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.384/29.384/29.384/0.000 ms PING 128.118.1.53 (128.118.1.53) 56(84) bytes of data. 64 bytes from 128.118.1.53: icmp_req=1 ttl=242 time=33.8 ms --- 128.118.1.53 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 33.853/33.853/33.853/0.000 ms PING 128.118.1.54 (128.118.1.54) 56(84) bytes of data. 64 bytes from 128.118.1.54: icmp_req=1 ttl=242 time=29.3 ms --- 128.118.1.54 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.384/29.384/29.384/0.000 ms PING 128.118.1.69 (128.118.1.69) 56(84) bytes of data. 64 bytes from 128.118.1.69: icmp_req=1 ttl=243 time=35.4 ms --- 128.118.1.69 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 35.413/35.413/35.413/0.000 ms PING 128.118.1.70 (128.118.1.70) 56(84) bytes of data. 64 bytes from 128.118.1.70: icmp_req=1 ttl=242 time=52.5 ms --- 128.118.1.70 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 52.555/52.555/52.555/0.000 ms PING 128.118.1.129 (128.118.1.129) 56(84) bytes of data. 64 bytes from 128.118.1.129: icmp_req=1 ttl=242 time=33.5 ms --- 128.118.1.129 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 33.546/33.546/33.546/0.000 ms PING 128.118.1.132 (128.118.1.132) 56(84) bytes of data. 64 bytes from 128.118.1.132: icmp_req=1 ttl=39 time=30.7 ms --- 128.118.1.132 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.768/30.768/30.768/0.000 ms PING 128.118.1.133 (128.118.1.133) 56(84) bytes of data. 64 bytes from 128.118.1.133: icmp_req=1 ttl=242 time=28.3 ms --- 128.118.1.133 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.382/28.382/28.382/0.000 ms PING 128.118.1.135 (128.118.1.135) 56(84) bytes of data. 64 bytes from 128.118.1.135: icmp_req=1 ttl=242 time=28.5 ms --- 128.118.1.135 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.572/28.572/28.572/0.000 ms PING 128.118.1.136 (128.118.1.136) 56(84) bytes of data. 64 bytes from 128.118.1.136: icmp_req=1 ttl=51 time=32.1 ms --- 128.118.1.136 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 32.102/32.102/32.102/0.000 ms PING 128.118.1.137 (128.118.1.137) 56(84) bytes of data. 64 bytes from 128.118.1.137: icmp_req=1 ttl=242 time=36.1 ms --- 128.118.1.137 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 36.188/36.188/36.188/0.000 ms PING 128.118.1.138 (128.118.1.138) 56(84) bytes of data. 64 bytes from 128.118.1.138: icmp_req=1 ttl=240 time=28.6 ms --- 128.118.1.138 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.625/28.625/28.625/0.000 ms PING 128.118.1.139 (128.118.1.139) 56(84) bytes of data. From 128.118.1.129 icmp_seq=1 Time to live exceeded --- 128.118.1.139 ping statistics --- 1 packets transmitted, 0 received, +1 errors, 100% packet loss, time 0ms PING 128.118.1.140 (128.118.1.140) 56(84) bytes of data. 64 bytes from 128.118.1.140: icmp_req=1 ttl=49 time=28.2 ms --- 128.118.1.140 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.253/28.253/28.253/0.000 ms PING 128.118.1.141 (128.118.1.141) 56(84) bytes of data. 64 bytes from 128.118.1.141: icmp_req=1 ttl=49 time=39.1 ms --- 128.118.1.141 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 39.184/39.184/39.184/0.000 ms PING 128.118.1.142 (128.118.1.142) 56(84) bytes of data. 64 bytes from 128.118.1.142: icmp_req=1 ttl=51 time=38.9 ms --- 128.118.1.142 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 38.906/38.906/38.906/0.000 ms PING 128.118.1.145 (128.118.1.145) 56(84) bytes of data. 64 bytes from 128.118.1.145: icmp_req=1 ttl=242 time=29.0 ms --- 128.118.1.145 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.048/29.048/29.048/0.000 ms PING 128.118.1.146 (128.118.1.146) 56(84) bytes of data. 64 bytes from 128.118.1.146: icmp_req=1 ttl=241 time=28.0 ms --- 128.118.1.146 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.077/28.077/28.077/0.000 ms PING 128.118.1.147 (128.118.1.147) 56(84) bytes of data. 64 bytes from 128.118.1.147: icmp_req=1 ttl=49 time=30.8 ms --- 128.118.1.147 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.808/30.808/30.808/0.000 ms PING 128.118.1.148 (128.118.1.148) 56(84) bytes of data. 64 bytes from 128.118.1.148: icmp_req=1 ttl=241 time=28.9 ms --- 128.118.1.148 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.919/28.919/28.919/0.000 ms PING 128.118.1.149 (128.118.1.149) 56(84) bytes of data. 64 bytes from 128.118.1.149: icmp_req=1 ttl=241 time=29.0 ms --- 128.118.1.149 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.000/29.000/29.000/0.000 ms PING 128.118.1.157 (128.118.1.157) 56(84) bytes of data. 64 bytes from 128.118.1.157: icmp_req=1 ttl=50 time=35.1 ms --- 128.118.1.157 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 35.156/35.156/35.156/0.000 ms PING 128.118.1.158 (128.118.1.158) 56(84) bytes of data. 64 bytes from 128.118.1.158: icmp_req=1 ttl=50 time=35.0 ms --- 128.118.1.158 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 35.044/35.044/35.044/0.000 ms PING 128.118.1.177 (128.118.1.177) 56(84) bytes of data. 64 bytes from 128.118.1.177: icmp_req=1 ttl=243 time=29.6 ms --- 128.118.1.177 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.683/29.683/29.683/0.000 ms PING 128.118.1.178 (128.118.1.178) 56(84) bytes of data. 64 bytes from 128.118.1.178: icmp_req=1 ttl=51 time=37.7 ms --- 128.118.1.178 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 37.712/37.712/37.712/0.000 ms PING 128.118.1.179 (128.118.1.179) 56(84) bytes of data. 64 bytes from 128.118.1.179: icmp_req=1 ttl=51 time=42.7 ms --- 128.118.1.179 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 42.759/42.759/42.759/0.000 ms PING 128.118.1.180 (128.118.1.180) 56(84) bytes of data. 64 bytes from 128.118.1.180: icmp_req=1 ttl=50 time=32.6 ms --- 128.118.1.180 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 32.633/32.633/32.633/0.000 ms PING 128.118.1.186 (128.118.1.186) 56(84) bytes of data. 64 bytes from 128.118.1.186: icmp_req=1 ttl=50 time=31.5 ms --- 128.118.1.186 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 31.590/31.590/31.590/0.000 ms PING 128.118.1.193 (128.118.1.193) 56(84) bytes of data. 64 bytes from 128.118.1.193: icmp_req=1 ttl=241 time=42.6 ms --- 128.118.1.193 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 42.632/42.632/42.632/0.000 ms PING 128.118.1.196 (128.118.1.196) 56(84) bytes of data. 64 bytes from 128.118.1.196: icmp_req=1 ttl=241 time=28.8 ms --- 128.118.1.196 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.816/28.816/28.816/0.000 ms PING 128.118.1.197 (128.118.1.197) 56(84) bytes of data. 64 bytes from 128.118.1.197: icmp_req=1 ttl=241 time=30.1 ms --- 128.118.1.197 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.197/30.197/30.197/0.000 ms PING 128.118.1.209 (128.118.1.209) 56(84) bytes of data. 64 bytes from 128.118.1.209: icmp_req=1 ttl=241 time=30.9 ms --- 128.118.1.209 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.952/30.952/30.952/0.000 ms PING 128.118.1.225 (128.118.1.225) 56(84) bytes of data. 64 bytes from 128.118.1.225: icmp_req=1 ttl=242 time=74.8 ms --- 128.118.1.225 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 74.824/74.824/74.824/0.000 ms PING 128.118.1.229 (128.118.1.229) 56(84) bytes of data. 64 bytes from 128.118.1.229: icmp_req=1 ttl=241 time=37.5 ms --- 128.118.1.229 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 37.509/37.509/37.509/0.000 ms PING 128.118.1.230 (128.118.1.230) 56(84) bytes of data. 64 bytes from 128.118.1.230: icmp_req=1 ttl=241 time=34.7 ms --- 128.118.1.230 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 34.721/34.721/34.721/0.000 ms PING 128.118.1.235 (128.118.1.235) 56(84) bytes of data. 64 bytes from 128.118.1.235: icmp_req=1 ttl=241 time=34.4 ms --- 128.118.1.235 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 34.453/34.453/34.453/0.000 ms PING 128.118.1.241 (128.118.1.241) 56(84) bytes of data. 64 bytes from 128.118.1.241: icmp_req=1 ttl=242 time=27.8 ms --- 128.118.1.241 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 27.825/27.825/27.825/0.000 ms PING 128.118.1.243 (128.118.1.243) 56(84) bytes of data. 64 bytes from 128.118.1.243: icmp_req=1 ttl=51 time=28.6 ms --- 128.118.1.243 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.608/28.608/28.608/0.000 ms PING 128.118.1.247 (128.118.1.247) 56(84) bytes of data. 64 bytes from 128.118.1.247: icmp_req=1 ttl=51 time=28.5 ms --- 128.118.1.247 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.536/28.536/28.536/0.000 ms PING 128.118.1.248 (128.118.1.248) 56(84) bytes of data. 64 bytes from 128.118.1.248: icmp_req=1 ttl=50 time=31.7 ms --- 128.118.1.248 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 31.743/31.743/31.743/0.000 ms PING 128.118.1.249 (128.118.1.249) 56(84) bytes of data. 64 bytes from 128.118.1.249: icmp_req=1 ttl=51 time=30.1 ms --- 128.118.1.249 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.107/30.107/30.107/0.000 ms PING 128.118.1.250 (128.118.1.250) 56(84) bytes of data. 64 bytes from 128.118.1.250: icmp_req=1 ttl=50 time=29.0 ms --- 128.118.1.250 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.037/29.037/29.037/0.000 ms PING 128.118.1.251 (128.118.1.251) 56(84) bytes of data. 64 bytes from 128.118.1.251: icmp_req=1 ttl=50 time=32.9 ms --- 128.118.1.251 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 32.970/32.970/32.970/0.000 ms PING 128.118.1.252 (128.118.1.252) 56(84) bytes of data. 64 bytes from 128.118.1.252: icmp_req=1 ttl=50 time=29.3 ms --- 128.118.1.252 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.391/29.391/29.391/0.000 ms PING 128.118.2.1 (128.118.2.1) 56(84) bytes of data. 64 bytes from 128.118.2.1: icmp_req=1 ttl=242 time=29.5 ms --- 128.118.2.1 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.549/29.549/29.549/0.000 ms PING 128.118.2.3 (128.118.2.3) 56(84) bytes of data. 64 bytes from 128.118.2.3: icmp_req=1 ttl=241 time=28.9 ms --- 128.118.2.3 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.963/28.963/28.963/0.000 ms PING 128.118.2.4 (128.118.2.4) 56(84) bytes of data. 64 bytes from 128.118.2.4: icmp_req=1 ttl=114 time=41.7 ms --- 128.118.2.4 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 41.701/41.701/41.701/0.000 ms PING 128.118.2.6 (128.118.2.6) 56(84) bytes of data. 64 bytes from 128.118.2.6: icmp_req=1 ttl=242 time=27.9 ms --- 128.118.2.6 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 27.951/27.951/27.951/0.000 ms PING 128.118.2.8 (128.118.2.8) 56(84) bytes of data. 64 bytes from 128.118.2.8: icmp_req=1 ttl=242 time=29.3 ms --- 128.118.2.8 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.335/29.335/29.335/0.000 ms PING 128.118.2.13 (128.118.2.13) 56(84) bytes of data. 64 bytes from 128.118.2.13: icmp_req=1 ttl=51 time=29.9 ms --- 128.118.2.13 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.957/29.957/29.957/0.000 ms PING 128.118.2.14 (128.118.2.14) 56(84) bytes of data. 64 bytes from 128.118.2.14: icmp_req=1 ttl=49 time=29.3 ms --- 128.118.2.14 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.362/29.362/29.362/0.000 ms PING 128.118.2.16 (128.118.2.16) 56(84) bytes of data. 64 bytes from 128.118.2.16: icmp_req=1 ttl=50 time=30.4 ms --- 128.118.2.16 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.467/30.467/30.467/0.000 ms PING 128.118.2.17 (128.118.2.17) 56(84) bytes of data. 64 bytes from 128.118.2.17: icmp_req=1 ttl=51 time=35.5 ms --- 128.118.2.17 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 35.540/35.540/35.540/0.000 ms PING 128.118.2.18 (128.118.2.18) 56(84) bytes of data. 64 bytes from 128.118.2.18: icmp_req=1 ttl=49 time=29.6 ms --- 128.118.2.18 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.607/29.607/29.607/0.000 ms PING 128.118.2.19 (128.118.2.19) 56(84) bytes of data. 64 bytes from 128.118.2.19: icmp_req=1 ttl=39 time=30.9 ms --- 128.118.2.19 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.943/30.943/30.943/0.000 ms PING 128.118.2.20 (128.118.2.20) 56(84) bytes of data. 64 bytes from 128.118.2.20: icmp_req=1 ttl=115 time=28.7 ms --- 128.118.2.20 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.718/28.718/28.718/0.000 ms PING 128.118.2.21 (128.118.2.21) 56(84) bytes of data. 64 bytes from 128.118.2.21: icmp_req=1 ttl=242 time=29.9 ms --- 128.118.2.21 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.956/29.956/29.956/0.000 ms PING 128.118.2.22 (128.118.2.22) 56(84) bytes of data. 64 bytes from 128.118.2.22: icmp_req=1 ttl=243 time=31.6 ms --- 128.118.2.22 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 31.621/31.621/31.621/0.000 ms PING 128.118.2.23 (128.118.2.23) 56(84) bytes of data. 64 bytes from 128.118.2.23: icmp_req=1 ttl=50 time=31.5 ms --- 128.118.2.23 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 31.552/31.552/31.552/0.000 ms PING 128.118.2.24 (128.118.2.24) 56(84) bytes of data. 64 bytes from 128.118.2.24: icmp_req=1 ttl=242 time=38.5 ms --- 128.118.2.24 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 38.527/38.527/38.527/0.000 ms PING 128.118.2.25 (128.118.2.25) 56(84) bytes of data. 64 bytes from 128.118.2.25: icmp_req=1 ttl=242 time=30.5 ms --- 128.118.2.25 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.576/30.576/30.576/0.000 ms PING 128.118.2.26 (128.118.2.26) 56(84) bytes of data. 64 bytes from 128.118.2.26: icmp_req=1 ttl=50 time=28.4 ms --- 128.118.2.26 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.470/28.470/28.470/0.000 ms PING 128.118.2.27 (128.118.2.27) 56(84) bytes of data. 64 bytes from 128.118.2.27: icmp_req=1 ttl=243 time=29.2 ms --- 128.118.2.27 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.263/29.263/29.263/0.000 ms PING 128.118.2.29 (128.118.2.29) 56(84) bytes of data. 64 bytes from 128.118.2.29: icmp_req=1 ttl=50 time=28.3 ms --- 128.118.2.29 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.378/28.378/28.378/0.000 ms PING 128.118.2.30 (128.118.2.30) 56(84) bytes of data. 64 bytes from 128.118.2.30: icmp_req=1 ttl=49 time=29.5 ms --- 128.118.2.30 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.529/29.529/29.529/0.000 ms PING 128.118.2.31 (128.118.2.31) 56(84) bytes of data. 64 bytes from 128.118.2.31: icmp_req=1 ttl=50 time=30.8 ms --- 128.118.2.31 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.820/30.820/30.820/0.000 ms PING 128.118.2.32 (128.118.2.32) 56(84) bytes of data. 64 bytes from 128.118.2.32: icmp_req=1 ttl=115 time=29.8 ms --- 128.118.2.32 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.889/29.889/29.889/0.000 ms PING 128.118.2.33 (128.118.2.33) 56(84) bytes of data. 64 bytes from 128.118.2.33: icmp_req=1 ttl=51 time=32.1 ms --- 128.118.2.33 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 32.152/32.152/32.152/0.000 ms PING 128.118.2.35 (128.118.2.35) 56(84) bytes of data. 64 bytes from 128.118.2.35: icmp_req=1 ttl=50 time=28.6 ms --- 128.118.2.35 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.627/28.627/28.627/0.000 ms PING 128.118.2.39 (128.118.2.39) 56(84) bytes of data. 64 bytes from 128.118.2.39: icmp_req=1 ttl=114 time=29.7 ms --- 128.118.2.39 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.736/29.736/29.736/0.000 ms PING 128.118.2.42 (128.118.2.42) 56(84) bytes of data. 64 bytes from 128.118.2.42: icmp_req=1 ttl=49 time=30.5 ms --- 128.118.2.42 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.526/30.526/30.526/0.000 ms PING 128.118.2.43 (128.118.2.43) 56(84) bytes of data. 64 bytes from 128.118.2.43: icmp_req=1 ttl=241 time=30.5 ms --- 128.118.2.43 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.547/30.547/30.547/0.000 ms PING 128.118.2.44 (128.118.2.44) 56(84) bytes of data. 64 bytes from 128.118.2.44: icmp_req=1 ttl=38 time=28.7 ms --- 128.118.2.44 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.775/28.775/28.775/0.000 ms PING 128.118.2.45 (128.118.2.45) 56(84) bytes of data. 64 bytes from 128.118.2.45: icmp_req=1 ttl=50 time=32.0 ms --- 128.118.2.45 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 32.065/32.065/32.065/0.000 ms PING 128.118.2.46 (128.118.2.46) 56(84) bytes of data. 64 bytes from 128.118.2.46: icmp_req=1 ttl=50 time=29.5 ms --- 128.118.2.46 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.574/29.574/29.574/0.000 ms PING 128.118.2.47 (128.118.2.47) 56(84) bytes of data. 64 bytes from 128.118.2.47: icmp_req=1 ttl=51 time=29.8 ms --- 128.118.2.47 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.888/29.888/29.888/0.000 ms PING 128.118.2.48 (128.118.2.48) 56(84) bytes of data. 64 bytes from 128.118.2.48: icmp_req=1 ttl=49 time=28.9 ms --- 128.118.2.48 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.970/28.970/28.970/0.000 ms PING 128.118.2.49 (128.118.2.49) 56(84) bytes of data. 64 bytes from 128.118.2.49: icmp_req=1 ttl=49 time=29.6 ms --- 128.118.2.49 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.624/29.624/29.624/0.000 ms PING 128.118.2.50 (128.118.2.50) 56(84) bytes of data. 64 bytes from 128.118.2.50: icmp_req=1 ttl=49 time=29.6 ms --- 128.118.2.50 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.689/29.689/29.689/0.000 ms PING 128.118.2.51 (128.118.2.51) 56(84) bytes of data. 64 bytes from 128.118.2.51: icmp_req=1 ttl=50 time=29.6 ms --- 128.118.2.51 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.687/29.687/29.687/0.000 ms PING 128.118.2.52 (128.118.2.52) 56(84) bytes of data. 64 bytes from 128.118.2.52: icmp_req=1 ttl=50 time=29.9 ms --- 128.118.2.52 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.914/29.914/29.914/0.000 ms PING 128.118.2.53 (128.118.2.53) 56(84) bytes of data. 64 bytes from 128.118.2.53: icmp_req=1 ttl=50 time=29.5 ms --- 128.118.2.53 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.569/29.569/29.569/0.000 ms PING 128.118.2.54 (128.118.2.54) 56(84) bytes of data. 64 bytes from 128.118.2.54: icmp_req=1 ttl=50 time=30.2 ms --- 128.118.2.54 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.269/30.269/30.269/0.000 ms PING 128.118.2.57 (128.118.2.57) 56(84) bytes of data. 64 bytes from 128.118.2.57: icmp_req=1 ttl=39 time=29.8 ms --- 128.118.2.57 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.806/29.806/29.806/0.000 ms PING 128.118.2.62 (128.118.2.62) 56(84) bytes of data. 64 bytes from 128.118.2.62: icmp_req=1 ttl=50 time=29.5 ms --- 128.118.2.62 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.533/29.533/29.533/0.000 ms PING 128.118.2.64 (128.118.2.64) 56(84) bytes of data. 64 bytes from 128.118.2.64: icmp_req=1 ttl=49 time=28.1 ms --- 128.118.2.64 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.182/28.182/28.182/0.000 ms PING 128.118.2.65 (128.118.2.65) 56(84) bytes of data. 64 bytes from 128.118.2.65: icmp_req=1 ttl=38 time=28.8 ms --- 128.118.2.65 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.870/28.870/28.870/0.000 ms PING 128.118.2.68 (128.118.2.68) 56(84) bytes of data. 64 bytes from 128.118.2.68: icmp_req=1 ttl=50 time=29.1 ms --- 128.118.2.68 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.175/29.175/29.175/0.000 ms PING 128.118.2.69 (128.118.2.69) 56(84) bytes of data. 64 bytes from 128.118.2.69: icmp_req=1 ttl=50 time=30.3 ms --- 128.118.2.69 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.394/30.394/30.394/0.000 ms PING 128.118.2.70 (128.118.2.70) 56(84) bytes of data. 64 bytes from 128.118.2.70: icmp_req=1 ttl=114 time=29.1 ms --- 128.118.2.70 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.110/29.110/29.110/0.000 ms PING 128.118.2.71 (128.118.2.71) 56(84) bytes of data. 64 bytes from 128.118.2.71: icmp_req=1 ttl=50 time=29.1 ms --- 128.118.2.71 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.148/29.148/29.148/0.000 ms PING 128.118.2.72 (128.118.2.72) 56(84) bytes of data. 64 bytes from 128.118.2.72: icmp_req=1 ttl=39 time=31.0 ms --- 128.118.2.72 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 31.060/31.060/31.060/0.000 ms PING 128.118.2.73 (128.118.2.73) 56(84) bytes of data. 64 bytes from 128.118.2.73: icmp_req=1 ttl=50 time=31.1 ms --- 128.118.2.73 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 31.126/31.126/31.126/0.000 ms PING 128.118.2.75 (128.118.2.75) 56(84) bytes of data. 64 bytes from 128.118.2.75: icmp_req=1 ttl=241 time=43.7 ms --- 128.118.2.75 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 43.769/43.769/43.769/0.000 ms PING 128.118.2.76 (128.118.2.76) 56(84) bytes of data. 64 bytes from 128.118.2.76: icmp_req=1 ttl=241 time=32.0 ms --- 128.118.2.76 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 32.001/32.001/32.001/0.000 ms PING 128.118.2.77 (128.118.2.77) 56(84) bytes of data. 64 bytes from 128.118.2.77: icmp_req=1 ttl=241 time=32.6 ms --- 128.118.2.77 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 32.623/32.623/32.623/0.000 ms PING 128.118.2.78 (128.118.2.78) 56(84) bytes of data. 64 bytes from 128.118.2.78: icmp_req=1 ttl=39 time=29.5 ms --- 128.118.2.78 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.558/29.558/29.558/0.000 ms PING 128.118.2.79 (128.118.2.79) 56(84) bytes of data. 64 bytes from 128.118.2.79: icmp_req=1 ttl=50 time=29.5 ms --- 128.118.2.79 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.534/29.534/29.534/0.000 ms PING 128.118.2.85 (128.118.2.85) 56(84) bytes of data. 64 bytes from 128.118.2.85: icmp_req=1 ttl=242 time=29.7 ms --- 128.118.2.85 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.708/29.708/29.708/0.000 ms PING 128.118.2.88 (128.118.2.88) 56(84) bytes of data. 64 bytes from 128.118.2.88: icmp_req=1 ttl=242 time=30.5 ms --- 128.118.2.88 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.598/30.598/30.598/0.000 ms PING 128.118.2.89 (128.118.2.89) 56(84) bytes of data. 64 bytes from 128.118.2.89: icmp_req=1 ttl=51 time=29.8 ms --- 128.118.2.89 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.888/29.888/29.888/0.000 ms PING 128.118.2.93 (128.118.2.93) 56(84) bytes of data. 64 bytes from 128.118.2.93: icmp_req=1 ttl=114 time=28.9 ms --- 128.118.2.93 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.903/28.903/28.903/0.000 ms PING 128.118.2.96 (128.118.2.96) 56(84) bytes of data. 64 bytes from 128.118.2.96: icmp_req=1 ttl=51 time=30.2 ms --- 128.118.2.96 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.205/30.205/30.205/0.000 ms PING 128.118.2.100 (128.118.2.100) 56(84) bytes of data. 64 bytes from 128.118.2.100: icmp_req=1 ttl=242 time=29.5 ms --- 128.118.2.100 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.532/29.532/29.532/0.000 ms PING 128.118.2.101 (128.118.2.101) 56(84) bytes of data. 64 bytes from 128.118.2.101: icmp_req=1 ttl=242 time=32.7 ms --- 128.118.2.101 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 32.743/32.743/32.743/0.000 ms PING 128.118.2.102 (128.118.2.102) 56(84) bytes of data. 64 bytes from 128.118.2.102: icmp_req=1 ttl=50 time=35.5 ms --- 128.118.2.102 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 35.512/35.512/35.512/0.000 ms PING 128.118.2.103 (128.118.2.103) 56(84) bytes of data. 64 bytes from 128.118.2.103: icmp_req=1 ttl=50 time=29.9 ms --- 128.118.2.103 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.919/29.919/29.919/0.000 ms PING 128.118.2.104 (128.118.2.104) 56(84) bytes of data. 64 bytes from 128.118.2.104: icmp_req=1 ttl=49 time=28.9 ms --- 128.118.2.104 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.934/28.934/28.934/0.000 ms PING 128.118.2.105 (128.118.2.105) 56(84) bytes of data. 64 bytes from 128.118.2.105: icmp_req=1 ttl=38 time=32.6 ms --- 128.118.2.105 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 32.602/32.602/32.602/0.000 ms PING 128.118.2.108 (128.118.2.108) 56(84) bytes of data. 64 bytes from 128.118.2.108: icmp_req=1 ttl=242 time=34.1 ms --- 128.118.2.108 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 34.126/34.126/34.126/0.000 ms PING 128.118.2.109 (128.118.2.109) 56(84) bytes of data. 64 bytes from 128.118.2.109: icmp_req=1 ttl=242 time=32.6 ms --- 128.118.2.109 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 32.611/32.611/32.611/0.000 ms PING 128.118.2.110 (128.118.2.110) 56(84) bytes of data. 64 bytes from 128.118.2.110: icmp_req=1 ttl=241 time=30.5 ms --- 128.118.2.110 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.512/30.512/30.512/0.000 ms PING 128.118.2.111 (128.118.2.111) 56(84) bytes of data. 64 bytes from 128.118.2.111: icmp_req=1 ttl=49 time=29.8 ms --- 128.118.2.111 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.837/29.837/29.837/0.000 ms PING 128.118.2.115 (128.118.2.115) 56(84) bytes of data. 64 bytes from 128.118.2.115: icmp_req=1 ttl=49 time=29.3 ms --- 128.118.2.115 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.326/29.326/29.326/0.000 ms PING 128.118.2.116 (128.118.2.116) 56(84) bytes of data. 64 bytes from 128.118.2.116: icmp_req=1 ttl=50 time=28.9 ms --- 128.118.2.116 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.944/28.944/28.944/0.000 ms PING 128.118.2.118 (128.118.2.118) 56(84) bytes of data. 64 bytes from 128.118.2.118: icmp_req=1 ttl=49 time=30.0 ms --- 128.118.2.118 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.024/30.024/30.024/0.000 ms PING 128.118.2.119 (128.118.2.119) 56(84) bytes of data. 64 bytes from 128.118.2.119: icmp_req=1 ttl=50 time=35.9 ms --- 128.118.2.119 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 35.924/35.924/35.924/0.000 ms PING 128.118.2.120 (128.118.2.120) 56(84) bytes of data. 64 bytes from 128.118.2.120: icmp_req=1 ttl=38 time=28.1 ms --- 128.118.2.120 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.129/28.129/28.129/0.000 ms PING 128.118.2.121 (128.118.2.121) 56(84) bytes of data. 64 bytes from 128.118.2.121: icmp_req=1 ttl=38 time=29.0 ms --- 128.118.2.121 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.067/29.067/29.067/0.000 ms PING 128.118.2.122 (128.118.2.122) 56(84) bytes of data. 64 bytes from 128.118.2.122: icmp_req=1 ttl=51 time=28.5 ms --- 128.118.2.122 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.595/28.595/28.595/0.000 ms PING 128.118.2.124 (128.118.2.124) 56(84) bytes of data. 64 bytes from 128.118.2.124: icmp_req=1 ttl=51 time=28.6 ms --- 128.118.2.124 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.675/28.675/28.675/0.000 ms PING 128.118.2.125 (128.118.2.125) 56(84) bytes of data. 64 bytes from 128.118.2.125: icmp_req=1 ttl=243 time=29.6 ms --- 128.118.2.125 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.613/29.613/29.613/0.000 ms PING 128.118.2.127 (128.118.2.127) 56(84) bytes of data. 64 bytes from 128.118.2.127: icmp_req=1 ttl=243 time=29.4 ms --- 128.118.2.127 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.419/29.419/29.419/0.000 ms PING 128.118.2.129 (128.118.2.129) 56(84) bytes of data. 64 bytes from 128.118.2.129: icmp_req=1 ttl=49 time=34.9 ms --- 128.118.2.129 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 34.912/34.912/34.912/0.000 ms PING 128.118.2.130 (128.118.2.130) 56(84) bytes of data. 64 bytes from 128.118.2.130: icmp_req=1 ttl=39 time=30.9 ms --- 128.118.2.130 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.973/30.973/30.973/0.000 ms PING 128.118.2.131 (128.118.2.131) 56(84) bytes of data. 64 bytes from 128.118.2.131: icmp_req=1 ttl=243 time=31.4 ms --- 128.118.2.131 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 31.469/31.469/31.469/0.000 ms PING 128.118.2.132 (128.118.2.132) 56(84) bytes of data. 64 bytes from 128.118.2.132: icmp_req=1 ttl=51 time=29.8 ms --- 128.118.2.132 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.820/29.820/29.820/0.000 ms PING 128.118.2.133 (128.118.2.133) 56(84) bytes of data. 64 bytes from 128.118.2.133: icmp_req=1 ttl=49 time=37.2 ms --- 128.118.2.133 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 37.294/37.294/37.294/0.000 ms PING 128.118.2.134 (128.118.2.134) 56(84) bytes of data. 64 bytes from 128.118.2.134: icmp_req=1 ttl=49 time=29.5 ms --- 128.118.2.134 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.541/29.541/29.541/0.000 ms PING 128.118.2.136 (128.118.2.136) 56(84) bytes of data. 64 bytes from 128.118.2.136: icmp_req=1 ttl=39 time=29.8 ms --- 128.118.2.136 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.874/29.874/29.874/0.000 ms PING 128.118.2.139 (128.118.2.139) 56(84) bytes of data. 64 bytes from 128.118.2.139: icmp_req=1 ttl=50 time=31.9 ms --- 128.118.2.139 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 31.984/31.984/31.984/0.000 ms PING 128.118.2.141 (128.118.2.141) 56(84) bytes of data. 64 bytes from 128.118.2.141: icmp_req=1 ttl=242 time=30.4 ms --- 128.118.2.141 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.482/30.482/30.482/0.000 ms PING 128.118.2.142 (128.118.2.142) 56(84) bytes of data. 64 bytes from 128.118.2.142: icmp_req=1 ttl=39 time=33.9 ms --- 128.118.2.142 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 33.993/33.993/33.993/0.000 ms PING 128.118.2.143 (128.118.2.143) 56(84) bytes of data. 64 bytes from 128.118.2.143: icmp_req=1 ttl=242 time=30.9 ms --- 128.118.2.143 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 1ms rtt min/avg/max/mdev = 30.978/30.978/30.978/0.000 ms PING 128.118.2.145 (128.118.2.145) 56(84) bytes of data. 64 bytes from 128.118.2.145: icmp_req=1 ttl=50 time=28.7 ms --- 128.118.2.145 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.775/28.775/28.775/0.000 ms PING 128.118.2.148 (128.118.2.148) 56(84) bytes of data. 64 bytes from 128.118.2.148: icmp_req=1 ttl=51 time=29.2 ms --- 128.118.2.148 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.282/29.282/29.282/0.000 ms PING 128.118.2.150 (128.118.2.150) 56(84) bytes of data. From 128.118.1.9 icmp_seq=1 Time to live exceeded --- 128.118.2.150 ping statistics --- 1 packets transmitted, 0 received, +1 errors, 100% packet loss, time 0ms PING 128.118.2.154 (128.118.2.154) 56(84) bytes of data. 64 bytes from 128.118.2.154: icmp_req=1 ttl=49 time=28.5 ms --- 128.118.2.154 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.541/28.541/28.541/0.000 ms PING 128.118.2.159 (128.118.2.159) 56(84) bytes of data. 64 bytes from 128.118.2.159: icmp_req=1 ttl=242 time=28.3 ms --- 128.118.2.159 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.390/28.390/28.390/0.000 ms PING 128.118.2.161 (128.118.2.161) 56(84) bytes of data. 64 bytes from 128.118.2.161: icmp_req=1 ttl=51 time=32.1 ms --- 128.118.2.161 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 32.191/32.191/32.191/0.000 ms PING 128.118.2.162 (128.118.2.162) 56(84) bytes of data. 64 bytes from 128.118.2.162: icmp_req=1 ttl=50 time=37.2 ms --- 128.118.2.162 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 37.290/37.290/37.290/0.000 ms PING 128.118.2.166 (128.118.2.166) 56(84) bytes of data. 64 bytes from 128.118.2.166: icmp_req=1 ttl=49 time=30.1 ms --- 128.118.2.166 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.188/30.188/30.188/0.000 ms PING 128.118.2.167 (128.118.2.167) 56(84) bytes of data. 64 bytes from 128.118.2.167: icmp_req=1 ttl=50 time=31.5 ms --- 128.118.2.167 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 31.578/31.578/31.578/0.000 ms PING 128.118.2.169 (128.118.2.169) 56(84) bytes of data. 64 bytes from 128.118.2.169: icmp_req=1 ttl=50 time=30.6 ms --- 128.118.2.169 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.603/30.603/30.603/0.000 ms PING 128.118.2.172 (128.118.2.172) 56(84) bytes of data. 64 bytes from 128.118.2.172: icmp_req=1 ttl=241 time=28.8 ms --- 128.118.2.172 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.827/28.827/28.827/0.000 ms PING 128.118.2.173 (128.118.2.173) 56(84) bytes of data. 64 bytes from 128.118.2.173: icmp_req=1 ttl=49 time=30.8 ms --- 128.118.2.173 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.894/30.894/30.894/0.000 ms PING 128.118.2.174 (128.118.2.174) 56(84) bytes of data. 64 bytes from 128.118.2.174: icmp_req=1 ttl=241 time=32.7 ms --- 128.118.2.174 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 32.731/32.731/32.731/0.000 ms PING 128.118.2.176 (128.118.2.176) 56(84) bytes of data. 64 bytes from 128.118.2.176: icmp_req=1 ttl=242 time=29.0 ms --- 128.118.2.176 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.025/29.025/29.025/0.000 ms PING 128.118.2.178 (128.118.2.178) 56(84) bytes of data. 64 bytes from 128.118.2.178: icmp_req=1 ttl=50 time=35.7 ms --- 128.118.2.178 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 35.773/35.773/35.773/0.000 ms PING 128.118.2.179 (128.118.2.179) 56(84) bytes of data. 64 bytes from 128.118.2.179: icmp_req=1 ttl=241 time=30.7 ms --- 128.118.2.179 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.761/30.761/30.761/0.000 ms PING 128.118.2.183 (128.118.2.183) 56(84) bytes of data. 64 bytes from 128.118.2.183: icmp_req=1 ttl=49 time=35.9 ms --- 128.118.2.183 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 35.950/35.950/35.950/0.000 ms PING 128.118.2.184 (128.118.2.184) 56(84) bytes of data. 64 bytes from 128.118.2.184: icmp_req=1 ttl=51 time=28.4 ms --- 128.118.2.184 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.483/28.483/28.483/0.000 ms PING 128.118.2.185 (128.118.2.185) 56(84) bytes of data. 64 bytes from 128.118.2.185: icmp_req=1 ttl=51 time=28.9 ms --- 128.118.2.185 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.998/28.998/28.998/0.000 ms PING 128.118.2.186 (128.118.2.186) 56(84) bytes of data. 64 bytes from 128.118.2.186: icmp_req=1 ttl=242 time=30.5 ms --- 128.118.2.186 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.552/30.552/30.552/0.000 ms PING 128.118.2.187 (128.118.2.187) 56(84) bytes of data. 64 bytes from 128.118.2.187: icmp_req=1 ttl=50 time=28.7 ms --- 128.118.2.187 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.722/28.722/28.722/0.000 ms PING 128.118.2.188 (128.118.2.188) 56(84) bytes of data. 64 bytes from 128.118.2.188: icmp_req=1 ttl=51 time=30.5 ms --- 128.118.2.188 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.501/30.501/30.501/0.000 ms PING 128.118.2.191 (128.118.2.191) 56(84) bytes of data. 64 bytes from 128.118.2.191: icmp_req=1 ttl=50 time=29.4 ms --- 128.118.2.191 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.413/29.413/29.413/0.000 ms PING 128.118.2.192 (128.118.2.192) 56(84) bytes of data. 64 bytes from 128.118.2.192: icmp_req=1 ttl=50 time=28.7 ms --- 128.118.2.192 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.791/28.791/28.791/0.000 ms PING 128.118.2.195 (128.118.2.195) 56(84) bytes of data. 64 bytes from 128.118.2.195: icmp_req=1 ttl=241 time=30.9 ms --- 128.118.2.195 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.931/30.931/30.931/0.000 ms PING 128.118.2.196 (128.118.2.196) 56(84) bytes of data. 64 bytes from 128.118.2.196: icmp_req=1 ttl=50 time=32.9 ms --- 128.118.2.196 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 32.968/32.968/32.968/0.000 ms PING 128.118.2.197 (128.118.2.197) 56(84) bytes of data. 64 bytes from 128.118.2.197: icmp_req=1 ttl=242 time=30.0 ms --- 128.118.2.197 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.011/30.011/30.011/0.000 ms PING 128.118.2.199 (128.118.2.199) 56(84) bytes of data. 64 bytes from 128.118.2.199: icmp_req=1 ttl=49 time=29.9 ms --- 128.118.2.199 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.976/29.976/29.976/0.000 ms PING 128.118.2.200 (128.118.2.200) 56(84) bytes of data. 64 bytes from 128.118.2.200: icmp_req=1 ttl=50 time=29.1 ms --- 128.118.2.200 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.177/29.177/29.177/0.000 ms PING 128.118.2.202 (128.118.2.202) 56(84) bytes of data. 64 bytes from 128.118.2.202: icmp_req=1 ttl=243 time=30.1 ms --- 128.118.2.202 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.146/30.146/30.146/0.000 ms PING 128.118.2.206 (128.118.2.206) 56(84) bytes of data. 64 bytes from 128.118.2.206: icmp_req=1 ttl=51 time=36.7 ms --- 128.118.2.206 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 36.757/36.757/36.757/0.000 ms PING 128.118.2.207 (128.118.2.207) 56(84) bytes of data. 64 bytes from 128.118.2.207: icmp_req=1 ttl=39 time=29.4 ms --- 128.118.2.207 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.419/29.419/29.419/0.000 ms PING 128.118.2.210 (128.118.2.210) 56(84) bytes of data. 64 bytes from 128.118.2.210: icmp_req=1 ttl=50 time=29.1 ms --- 128.118.2.210 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.115/29.115/29.115/0.000 ms PING 128.118.2.211 (128.118.2.211) 56(84) bytes of data. 64 bytes from 128.118.2.211: icmp_req=1 ttl=50 time=29.2 ms --- 128.118.2.211 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.270/29.270/29.270/0.000 ms PING 128.118.2.218 (128.118.2.218) 56(84) bytes of data. 64 bytes from 128.118.2.218: icmp_req=1 ttl=49 time=28.6 ms --- 128.118.2.218 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.633/28.633/28.633/0.000 ms PING 128.118.2.219 (128.118.2.219) 56(84) bytes of data. 64 bytes from 128.118.2.219: icmp_req=1 ttl=49 time=29.1 ms --- 128.118.2.219 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.133/29.133/29.133/0.000 ms PING 128.118.2.222 (128.118.2.222) 56(84) bytes of data. 64 bytes from 128.118.2.222: icmp_req=1 ttl=49 time=28.8 ms --- 128.118.2.222 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.819/28.819/28.819/0.000 ms PING 128.118.2.225 (128.118.2.225) 56(84) bytes of data. 64 bytes from 128.118.2.225: icmp_req=1 ttl=51 time=28.7 ms --- 128.118.2.225 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.730/28.730/28.730/0.000 ms PING 128.118.2.227 (128.118.2.227) 56(84) bytes of data. 64 bytes from 128.118.2.227: icmp_req=1 ttl=39 time=29.9 ms --- 128.118.2.227 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.977/29.977/29.977/0.000 ms PING 128.118.2.228 (128.118.2.228) 56(84) bytes of data. 64 bytes from 128.118.2.228: icmp_req=1 ttl=50 time=38.0 ms --- 128.118.2.228 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 38.027/38.027/38.027/0.000 ms PING 128.118.2.229 (128.118.2.229) 56(84) bytes of data. 64 bytes from 128.118.2.229: icmp_req=1 ttl=39 time=30.0 ms --- 128.118.2.229 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.062/30.062/30.062/0.000 ms PING 128.118.2.231 (128.118.2.231) 56(84) bytes of data. 64 bytes from 128.118.2.231: icmp_req=1 ttl=49 time=55.3 ms --- 128.118.2.231 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 55.311/55.311/55.311/0.000 ms PING 128.118.2.234 (128.118.2.234) 56(84) bytes of data. 64 bytes from 128.118.2.234: icmp_req=1 ttl=38 time=29.4 ms --- 128.118.2.234 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.468/29.468/29.468/0.000 ms PING 128.118.2.236 (128.118.2.236) 56(84) bytes of data. 64 bytes from 128.118.2.236: icmp_req=1 ttl=38 time=28.6 ms --- 128.118.2.236 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.696/28.696/28.696/0.000 ms PING 128.118.2.239 (128.118.2.239) 56(84) bytes of data. 64 bytes from 128.118.2.239: icmp_req=1 ttl=242 time=29.4 ms --- 128.118.2.239 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.427/29.427/29.427/0.000 ms PING 128.118.2.240 (128.118.2.240) 56(84) bytes of data. 64 bytes from 128.118.2.240: icmp_req=1 ttl=49 time=30.3 ms --- 128.118.2.240 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.365/30.365/30.365/0.000 ms PING 128.118.2.241 (128.118.2.241) 56(84) bytes of data. 64 bytes from 128.118.2.241: icmp_req=1 ttl=49 time=31.1 ms --- 128.118.2.241 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 31.144/31.144/31.144/0.000 ms PING 128.118.2.242 (128.118.2.242) 56(84) bytes of data. 64 bytes from 128.118.2.242: icmp_req=1 ttl=38 time=30.2 ms --- 128.118.2.242 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.209/30.209/30.209/0.000 ms PING 128.118.2.243 (128.118.2.243) 56(84) bytes of data. 64 bytes from 128.118.2.243: icmp_req=1 ttl=51 time=29.2 ms --- 128.118.2.243 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.294/29.294/29.294/0.000 ms PING 128.118.2.245 (128.118.2.245) 56(84) bytes of data. 64 bytes from 128.118.2.245: icmp_req=1 ttl=39 time=31.2 ms --- 128.118.2.245 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 31.290/31.290/31.290/0.000 ms PING 128.118.2.246 (128.118.2.246) 56(84) bytes of data. 64 bytes from 128.118.2.246: icmp_req=1 ttl=241 time=30.9 ms --- 128.118.2.246 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.932/30.932/30.932/0.000 ms PING 128.118.2.247 (128.118.2.247) 56(84) bytes of data. 64 bytes from 128.118.2.247: icmp_req=1 ttl=241 time=30.3 ms --- 128.118.2.247 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.373/30.373/30.373/0.000 ms PING 128.118.2.248 (128.118.2.248) 56(84) bytes of data. 64 bytes from 128.118.2.248: icmp_req=1 ttl=50 time=29.5 ms --- 128.118.2.248 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.548/29.548/29.548/0.000 ms PING 128.118.2.249 (128.118.2.249) 56(84) bytes of data. 64 bytes from 128.118.2.249: icmp_req=1 ttl=37 time=33.8 ms --- 128.118.2.249 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 33.810/33.810/33.810/0.000 ms PING 128.118.2.250 (128.118.2.250) 56(84) bytes of data. 64 bytes from 128.118.2.250: icmp_req=1 ttl=51 time=29.6 ms --- 128.118.2.250 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.652/29.652/29.652/0.000 ms PING 128.118.2.251 (128.118.2.251) 56(84) bytes of data. 64 bytes from 128.118.2.251: icmp_req=1 ttl=51 time=29.9 ms --- 128.118.2.251 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.995/29.995/29.995/0.000 ms PING 128.118.2.252 (128.118.2.252) 56(84) bytes of data. 64 bytes from 128.118.2.252: icmp_req=1 ttl=38 time=37.2 ms --- 128.118.2.252 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 37.213/37.213/37.213/0.000 ms PING 128.118.2.254 (128.118.2.254) 56(84) bytes of data. 64 bytes from 128.118.2.254: icmp_req=1 ttl=243 time=31.7 ms --- 128.118.2.254 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 31.784/31.784/31.784/0.000 ms PING 128.118.3.4 (128.118.3.4) 56(84) bytes of data. 64 bytes from 128.118.3.4: icmp_req=1 ttl=49 time=29.9 ms --- 128.118.3.4 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.999/29.999/29.999/0.000 ms PING 128.118.3.22 (128.118.3.22) 56(84) bytes of data. 64 bytes from 128.118.3.22: icmp_req=1 ttl=50 time=29.5 ms --- 128.118.3.22 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.532/29.532/29.532/0.000 ms PING 128.118.3.48 (128.118.3.48) 56(84) bytes of data. 64 bytes from 128.118.3.48: icmp_req=1 ttl=113 time=31.1 ms --- 128.118.3.48 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 31.101/31.101/31.101/0.000 ms PING 128.118.3.56 (128.118.3.56) 56(84) bytes of data. 64 bytes from 128.118.3.56: icmp_req=1 ttl=50 time=29.6 ms --- 128.118.3.56 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.638/29.638/29.638/0.000 ms PING 128.118.3.58 (128.118.3.58) 56(84) bytes of data. 64 bytes from 128.118.3.58: icmp_req=1 ttl=49 time=30.0 ms --- 128.118.3.58 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.054/30.054/30.054/0.000 ms PING 128.118.3.60 (128.118.3.60) 56(84) bytes of data. 64 bytes from 128.118.3.60: icmp_req=1 ttl=49 time=30.3 ms --- 128.118.3.60 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.365/30.365/30.365/0.000 ms PING 128.118.3.66 (128.118.3.66) 56(84) bytes of data. 64 bytes from 128.118.3.66: icmp_req=1 ttl=49 time=32.8 ms --- 128.118.3.66 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 32.823/32.823/32.823/0.000 ms PING 128.118.3.69 (128.118.3.69) 56(84) bytes of data. 64 bytes from 128.118.3.69: icmp_req=1 ttl=50 time=30.2 ms --- 128.118.3.69 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.296/30.296/30.296/0.000 ms PING 128.118.3.112 (128.118.3.112) 56(84) bytes of data. 64 bytes from 128.118.3.112: icmp_req=1 ttl=49 time=28.4 ms --- 128.118.3.112 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.478/28.478/28.478/0.000 ms PING 128.118.3.133 (128.118.3.133) 56(84) bytes of data. 64 bytes from 128.118.3.133: icmp_req=1 ttl=50 time=30.4 ms --- 128.118.3.133 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.476/30.476/30.476/0.000 ms PING 128.118.3.135 (128.118.3.135) 56(84) bytes of data. 64 bytes from 128.118.3.135: icmp_req=1 ttl=49 time=29.7 ms --- 128.118.3.135 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.759/29.759/29.759/0.000 ms PING 128.118.3.157 (128.118.3.157) 56(84) bytes of data. 64 bytes from 128.118.3.157: icmp_req=1 ttl=49 time=30.2 ms --- 128.118.3.157 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.282/30.282/30.282/0.000 ms PING 128.118.3.191 (128.118.3.191) 56(84) bytes of data. 64 bytes from 128.118.3.191: icmp_req=1 ttl=50 time=31.0 ms --- 128.118.3.191 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 31.004/31.004/31.004/0.000 ms PING 128.118.4.85 (128.118.4.85) 56(84) bytes of data. PING 128.118.4.83 (128.118.4.83) 56(84) bytes of data. --- 128.118.4.85 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.4.83 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.82 (128.118.4.82) 56(84) bytes of data. PING 128.118.4.84 (128.118.4.84) 56(84) bytes of data. --- 128.118.4.82 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.4.84 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.79 (128.118.4.79) 56(84) bytes of data. --- 128.118.4.79 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.81 (128.118.4.81) 56(84) bytes of data. --- 128.118.4.81 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.74 (128.118.4.74) 56(84) bytes of data. --- 128.118.4.74 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.80 (128.118.4.80) 56(84) bytes of data. --- 128.118.4.80 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.73 (128.118.4.73) 56(84) bytes of data. --- 128.118.4.73 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.78 (128.118.4.78) 56(84) bytes of data. --- 128.118.4.78 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.72 (128.118.4.72) 56(84) bytes of data. --- 128.118.4.72 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.77 (128.118.4.77) 56(84) bytes of data. --- 128.118.4.77 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.71 (128.118.4.71) 56(84) bytes of data. --- 128.118.4.71 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.76 (128.118.4.76) 56(84) bytes of data. --- 128.118.4.76 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.69 (128.118.4.69) 56(84) bytes of data. --- 128.118.4.69 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.75 (128.118.4.75) 56(84) bytes of data. --- 128.118.4.75 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.66 (128.118.4.66) 56(84) bytes of data. --- 128.118.4.66 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.70 (128.118.4.70) 56(84) bytes of data. --- 128.118.4.70 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.65 (128.118.4.65) 56(84) bytes of data. --- 128.118.4.65 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.68 (128.118.4.68) 56(84) bytes of data. --- 128.118.4.68 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.64 (128.118.4.64) 56(84) bytes of data. --- 128.118.4.64 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.67 (128.118.4.67) 56(84) bytes of data. --- 128.118.4.67 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.63 (128.118.4.63) 56(84) bytes of data. --- 128.118.4.63 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.62 (128.118.4.62) 56(84) bytes of data. --- 128.118.4.62 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.60 (128.118.4.60) 56(84) bytes of data. PING 128.118.4.61 (128.118.4.61) 56(84) bytes of data. --- 128.118.4.60 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.4.61 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.58 (128.118.4.58) 56(84) bytes of data. PING 128.118.4.59 (128.118.4.59) 56(84) bytes of data. --- 128.118.4.58 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.4.59 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.57 (128.118.4.57) 56(84) bytes of data. --- 128.118.4.57 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.53 (128.118.4.53) 56(84) bytes of data. --- 128.118.4.53 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.56 (128.118.4.56) 56(84) bytes of data. --- 128.118.4.56 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.50 (128.118.4.50) 56(84) bytes of data. --- 128.118.4.50 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.55 (128.118.4.55) 56(84) bytes of data. --- 128.118.4.55 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.48 (128.118.4.48) 56(84) bytes of data. --- 128.118.4.48 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.54 (128.118.4.54) 56(84) bytes of data. --- 128.118.4.54 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.46 (128.118.4.46) 56(84) bytes of data. --- 128.118.4.46 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.52 (128.118.4.52) 56(84) bytes of data. --- 128.118.4.52 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.44 (128.118.4.44) 56(84) bytes of data. --- 128.118.4.44 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.51 (128.118.4.51) 56(84) bytes of data. --- 128.118.4.51 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.43 (128.118.4.43) 56(84) bytes of data. --- 128.118.4.43 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.49 (128.118.4.49) 56(84) bytes of data. --- 128.118.4.49 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.35 (128.118.4.35) 56(84) bytes of data. --- 128.118.4.35 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.47 (128.118.4.47) 56(84) bytes of data. --- 128.118.4.47 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.32 (128.118.4.32) 56(84) bytes of data. --- 128.118.4.32 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.45 (128.118.4.45) 56(84) bytes of data. --- 128.118.4.45 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 2ms PING 128.118.4.31 (128.118.4.31) 56(84) bytes of data. --- 128.118.4.31 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.42 (128.118.4.42) 56(84) bytes of data. --- 128.118.4.42 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.23 (128.118.4.23) 56(84) bytes of data. --- 128.118.4.23 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.41 (128.118.4.41) 56(84) bytes of data. --- 128.118.4.41 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.21 (128.118.4.21) 56(84) bytes of data. --- 128.118.4.21 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.40 (128.118.4.40) 56(84) bytes of data. --- 128.118.4.40 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.18 (128.118.4.18) 56(84) bytes of data. --- 128.118.4.18 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.39 (128.118.4.39) 56(84) bytes of data. --- 128.118.4.39 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.16 (128.118.4.16) 56(84) bytes of data. --- 128.118.4.16 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.38 (128.118.4.38) 56(84) bytes of data. --- 128.118.4.38 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.15 (128.118.4.15) 56(84) bytes of data. --- 128.118.4.15 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.37 (128.118.4.37) 56(84) bytes of data. --- 128.118.4.37 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.14 (128.118.4.14) 56(84) bytes of data. --- 128.118.4.14 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.36 (128.118.4.36) 56(84) bytes of data. --- 128.118.4.36 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.13 (128.118.4.13) 56(84) bytes of data. --- 128.118.4.13 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.34 (128.118.4.34) 56(84) bytes of data. --- 128.118.4.34 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.11 (128.118.4.11) 56(84) bytes of data. --- 128.118.4.11 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.33 (128.118.4.33) 56(84) bytes of data. --- 128.118.4.33 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.6 (128.118.4.6) 56(84) bytes of data. --- 128.118.4.6 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.30 (128.118.4.30) 56(84) bytes of data. --- 128.118.4.30 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.5 (128.118.4.5) 56(84) bytes of data. --- 128.118.4.5 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.29 (128.118.4.29) 56(84) bytes of data. --- 128.118.4.29 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.3 (128.118.4.3) 56(84) bytes of data. --- 128.118.4.3 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.28 (128.118.4.28) 56(84) bytes of data. --- 128.118.4.28 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.254 (128.118.3.254) 56(84) bytes of data. --- 128.118.3.254 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.27 (128.118.4.27) 56(84) bytes of data. --- 128.118.4.27 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.250 (128.118.3.250) 56(84) bytes of data. --- 128.118.3.250 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.26 (128.118.4.26) 56(84) bytes of data. --- 128.118.4.26 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.249 (128.118.3.249) 56(84) bytes of data. --- 128.118.3.249 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.25 (128.118.4.25) 56(84) bytes of data. --- 128.118.4.25 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.245 (128.118.3.245) 56(84) bytes of data. --- 128.118.3.245 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.24 (128.118.4.24) 56(84) bytes of data. --- 128.118.4.24 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.240 (128.118.3.240) 56(84) bytes of data. --- 128.118.3.240 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.22 (128.118.4.22) 56(84) bytes of data. --- 128.118.4.22 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.239 (128.118.3.239) 56(84) bytes of data. --- 128.118.3.239 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.20 (128.118.4.20) 56(84) bytes of data. --- 128.118.4.20 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.238 (128.118.3.238) 56(84) bytes of data. --- 128.118.3.238 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.19 (128.118.4.19) 56(84) bytes of data. --- 128.118.4.19 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.237 (128.118.3.237) 56(84) bytes of data. --- 128.118.3.237 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.17 (128.118.4.17) 56(84) bytes of data. --- 128.118.4.17 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.234 (128.118.3.234) 56(84) bytes of data. --- 128.118.3.234 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.12 (128.118.4.12) 56(84) bytes of data. --- 128.118.4.12 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.233 (128.118.3.233) 56(84) bytes of data. --- 128.118.3.233 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.10 (128.118.4.10) 56(84) bytes of data. --- 128.118.4.10 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.232 (128.118.3.232) 56(84) bytes of data. --- 128.118.3.232 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.9 (128.118.4.9) 56(84) bytes of data. --- 128.118.4.9 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.230 (128.118.3.230) 56(84) bytes of data. --- 128.118.3.230 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.8 (128.118.4.8) 56(84) bytes of data. --- 128.118.4.8 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.228 (128.118.3.228) 56(84) bytes of data. --- 128.118.3.228 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.7 (128.118.4.7) 56(84) bytes of data. --- 128.118.4.7 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.227 (128.118.3.227) 56(84) bytes of data. --- 128.118.3.227 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.4 (128.118.4.4) 56(84) bytes of data. --- 128.118.4.4 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.225 (128.118.3.225) 56(84) bytes of data. --- 128.118.3.225 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.2 (128.118.4.2) 56(84) bytes of data. --- 128.118.4.2 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.223 (128.118.3.223) 56(84) bytes of data. --- 128.118.3.223 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.1 (128.118.4.1) 56(84) bytes of data. --- 128.118.4.1 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.218 (128.118.3.218) 56(84) bytes of data. --- 128.118.3.218 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.4.0 (128.118.4.0) 56(84) bytes of data. --- 128.118.4.0 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.213 (128.118.3.213) 56(84) bytes of data. --- 128.118.3.213 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.255 (128.118.3.255) 56(84) bytes of data. --- 128.118.3.255 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.212 (128.118.3.212) 56(84) bytes of data. --- 128.118.3.212 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.253 (128.118.3.253) 56(84) bytes of data. --- 128.118.3.253 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.211 (128.118.3.211) 56(84) bytes of data. --- 128.118.3.211 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.252 (128.118.3.252) 56(84) bytes of data. --- 128.118.3.252 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.210 (128.118.3.210) 56(84) bytes of data. --- 128.118.3.210 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.251 (128.118.3.251) 56(84) bytes of data. --- 128.118.3.251 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.209 (128.118.3.209) 56(84) bytes of data. --- 128.118.3.209 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.248 (128.118.3.248) 56(84) bytes of data. --- 128.118.3.248 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.208 (128.118.3.208) 56(84) bytes of data. --- 128.118.3.208 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.247 (128.118.3.247) 56(84) bytes of data. --- 128.118.3.247 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.206 (128.118.3.206) 56(84) bytes of data. --- 128.118.3.206 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.246 (128.118.3.246) 56(84) bytes of data. --- 128.118.3.246 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.205 (128.118.3.205) 56(84) bytes of data. --- 128.118.3.205 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.244 (128.118.3.244) 56(84) bytes of data. --- 128.118.3.244 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.204 (128.118.3.204) 56(84) bytes of data. --- 128.118.3.204 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.243 (128.118.3.243) 56(84) bytes of data. --- 128.118.3.243 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.203 (128.118.3.203) 56(84) bytes of data. --- 128.118.3.203 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.242 (128.118.3.242) 56(84) bytes of data. --- 128.118.3.242 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.201 (128.118.3.201) 56(84) bytes of data. --- 128.118.3.201 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.241 (128.118.3.241) 56(84) bytes of data. --- 128.118.3.241 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.199 (128.118.3.199) 56(84) bytes of data. --- 128.118.3.199 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.236 (128.118.3.236) 56(84) bytes of data. --- 128.118.3.236 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.198 (128.118.3.198) 56(84) bytes of data. --- 128.118.3.198 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.235 (128.118.3.235) 56(84) bytes of data. --- 128.118.3.235 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.197 (128.118.3.197) 56(84) bytes of data. --- 128.118.3.197 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.231 (128.118.3.231) 56(84) bytes of data. --- 128.118.3.231 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.195 (128.118.3.195) 56(84) bytes of data. --- 128.118.3.195 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.229 (128.118.3.229) 56(84) bytes of data. --- 128.118.3.229 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.194 (128.118.3.194) 56(84) bytes of data. --- 128.118.3.194 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.226 (128.118.3.226) 56(84) bytes of data. --- 128.118.3.226 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.192 (128.118.3.192) 56(84) bytes of data. --- 128.118.3.192 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.224 (128.118.3.224) 56(84) bytes of data. --- 128.118.3.224 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.190 (128.118.3.190) 56(84) bytes of data. --- 128.118.3.190 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.222 (128.118.3.222) 56(84) bytes of data. --- 128.118.3.222 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.187 (128.118.3.187) 56(84) bytes of data. --- 128.118.3.187 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.221 (128.118.3.221) 56(84) bytes of data. --- 128.118.3.221 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.184 (128.118.3.184) 56(84) bytes of data. --- 128.118.3.184 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.220 (128.118.3.220) 56(84) bytes of data. --- 128.118.3.220 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.183 (128.118.3.183) 56(84) bytes of data. --- 128.118.3.183 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.219 (128.118.3.219) 56(84) bytes of data. --- 128.118.3.219 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.182 (128.118.3.182) 56(84) bytes of data. --- 128.118.3.182 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.217 (128.118.3.217) 56(84) bytes of data. --- 128.118.3.217 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.181 (128.118.3.181) 56(84) bytes of data. --- 128.118.3.181 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.216 (128.118.3.216) 56(84) bytes of data. --- 128.118.3.216 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.180 (128.118.3.180) 56(84) bytes of data. --- 128.118.3.180 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.215 (128.118.3.215) 56(84) bytes of data. --- 128.118.3.215 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.177 (128.118.3.177) 56(84) bytes of data. --- 128.118.3.177 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.214 (128.118.3.214) 56(84) bytes of data. --- 128.118.3.214 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.175 (128.118.3.175) 56(84) bytes of data. --- 128.118.3.175 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.207 (128.118.3.207) 56(84) bytes of data. --- 128.118.3.207 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.173 (128.118.3.173) 56(84) bytes of data. --- 128.118.3.173 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.202 (128.118.3.202) 56(84) bytes of data. --- 128.118.3.202 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.172 (128.118.3.172) 56(84) bytes of data. --- 128.118.3.172 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.200 (128.118.3.200) 56(84) bytes of data. --- 128.118.3.200 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.171 (128.118.3.171) 56(84) bytes of data. --- 128.118.3.171 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.196 (128.118.3.196) 56(84) bytes of data. --- 128.118.3.196 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.170 (128.118.3.170) 56(84) bytes of data. --- 128.118.3.170 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 3ms PING 128.118.3.193 (128.118.3.193) 56(84) bytes of data. --- 128.118.3.193 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.169 (128.118.3.169) 56(84) bytes of data. --- 128.118.3.169 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.189 (128.118.3.189) 56(84) bytes of data. --- 128.118.3.189 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.167 (128.118.3.167) 56(84) bytes of data. --- 128.118.3.167 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.188 (128.118.3.188) 56(84) bytes of data. --- 128.118.3.188 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.165 (128.118.3.165) 56(84) bytes of data. --- 128.118.3.165 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.186 (128.118.3.186) 56(84) bytes of data. --- 128.118.3.186 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.163 (128.118.3.163) 56(84) bytes of data. --- 128.118.3.163 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.185 (128.118.3.185) 56(84) bytes of data. --- 128.118.3.185 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.156 (128.118.3.156) 56(84) bytes of data. --- 128.118.3.156 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.179 (128.118.3.179) 56(84) bytes of data. --- 128.118.3.179 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.154 (128.118.3.154) 56(84) bytes of data. --- 128.118.3.154 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.178 (128.118.3.178) 56(84) bytes of data. --- 128.118.3.178 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.152 (128.118.3.152) 56(84) bytes of data. --- 128.118.3.152 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.176 (128.118.3.176) 56(84) bytes of data. --- 128.118.3.176 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.150 (128.118.3.150) 56(84) bytes of data. --- 128.118.3.150 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.174 (128.118.3.174) 56(84) bytes of data. --- 128.118.3.174 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.149 (128.118.3.149) 56(84) bytes of data. --- 128.118.3.149 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.168 (128.118.3.168) 56(84) bytes of data. --- 128.118.3.168 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.147 (128.118.3.147) 56(84) bytes of data. --- 128.118.3.147 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.166 (128.118.3.166) 56(84) bytes of data. --- 128.118.3.166 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.145 (128.118.3.145) 56(84) bytes of data. --- 128.118.3.145 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.164 (128.118.3.164) 56(84) bytes of data. --- 128.118.3.164 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.143 (128.118.3.143) 56(84) bytes of data. --- 128.118.3.143 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.162 (128.118.3.162) 56(84) bytes of data. --- 128.118.3.162 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.141 (128.118.3.141) 56(84) bytes of data. --- 128.118.3.141 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.161 (128.118.3.161) 56(84) bytes of data. --- 128.118.3.161 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.140 (128.118.3.140) 56(84) bytes of data. --- 128.118.3.140 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.160 (128.118.3.160) 56(84) bytes of data. --- 128.118.3.160 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.139 (128.118.3.139) 56(84) bytes of data. --- 128.118.3.139 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.159 (128.118.3.159) 56(84) bytes of data. --- 128.118.3.159 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.132 (128.118.3.132) 56(84) bytes of data. --- 128.118.3.132 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.158 (128.118.3.158) 56(84) bytes of data. --- 128.118.3.158 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.130 (128.118.3.130) 56(84) bytes of data. --- 128.118.3.130 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.155 (128.118.3.155) 56(84) bytes of data. --- 128.118.3.155 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.128 (128.118.3.128) 56(84) bytes of data. --- 128.118.3.128 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.153 (128.118.3.153) 56(84) bytes of data. --- 128.118.3.153 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.127 (128.118.3.127) 56(84) bytes of data. --- 128.118.3.127 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.151 (128.118.3.151) 56(84) bytes of data. --- 128.118.3.151 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.124 (128.118.3.124) 56(84) bytes of data. --- 128.118.3.124 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.148 (128.118.3.148) 56(84) bytes of data. --- 128.118.3.148 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.122 (128.118.3.122) 56(84) bytes of data. --- 128.118.3.122 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.146 (128.118.3.146) 56(84) bytes of data. --- 128.118.3.146 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.120 (128.118.3.120) 56(84) bytes of data. --- 128.118.3.120 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.144 (128.118.3.144) 56(84) bytes of data. --- 128.118.3.144 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.119 (128.118.3.119) 56(84) bytes of data. --- 128.118.3.119 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.142 (128.118.3.142) 56(84) bytes of data. --- 128.118.3.142 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.118 (128.118.3.118) 56(84) bytes of data. --- 128.118.3.118 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.138 (128.118.3.138) 56(84) bytes of data. --- 128.118.3.138 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.115 (128.118.3.115) 56(84) bytes of data. --- 128.118.3.115 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.137 (128.118.3.137) 56(84) bytes of data. --- 128.118.3.137 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.113 (128.118.3.113) 56(84) bytes of data. --- 128.118.3.113 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.136 (128.118.3.136) 56(84) bytes of data. --- 128.118.3.136 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.109 (128.118.3.109) 56(84) bytes of data. --- 128.118.3.109 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.134 (128.118.3.134) 56(84) bytes of data. --- 128.118.3.134 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.107 (128.118.3.107) 56(84) bytes of data. --- 128.118.3.107 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.131 (128.118.3.131) 56(84) bytes of data. --- 128.118.3.131 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.105 (128.118.3.105) 56(84) bytes of data. --- 128.118.3.105 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.129 (128.118.3.129) 56(84) bytes of data. --- 128.118.3.129 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.104 (128.118.3.104) 56(84) bytes of data. --- 128.118.3.104 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.126 (128.118.3.126) 56(84) bytes of data. --- 128.118.3.126 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.101 (128.118.3.101) 56(84) bytes of data. --- 128.118.3.101 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.125 (128.118.3.125) 56(84) bytes of data. --- 128.118.3.125 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.99 (128.118.3.99) 56(84) bytes of data. --- 128.118.3.99 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.123 (128.118.3.123) 56(84) bytes of data. --- 128.118.3.123 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.96 (128.118.3.96) 56(84) bytes of data. --- 128.118.3.96 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.121 (128.118.3.121) 56(84) bytes of data. --- 128.118.3.121 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.95 (128.118.3.95) 56(84) bytes of data. --- 128.118.3.95 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.117 (128.118.3.117) 56(84) bytes of data. --- 128.118.3.117 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.93 (128.118.3.93) 56(84) bytes of data. --- 128.118.3.93 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.116 (128.118.3.116) 56(84) bytes of data. --- 128.118.3.116 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.90 (128.118.3.90) 56(84) bytes of data. --- 128.118.3.90 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.114 (128.118.3.114) 56(84) bytes of data. --- 128.118.3.114 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.89 (128.118.3.89) 56(84) bytes of data. --- 128.118.3.89 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.111 (128.118.3.111) 56(84) bytes of data. --- 128.118.3.111 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.86 (128.118.3.86) 56(84) bytes of data. --- 128.118.3.86 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.110 (128.118.3.110) 56(84) bytes of data. --- 128.118.3.110 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.84 (128.118.3.84) 56(84) bytes of data. --- 128.118.3.84 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.108 (128.118.3.108) 56(84) bytes of data. --- 128.118.3.108 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.82 (128.118.3.82) 56(84) bytes of data. --- 128.118.3.82 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.106 (128.118.3.106) 56(84) bytes of data. --- 128.118.3.106 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.79 (128.118.3.79) 56(84) bytes of data. --- 128.118.3.79 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.103 (128.118.3.103) 56(84) bytes of data. --- 128.118.3.103 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.78 (128.118.3.78) 56(84) bytes of data. --- 128.118.3.78 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.102 (128.118.3.102) 56(84) bytes of data. --- 128.118.3.102 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.76 (128.118.3.76) 56(84) bytes of data. --- 128.118.3.76 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.100 (128.118.3.100) 56(84) bytes of data. --- 128.118.3.100 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.74 (128.118.3.74) 56(84) bytes of data. --- 128.118.3.74 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.98 (128.118.3.98) 56(84) bytes of data. --- 128.118.3.98 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.70 (128.118.3.70) 56(84) bytes of data. --- 128.118.3.70 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.97 (128.118.3.97) 56(84) bytes of data. --- 128.118.3.97 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.68 (128.118.3.68) 56(84) bytes of data. --- 128.118.3.68 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.94 (128.118.3.94) 56(84) bytes of data. --- 128.118.3.94 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.67 (128.118.3.67) 56(84) bytes of data. --- 128.118.3.67 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.92 (128.118.3.92) 56(84) bytes of data. --- 128.118.3.92 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.64 (128.118.3.64) 56(84) bytes of data. --- 128.118.3.64 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.91 (128.118.3.91) 56(84) bytes of data. --- 128.118.3.91 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.61 (128.118.3.61) 56(84) bytes of data. --- 128.118.3.61 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.88 (128.118.3.88) 56(84) bytes of data. --- 128.118.3.88 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.57 (128.118.3.57) 56(84) bytes of data. --- 128.118.3.57 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.87 (128.118.3.87) 56(84) bytes of data. --- 128.118.3.87 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.54 (128.118.3.54) 56(84) bytes of data. --- 128.118.3.54 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.85 (128.118.3.85) 56(84) bytes of data. --- 128.118.3.85 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.52 (128.118.3.52) 56(84) bytes of data. --- 128.118.3.52 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.83 (128.118.3.83) 56(84) bytes of data. --- 128.118.3.83 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.47 (128.118.3.47) 56(84) bytes of data. --- 128.118.3.47 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.81 (128.118.3.81) 56(84) bytes of data. --- 128.118.3.81 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.46 (128.118.3.46) 56(84) bytes of data. --- 128.118.3.46 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.80 (128.118.3.80) 56(84) bytes of data. --- 128.118.3.80 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.44 (128.118.3.44) 56(84) bytes of data. --- 128.118.3.44 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.77 (128.118.3.77) 56(84) bytes of data. --- 128.118.3.77 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.41 (128.118.3.41) 56(84) bytes of data. --- 128.118.3.41 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.75 (128.118.3.75) 56(84) bytes of data. --- 128.118.3.75 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.39 (128.118.3.39) 56(84) bytes of data. --- 128.118.3.39 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.73 (128.118.3.73) 56(84) bytes of data. --- 128.118.3.73 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.38 (128.118.3.38) 56(84) bytes of data. --- 128.118.3.38 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.72 (128.118.3.72) 56(84) bytes of data. --- 128.118.3.72 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.36 (128.118.3.36) 56(84) bytes of data. --- 128.118.3.36 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.71 (128.118.3.71) 56(84) bytes of data. --- 128.118.3.71 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.34 (128.118.3.34) 56(84) bytes of data. --- 128.118.3.34 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.65 (128.118.3.65) 56(84) bytes of data. --- 128.118.3.65 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.32 (128.118.3.32) 56(84) bytes of data. --- 128.118.3.32 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.63 (128.118.3.63) 56(84) bytes of data. --- 128.118.3.63 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.30 (128.118.3.30) 56(84) bytes of data. --- 128.118.3.30 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.62 (128.118.3.62) 56(84) bytes of data. --- 128.118.3.62 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.28 (128.118.3.28) 56(84) bytes of data. --- 128.118.3.28 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.59 (128.118.3.59) 56(84) bytes of data. --- 128.118.3.59 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.26 (128.118.3.26) 56(84) bytes of data. --- 128.118.3.26 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.55 (128.118.3.55) 56(84) bytes of data. --- 128.118.3.55 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.23 (128.118.3.23) 56(84) bytes of data. --- 128.118.3.23 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.53 (128.118.3.53) 56(84) bytes of data. --- 128.118.3.53 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.20 (128.118.3.20) 56(84) bytes of data. --- 128.118.3.20 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.51 (128.118.3.51) 56(84) bytes of data. --- 128.118.3.51 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.18 (128.118.3.18) 56(84) bytes of data. --- 128.118.3.18 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.50 (128.118.3.50) 56(84) bytes of data. --- 128.118.3.50 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.14 (128.118.3.14) 56(84) bytes of data. --- 128.118.3.14 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.49 (128.118.3.49) 56(84) bytes of data. --- 128.118.3.49 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.12 (128.118.3.12) 56(84) bytes of data. --- 128.118.3.12 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.45 (128.118.3.45) 56(84) bytes of data. --- 128.118.3.45 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.10 (128.118.3.10) 56(84) bytes of data. --- 128.118.3.10 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.43 (128.118.3.43) 56(84) bytes of data. --- 128.118.3.43 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.8 (128.118.3.8) 56(84) bytes of data. --- 128.118.3.8 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.42 (128.118.3.42) 56(84) bytes of data. --- 128.118.3.42 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.6 (128.118.3.6) 56(84) bytes of data. --- 128.118.3.6 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.40 (128.118.3.40) 56(84) bytes of data. --- 128.118.3.40 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.2 (128.118.3.2) 56(84) bytes of data. --- 128.118.3.2 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.37 (128.118.3.37) 56(84) bytes of data. --- 128.118.3.37 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.1 (128.118.3.1) 56(84) bytes of data. --- 128.118.3.1 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.35 (128.118.3.35) 56(84) bytes of data. --- 128.118.3.35 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.253 (128.118.2.253) 56(84) bytes of data. --- 128.118.2.253 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.33 (128.118.3.33) 56(84) bytes of data. --- 128.118.3.33 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.244 (128.118.2.244) 56(84) bytes of data. --- 128.118.2.244 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.31 (128.118.3.31) 56(84) bytes of data. --- 128.118.3.31 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.237 (128.118.2.237) 56(84) bytes of data. --- 128.118.2.237 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.29 (128.118.3.29) 56(84) bytes of data. --- 128.118.3.29 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.235 (128.118.2.235) 56(84) bytes of data. --- 128.118.2.235 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.27 (128.118.3.27) 56(84) bytes of data. --- 128.118.3.27 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.232 (128.118.2.232) 56(84) bytes of data. --- 128.118.2.232 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.25 (128.118.3.25) 56(84) bytes of data. --- 128.118.3.25 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.221 (128.118.2.221) 56(84) bytes of data. --- 128.118.2.221 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.24 (128.118.3.24) 56(84) bytes of data. --- 128.118.3.24 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.220 (128.118.2.220) 56(84) bytes of data. --- 128.118.2.220 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.21 (128.118.3.21) 56(84) bytes of data. --- 128.118.3.21 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.217 (128.118.2.217) 56(84) bytes of data. --- 128.118.2.217 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.19 (128.118.3.19) 56(84) bytes of data. --- 128.118.3.19 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.215 (128.118.2.215) 56(84) bytes of data. --- 128.118.2.215 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.17 (128.118.3.17) 56(84) bytes of data. --- 128.118.3.17 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.213 (128.118.2.213) 56(84) bytes of data. --- 128.118.2.213 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.16 (128.118.3.16) 56(84) bytes of data. --- 128.118.3.16 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.209 (128.118.2.209) 56(84) bytes of data. --- 128.118.2.209 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.15 (128.118.3.15) 56(84) bytes of data. --- 128.118.3.15 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.205 (128.118.2.205) 56(84) bytes of data. --- 128.118.2.205 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.13 (128.118.3.13) 56(84) bytes of data. --- 128.118.3.13 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.203 (128.118.2.203) 56(84) bytes of data. --- 128.118.2.203 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.11 (128.118.3.11) 56(84) bytes of data. --- 128.118.3.11 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.198 (128.118.2.198) 56(84) bytes of data. --- 128.118.2.198 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.9 (128.118.3.9) 56(84) bytes of data. --- 128.118.3.9 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.193 (128.118.2.193) 56(84) bytes of data. --- 128.118.2.193 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.7 (128.118.3.7) 56(84) bytes of data. --- 128.118.3.7 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.189 (128.118.2.189) 56(84) bytes of data. --- 128.118.2.189 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.5 (128.118.3.5) 56(84) bytes of data. --- 128.118.3.5 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.177 (128.118.2.177) 56(84) bytes of data. --- 128.118.2.177 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.3 (128.118.3.3) 56(84) bytes of data. --- 128.118.3.3 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.171 (128.118.2.171) 56(84) bytes of data. --- 128.118.2.171 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.3.0 (128.118.3.0) 56(84) bytes of data. --- 128.118.3.0 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.168 (128.118.2.168) 56(84) bytes of data. --- 128.118.2.168 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.255 (128.118.2.255) 56(84) bytes of data. --- 128.118.2.255 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.165 (128.118.2.165) 56(84) bytes of data. --- 128.118.2.165 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.238 (128.118.2.238) 56(84) bytes of data. --- 128.118.2.238 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.158 (128.118.2.158) 56(84) bytes of data. --- 128.118.2.158 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.233 (128.118.2.233) 56(84) bytes of data. --- 128.118.2.233 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.156 (128.118.2.156) 56(84) bytes of data. --- 128.118.2.156 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.230 (128.118.2.230) 56(84) bytes of data. --- 128.118.2.230 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.155 (128.118.2.155) 56(84) bytes of data. --- 128.118.2.155 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.226 (128.118.2.226) 56(84) bytes of data. --- 128.118.2.226 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.152 (128.118.2.152) 56(84) bytes of data. --- 128.118.2.152 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.224 (128.118.2.224) 56(84) bytes of data. --- 128.118.2.224 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.147 (128.118.2.147) 56(84) bytes of data. --- 128.118.2.147 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.223 (128.118.2.223) 56(84) bytes of data. --- 128.118.2.223 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.146 (128.118.2.146) 56(84) bytes of data. --- 128.118.2.146 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.216 (128.118.2.216) 56(84) bytes of data. --- 128.118.2.216 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.140 (128.118.2.140) 56(84) bytes of data. --- 128.118.2.140 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.214 (128.118.2.214) 56(84) bytes of data. --- 128.118.2.214 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.137 (128.118.2.137) 56(84) bytes of data. --- 128.118.2.137 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.212 (128.118.2.212) 56(84) bytes of data. --- 128.118.2.212 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.128 (128.118.2.128) 56(84) bytes of data. --- 128.118.2.128 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.208 (128.118.2.208) 56(84) bytes of data. --- 128.118.2.208 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.117 (128.118.2.117) 56(84) bytes of data. --- 128.118.2.117 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.204 (128.118.2.204) 56(84) bytes of data. --- 128.118.2.204 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.114 (128.118.2.114) 56(84) bytes of data. --- 128.118.2.114 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.201 (128.118.2.201) 56(84) bytes of data. --- 128.118.2.201 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.107 (128.118.2.107) 56(84) bytes of data. --- 128.118.2.107 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.194 (128.118.2.194) 56(84) bytes of data. --- 128.118.2.194 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.99 (128.118.2.99) 56(84) bytes of data. --- 128.118.2.99 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.190 (128.118.2.190) 56(84) bytes of data. --- 128.118.2.190 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.97 (128.118.2.97) 56(84) bytes of data. --- 128.118.2.97 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.182 (128.118.2.182) 56(84) bytes of data. --- 128.118.2.182 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.92 (128.118.2.92) 56(84) bytes of data. --- 128.118.2.92 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.181 (128.118.2.181) 56(84) bytes of data. --- 128.118.2.181 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.91 (128.118.2.91) 56(84) bytes of data. --- 128.118.2.91 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.180 (128.118.2.180) 56(84) bytes of data. --- 128.118.2.180 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.87 (128.118.2.87) 56(84) bytes of data. --- 128.118.2.87 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.175 (128.118.2.175) 56(84) bytes of data. --- 128.118.2.175 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.84 (128.118.2.84) 56(84) bytes of data. --- 128.118.2.84 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.170 (128.118.2.170) 56(84) bytes of data. --- 128.118.2.170 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.82 (128.118.2.82) 56(84) bytes of data. --- 128.118.2.82 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.164 (128.118.2.164) 56(84) bytes of data. --- 128.118.2.164 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.80 (128.118.2.80) 56(84) bytes of data. --- 128.118.2.80 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.163 (128.118.2.163) 56(84) bytes of data. --- 128.118.2.163 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.67 (128.118.2.67) 56(84) bytes of data. --- 128.118.2.67 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.160 (128.118.2.160) 56(84) bytes of data. --- 128.118.2.160 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.60 (128.118.2.60) 56(84) bytes of data. --- 128.118.2.60 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.157 (128.118.2.157) 56(84) bytes of data. --- 128.118.2.157 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.58 (128.118.2.58) 56(84) bytes of data. --- 128.118.2.58 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.153 (128.118.2.153) 56(84) bytes of data. --- 128.118.2.153 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.56 (128.118.2.56) 56(84) bytes of data. --- 128.118.2.56 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.151 (128.118.2.151) 56(84) bytes of data. --- 128.118.2.151 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.41 (128.118.2.41) 56(84) bytes of data. --- 128.118.2.41 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.149 (128.118.2.149) 56(84) bytes of data. --- 128.118.2.149 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.38 (128.118.2.38) 56(84) bytes of data. --- 128.118.2.38 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.144 (128.118.2.144) 56(84) bytes of data. --- 128.118.2.144 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.34 (128.118.2.34) 56(84) bytes of data. --- 128.118.2.34 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.138 (128.118.2.138) 56(84) bytes of data. --- 128.118.2.138 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.28 (128.118.2.28) 56(84) bytes of data. --- 128.118.2.28 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.135 (128.118.2.135) 56(84) bytes of data. --- 128.118.2.135 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.12 (128.118.2.12) 56(84) bytes of data. --- 128.118.2.12 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.126 (128.118.2.126) 56(84) bytes of data. --- 128.118.2.126 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.7 (128.118.2.7) 56(84) bytes of data. --- 128.118.2.7 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.123 (128.118.2.123) 56(84) bytes of data. --- 128.118.2.123 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.2 (128.118.2.2) 56(84) bytes of data. --- 128.118.2.2 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.113 (128.118.2.113) 56(84) bytes of data. --- 128.118.2.113 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.254 (128.118.1.254) 56(84) bytes of data. --- 128.118.1.254 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.112 (128.118.2.112) 56(84) bytes of data. --- 128.118.2.112 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.253 (128.118.1.253) 56(84) bytes of data. --- 128.118.1.253 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.106 (128.118.2.106) 56(84) bytes of data. --- 128.118.2.106 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.245 (128.118.1.245) 56(84) bytes of data. --- 128.118.1.245 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.98 (128.118.2.98) 56(84) bytes of data. --- 128.118.2.98 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.244 (128.118.1.244) 56(84) bytes of data. --- 128.118.1.244 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.95 (128.118.2.95) 56(84) bytes of data. --- 128.118.2.95 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.240 (128.118.1.240) 56(84) bytes of data. --- 128.118.1.240 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.94 (128.118.2.94) 56(84) bytes of data. --- 128.118.2.94 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.237 (128.118.1.237) 56(84) bytes of data. --- 128.118.1.237 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.90 (128.118.2.90) 56(84) bytes of data. --- 128.118.2.90 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.233 (128.118.1.233) 56(84) bytes of data. --- 128.118.1.233 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.86 (128.118.2.86) 56(84) bytes of data. --- 128.118.2.86 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.231 (128.118.1.231) 56(84) bytes of data. --- 128.118.1.231 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.83 (128.118.2.83) 56(84) bytes of data. --- 128.118.2.83 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.228 (128.118.1.228) 56(84) bytes of data. --- 128.118.1.228 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.81 (128.118.2.81) 56(84) bytes of data. --- 128.118.2.81 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.223 (128.118.1.223) 56(84) bytes of data. --- 128.118.1.223 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.74 (128.118.2.74) 56(84) bytes of data. --- 128.118.2.74 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.222 (128.118.1.222) 56(84) bytes of data. --- 128.118.1.222 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.66 (128.118.2.66) 56(84) bytes of data. --- 128.118.2.66 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.219 (128.118.1.219) 56(84) bytes of data. --- 128.118.1.219 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.63 (128.118.2.63) 56(84) bytes of data. --- 128.118.2.63 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.217 (128.118.1.217) 56(84) bytes of data. --- 128.118.1.217 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.61 (128.118.2.61) 56(84) bytes of data. --- 128.118.2.61 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.214 (128.118.1.214) 56(84) bytes of data. --- 128.118.1.214 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.59 (128.118.2.59) 56(84) bytes of data. --- 128.118.2.59 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.212 (128.118.1.212) 56(84) bytes of data. --- 128.118.1.212 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.55 (128.118.2.55) 56(84) bytes of data. --- 128.118.2.55 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.208 (128.118.1.208) 56(84) bytes of data. --- 128.118.1.208 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.40 (128.118.2.40) 56(84) bytes of data. --- 128.118.2.40 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.206 (128.118.1.206) 56(84) bytes of data. --- 128.118.1.206 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.37 (128.118.2.37) 56(84) bytes of data. --- 128.118.2.37 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.202 (128.118.1.202) 56(84) bytes of data. --- 128.118.1.202 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.36 (128.118.2.36) 56(84) bytes of data. --- 128.118.2.36 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.201 (128.118.1.201) 56(84) bytes of data. --- 128.118.1.201 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.15 (128.118.2.15) 56(84) bytes of data. --- 128.118.2.15 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.200 (128.118.1.200) 56(84) bytes of data. --- 128.118.1.200 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.11 (128.118.2.11) 56(84) bytes of data. --- 128.118.2.11 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.199 (128.118.1.199) 56(84) bytes of data. --- 128.118.1.199 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.10 (128.118.2.10) 56(84) bytes of data. --- 128.118.2.10 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.198 (128.118.1.198) 56(84) bytes of data. --- 128.118.1.198 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.9 (128.118.2.9) 56(84) bytes of data. --- 128.118.2.9 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.190 (128.118.1.190) 56(84) bytes of data. --- 128.118.1.190 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.5 (128.118.2.5) 56(84) bytes of data. --- 128.118.2.5 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.188 (128.118.1.188) 56(84) bytes of data. --- 128.118.1.188 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.2.0 (128.118.2.0) 56(84) bytes of data. --- 128.118.2.0 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.185 (128.118.1.185) 56(84) bytes of data. --- 128.118.1.185 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.255 (128.118.1.255) 56(84) bytes of data. --- 128.118.1.255 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.184 (128.118.1.184) 56(84) bytes of data. --- 128.118.1.184 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.246 (128.118.1.246) 56(84) bytes of data. --- 128.118.1.246 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.182 (128.118.1.182) 56(84) bytes of data. --- 128.118.1.182 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.242 (128.118.1.242) 56(84) bytes of data. --- 128.118.1.242 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.175 (128.118.1.175) 56(84) bytes of data. --- 128.118.1.175 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.239 (128.118.1.239) 56(84) bytes of data. --- 128.118.1.239 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.173 (128.118.1.173) 56(84) bytes of data. --- 128.118.1.173 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.238 (128.118.1.238) 56(84) bytes of data. --- 128.118.1.238 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.172 (128.118.1.172) 56(84) bytes of data. --- 128.118.1.172 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.236 (128.118.1.236) 56(84) bytes of data. --- 128.118.1.236 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.171 (128.118.1.171) 56(84) bytes of data. --- 128.118.1.171 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.234 (128.118.1.234) 56(84) bytes of data. --- 128.118.1.234 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.169 (128.118.1.169) 56(84) bytes of data. --- 128.118.1.169 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.232 (128.118.1.232) 56(84) bytes of data. --- 128.118.1.232 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.167 (128.118.1.167) 56(84) bytes of data. --- 128.118.1.167 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.227 (128.118.1.227) 56(84) bytes of data. --- 128.118.1.227 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.162 (128.118.1.162) 56(84) bytes of data. --- 128.118.1.162 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.226 (128.118.1.226) 56(84) bytes of data. --- 128.118.1.226 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.161 (128.118.1.161) 56(84) bytes of data. --- 128.118.1.161 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.224 (128.118.1.224) 56(84) bytes of data. --- 128.118.1.224 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.159 (128.118.1.159) 56(84) bytes of data. --- 128.118.1.159 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.221 (128.118.1.221) 56(84) bytes of data. --- 128.118.1.221 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.155 (128.118.1.155) 56(84) bytes of data. --- 128.118.1.155 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.220 (128.118.1.220) 56(84) bytes of data. --- 128.118.1.220 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.154 (128.118.1.154) 56(84) bytes of data. --- 128.118.1.154 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.218 (128.118.1.218) 56(84) bytes of data. --- 128.118.1.218 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.153 (128.118.1.153) 56(84) bytes of data. --- 128.118.1.153 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.216 (128.118.1.216) 56(84) bytes of data. --- 128.118.1.216 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.150 (128.118.1.150) 56(84) bytes of data. --- 128.118.1.150 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.215 (128.118.1.215) 56(84) bytes of data. --- 128.118.1.215 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.143 (128.118.1.143) 56(84) bytes of data. --- 128.118.1.143 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.213 (128.118.1.213) 56(84) bytes of data. --- 128.118.1.213 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.130 (128.118.1.130) 56(84) bytes of data. --- 128.118.1.130 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.211 (128.118.1.211) 56(84) bytes of data. --- 128.118.1.211 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.128 (128.118.1.128) 56(84) bytes of data. --- 128.118.1.128 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.210 (128.118.1.210) 56(84) bytes of data. --- 128.118.1.210 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.125 (128.118.1.125) 56(84) bytes of data. --- 128.118.1.125 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.207 (128.118.1.207) 56(84) bytes of data. --- 128.118.1.207 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.124 (128.118.1.124) 56(84) bytes of data. --- 128.118.1.124 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.205 (128.118.1.205) 56(84) bytes of data. --- 128.118.1.205 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.122 (128.118.1.122) 56(84) bytes of data. --- 128.118.1.122 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.204 (128.118.1.204) 56(84) bytes of data. --- 128.118.1.204 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.120 (128.118.1.120) 56(84) bytes of data. --- 128.118.1.120 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.203 (128.118.1.203) 56(84) bytes of data. --- 128.118.1.203 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.117 (128.118.1.117) 56(84) bytes of data. --- 128.118.1.117 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.195 (128.118.1.195) 56(84) bytes of data. --- 128.118.1.195 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.114 (128.118.1.114) 56(84) bytes of data. --- 128.118.1.114 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.194 (128.118.1.194) 56(84) bytes of data. --- 128.118.1.194 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.113 (128.118.1.113) 56(84) bytes of data. --- 128.118.1.113 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.192 (128.118.1.192) 56(84) bytes of data. --- 128.118.1.192 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.111 (128.118.1.111) 56(84) bytes of data. --- 128.118.1.111 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.191 (128.118.1.191) 56(84) bytes of data. --- 128.118.1.191 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.102 (128.118.1.102) 56(84) bytes of data. --- 128.118.1.102 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.189 (128.118.1.189) 56(84) bytes of data. --- 128.118.1.189 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.101 (128.118.1.101) 56(84) bytes of data. --- 128.118.1.101 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.187 (128.118.1.187) 56(84) bytes of data. --- 128.118.1.187 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.98 (128.118.1.98) 56(84) bytes of data. --- 128.118.1.98 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.183 (128.118.1.183) 56(84) bytes of data. --- 128.118.1.183 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.96 (128.118.1.96) 56(84) bytes of data. --- 128.118.1.96 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.181 (128.118.1.181) 56(84) bytes of data. --- 128.118.1.181 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.95 (128.118.1.95) 56(84) bytes of data. --- 128.118.1.95 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.176 (128.118.1.176) 56(84) bytes of data. --- 128.118.1.176 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.94 (128.118.1.94) 56(84) bytes of data. --- 128.118.1.94 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.174 (128.118.1.174) 56(84) bytes of data. --- 128.118.1.174 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.93 (128.118.1.93) 56(84) bytes of data. --- 128.118.1.93 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.170 (128.118.1.170) 56(84) bytes of data. --- 128.118.1.170 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.89 (128.118.1.89) 56(84) bytes of data. --- 128.118.1.89 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.168 (128.118.1.168) 56(84) bytes of data. --- 128.118.1.168 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.88 (128.118.1.88) 56(84) bytes of data. --- 128.118.1.88 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.166 (128.118.1.166) 56(84) bytes of data. --- 128.118.1.166 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.85 (128.118.1.85) 56(84) bytes of data. --- 128.118.1.85 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.165 (128.118.1.165) 56(84) bytes of data. --- 128.118.1.165 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.83 (128.118.1.83) 56(84) bytes of data. --- 128.118.1.83 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.164 (128.118.1.164) 56(84) bytes of data. --- 128.118.1.164 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.82 (128.118.1.82) 56(84) bytes of data. --- 128.118.1.82 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.163 (128.118.1.163) 56(84) bytes of data. --- 128.118.1.163 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.79 (128.118.1.79) 56(84) bytes of data. --- 128.118.1.79 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.160 (128.118.1.160) 56(84) bytes of data. --- 128.118.1.160 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.78 (128.118.1.78) 56(84) bytes of data. --- 128.118.1.78 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.156 (128.118.1.156) 56(84) bytes of data. --- 128.118.1.156 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.77 (128.118.1.77) 56(84) bytes of data. --- 128.118.1.77 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.152 (128.118.1.152) 56(84) bytes of data. --- 128.118.1.152 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.76 (128.118.1.76) 56(84) bytes of data. --- 128.118.1.76 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.151 (128.118.1.151) 56(84) bytes of data. --- 128.118.1.151 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.74 (128.118.1.74) 56(84) bytes of data. --- 128.118.1.74 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.144 (128.118.1.144) 56(84) bytes of data. --- 128.118.1.144 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.73 (128.118.1.73) 56(84) bytes of data. --- 128.118.1.73 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.134 (128.118.1.134) 56(84) bytes of data. --- 128.118.1.134 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.68 (128.118.1.68) 56(84) bytes of data. --- 128.118.1.68 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.131 (128.118.1.131) 56(84) bytes of data. --- 128.118.1.131 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.67 (128.118.1.67) 56(84) bytes of data. --- 128.118.1.67 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.127 (128.118.1.127) 56(84) bytes of data. --- 128.118.1.127 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.64 (128.118.1.64) 56(84) bytes of data. --- 128.118.1.64 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.126 (128.118.1.126) 56(84) bytes of data. --- 128.118.1.126 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.62 (128.118.1.62) 56(84) bytes of data. --- 128.118.1.62 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.123 (128.118.1.123) 56(84) bytes of data. --- 128.118.1.123 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.59 (128.118.1.59) 56(84) bytes of data. --- 128.118.1.59 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.121 (128.118.1.121) 56(84) bytes of data. --- 128.118.1.121 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.56 (128.118.1.56) 56(84) bytes of data. --- 128.118.1.56 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.119 (128.118.1.119) 56(84) bytes of data. --- 128.118.1.119 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.55 (128.118.1.55) 56(84) bytes of data. --- 128.118.1.55 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.118 (128.118.1.118) 56(84) bytes of data. --- 128.118.1.118 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.48 (128.118.1.48) 56(84) bytes of data. --- 128.118.1.48 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.116 (128.118.1.116) 56(84) bytes of data. --- 128.118.1.116 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.44 (128.118.1.44) 56(84) bytes of data. --- 128.118.1.44 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.115 (128.118.1.115) 56(84) bytes of data. --- 128.118.1.115 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.43 (128.118.1.43) 56(84) bytes of data. --- 128.118.1.43 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.112 (128.118.1.112) 56(84) bytes of data. --- 128.118.1.112 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.39 (128.118.1.39) 56(84) bytes of data. --- 128.118.1.39 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.110 (128.118.1.110) 56(84) bytes of data. --- 128.118.1.110 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.37 (128.118.1.37) 56(84) bytes of data. --- 128.118.1.37 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.109 (128.118.1.109) 56(84) bytes of data. --- 128.118.1.109 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.35 (128.118.1.35) 56(84) bytes of data. --- 128.118.1.35 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.108 (128.118.1.108) 56(84) bytes of data. --- 128.118.1.108 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.33 (128.118.1.33) 56(84) bytes of data. --- 128.118.1.33 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.107 (128.118.1.107) 56(84) bytes of data. --- 128.118.1.107 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.30 (128.118.1.30) 56(84) bytes of data. --- 128.118.1.30 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.106 (128.118.1.106) 56(84) bytes of data. --- 128.118.1.106 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.29 (128.118.1.29) 56(84) bytes of data. --- 128.118.1.29 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.105 (128.118.1.105) 56(84) bytes of data. --- 128.118.1.105 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.27 (128.118.1.27) 56(84) bytes of data. --- 128.118.1.27 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.104 (128.118.1.104) 56(84) bytes of data. --- 128.118.1.104 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.25 (128.118.1.25) 56(84) bytes of data. --- 128.118.1.25 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.103 (128.118.1.103) 56(84) bytes of data. --- 128.118.1.103 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.23 (128.118.1.23) 56(84) bytes of data. PING 128.118.1.100 (128.118.1.100) 56(84) bytes of data. --- 128.118.1.23 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.1.100 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.99 (128.118.1.99) 56(84) bytes of data. --- 128.118.1.99 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.20 (128.118.1.20) 56(84) bytes of data. PING 128.118.1.97 (128.118.1.97) 56(84) bytes of data. --- 128.118.1.97 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.1.20 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.92 (128.118.1.92) 56(84) bytes of data. --- 128.118.1.92 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.16 (128.118.1.16) 56(84) bytes of data. --- 128.118.1.16 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.91 (128.118.1.91) 56(84) bytes of data. --- 128.118.1.91 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.12 (128.118.1.12) 56(84) bytes of data. --- 128.118.1.12 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.90 (128.118.1.90) 56(84) bytes of data. --- 128.118.1.90 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.8 (128.118.1.8) 56(84) bytes of data. --- 128.118.1.8 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.87 (128.118.1.87) 56(84) bytes of data. --- 128.118.1.87 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.86 (128.118.1.86) 56(84) bytes of data. PING 128.118.1.4 (128.118.1.4) 56(84) bytes of data. --- 128.118.1.86 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.1.4 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.84 (128.118.1.84) 56(84) bytes of data. --- 128.118.1.84 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.254 (128.118.0.254) 56(84) bytes of data. --- 128.118.0.254 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.81 (128.118.1.81) 56(84) bytes of data. --- 128.118.1.81 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.250 (128.118.0.250) 56(84) bytes of data. --- 128.118.0.250 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.80 (128.118.1.80) 56(84) bytes of data. --- 128.118.1.80 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.248 (128.118.0.248) 56(84) bytes of data. PING 128.118.1.75 (128.118.1.75) 56(84) bytes of data. --- 128.118.0.248 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.1.75 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.72 (128.118.1.72) 56(84) bytes of data. PING 128.118.0.247 (128.118.0.247) 56(84) bytes of data. --- 128.118.1.72 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.247 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.71 (128.118.1.71) 56(84) bytes of data. --- 128.118.1.71 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.243 (128.118.0.243) 56(84) bytes of data. --- 128.118.0.243 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.66 (128.118.1.66) 56(84) bytes of data. --- 128.118.1.66 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.239 (128.118.0.239) 56(84) bytes of data. PING 128.118.1.65 (128.118.1.65) 56(84) bytes of data. --- 128.118.0.239 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.1.65 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.63 (128.118.1.63) 56(84) bytes of data. PING 128.118.0.231 (128.118.0.231) 56(84) bytes of data. --- 128.118.1.63 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.231 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.61 (128.118.1.61) 56(84) bytes of data. --- 128.118.1.61 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.228 (128.118.0.228) 56(84) bytes of data. --- 128.118.0.228 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.60 (128.118.1.60) 56(84) bytes of data. --- 128.118.1.60 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.227 (128.118.0.227) 56(84) bytes of data. --- 128.118.0.227 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.58 (128.118.1.58) 56(84) bytes of data. --- 128.118.1.58 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.224 (128.118.0.224) 56(84) bytes of data. --- 128.118.0.224 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.57 (128.118.1.57) 56(84) bytes of data. --- 128.118.1.57 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.52 (128.118.1.52) 56(84) bytes of data. PING 128.118.0.219 (128.118.0.219) 56(84) bytes of data. --- 128.118.1.52 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.219 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.51 (128.118.1.51) 56(84) bytes of data. --- 128.118.1.51 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.47 (128.118.1.47) 56(84) bytes of data. PING 128.118.0.216 (128.118.0.216) 56(84) bytes of data. --- 128.118.1.47 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.216 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.40 (128.118.1.40) 56(84) bytes of data. --- 128.118.1.40 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.215 (128.118.0.215) 56(84) bytes of data. PING 128.118.1.38 (128.118.1.38) 56(84) bytes of data. --- 128.118.1.38 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.215 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.36 (128.118.1.36) 56(84) bytes of data. --- 128.118.1.36 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.214 (128.118.0.214) 56(84) bytes of data. PING 128.118.1.34 (128.118.1.34) 56(84) bytes of data. --- 128.118.0.214 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.1.34 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.32 (128.118.1.32) 56(84) bytes of data. --- 128.118.1.32 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.212 (128.118.0.212) 56(84) bytes of data. --- 128.118.0.212 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.31 (128.118.1.31) 56(84) bytes of data. --- 128.118.1.31 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.210 (128.118.0.210) 56(84) bytes of data. PING 128.118.1.28 (128.118.1.28) 56(84) bytes of data. --- 128.118.0.210 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.1.28 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.26 (128.118.1.26) 56(84) bytes of data. --- 128.118.1.26 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.207 (128.118.0.207) 56(84) bytes of data. PING 128.118.1.24 (128.118.1.24) 56(84) bytes of data. --- 128.118.0.207 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.1.24 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.204 (128.118.0.204) 56(84) bytes of data. --- 128.118.0.204 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.22 (128.118.1.22) 56(84) bytes of data. --- 128.118.1.22 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.199 (128.118.0.199) 56(84) bytes of data. --- 128.118.0.199 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.21 (128.118.1.21) 56(84) bytes of data. --- 128.118.1.21 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.197 (128.118.0.197) 56(84) bytes of data. --- 128.118.0.197 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.19 (128.118.1.19) 56(84) bytes of data. --- 128.118.1.19 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.194 (128.118.0.194) 56(84) bytes of data. PING 128.118.1.15 (128.118.1.15) 56(84) bytes of data. --- 128.118.0.194 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.1.15 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.192 (128.118.0.192) 56(84) bytes of data. --- 128.118.0.192 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.11 (128.118.1.11) 56(84) bytes of data. --- 128.118.1.11 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.7 (128.118.1.7) 56(84) bytes of data. --- 128.118.1.7 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.191 (128.118.0.191) 56(84) bytes of data. --- 128.118.0.191 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.3 (128.118.1.3) 56(84) bytes of data. --- 128.118.1.3 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.190 (128.118.0.190) 56(84) bytes of data. PING 128.118.1.0 (128.118.1.0) 56(84) bytes of data. --- 128.118.0.190 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.1.0 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.255 (128.118.0.255) 56(84) bytes of data. --- 128.118.0.255 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.188 (128.118.0.188) 56(84) bytes of data. --- 128.118.0.188 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.253 (128.118.0.253) 56(84) bytes of data. --- 128.118.0.253 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.186 (128.118.0.186) 56(84) bytes of data. --- 128.118.0.186 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.252 (128.118.0.252) 56(84) bytes of data. --- 128.118.0.252 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.184 (128.118.0.184) 56(84) bytes of data. PING 128.118.0.251 (128.118.0.251) 56(84) bytes of data. --- 128.118.0.251 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.184 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.249 (128.118.0.249) 56(84) bytes of data. --- 128.118.0.249 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.181 (128.118.0.181) 56(84) bytes of data. --- 128.118.0.181 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.246 (128.118.0.246) 56(84) bytes of data. --- 128.118.0.246 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.179 (128.118.0.179) 56(84) bytes of data. PING 128.118.0.245 (128.118.0.245) 56(84) bytes of data. --- 128.118.0.245 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.179 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.244 (128.118.0.244) 56(84) bytes of data. --- 128.118.0.244 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.177 (128.118.0.177) 56(84) bytes of data. --- 128.118.0.177 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.241 (128.118.0.241) 56(84) bytes of data. --- 128.118.0.241 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.237 (128.118.0.237) 56(84) bytes of data. PING 128.118.0.174 (128.118.0.174) 56(84) bytes of data. --- 128.118.0.237 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.174 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.235 (128.118.0.235) 56(84) bytes of data. --- 128.118.0.235 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.164 (128.118.0.164) 56(84) bytes of data. --- 128.118.0.164 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.233 (128.118.0.233) 56(84) bytes of data. --- 128.118.0.233 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.163 (128.118.0.163) 56(84) bytes of data. --- 128.118.0.163 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.230 (128.118.0.230) 56(84) bytes of data. --- 128.118.0.230 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.162 (128.118.0.162) 56(84) bytes of data. PING 128.118.0.226 (128.118.0.226) 56(84) bytes of data. --- 128.118.0.162 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.226 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.218 (128.118.0.218) 56(84) bytes of data. --- 128.118.0.218 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.160 (128.118.0.160) 56(84) bytes of data. --- 128.118.0.160 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.211 (128.118.0.211) 56(84) bytes of data. --- 128.118.0.211 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.158 (128.118.0.158) 56(84) bytes of data. --- 128.118.0.158 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.208 (128.118.0.208) 56(84) bytes of data. --- 128.118.0.208 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.157 (128.118.0.157) 56(84) bytes of data. --- 128.118.0.157 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.205 (128.118.0.205) 56(84) bytes of data. --- 128.118.0.205 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.156 (128.118.0.156) 56(84) bytes of data. --- 128.118.0.156 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.202 (128.118.0.202) 56(84) bytes of data. PING 128.118.0.155 (128.118.0.155) 56(84) bytes of data. --- 128.118.0.202 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.155 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.201 (128.118.0.201) 56(84) bytes of data. PING 128.118.0.154 (128.118.0.154) 56(84) bytes of data. --- 128.118.0.201 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.154 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.153 (128.118.0.153) 56(84) bytes of data. PING 128.118.0.200 (128.118.0.200) 56(84) bytes of data. --- 128.118.0.153 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.200 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.152 (128.118.0.152) 56(84) bytes of data. --- 128.118.0.152 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.198 (128.118.0.198) 56(84) bytes of data. --- 128.118.0.198 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.150 (128.118.0.150) 56(84) bytes of data. --- 128.118.0.150 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.196 (128.118.0.196) 56(84) bytes of data. --- 128.118.0.196 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.148 (128.118.0.148) 56(84) bytes of data. --- 128.118.0.148 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.195 (128.118.0.195) 56(84) bytes of data. --- 128.118.0.195 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.134 (128.118.0.134) 56(84) bytes of data. --- 128.118.0.134 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.193 (128.118.0.193) 56(84) bytes of data. --- 128.118.0.193 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.131 (128.118.0.131) 56(84) bytes of data. --- 128.118.0.131 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.189 (128.118.0.189) 56(84) bytes of data. --- 128.118.0.189 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.128 (128.118.0.128) 56(84) bytes of data. --- 128.118.0.128 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.187 (128.118.0.187) 56(84) bytes of data. --- 128.118.0.187 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.127 (128.118.0.127) 56(84) bytes of data. --- 128.118.0.127 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.185 (128.118.0.185) 56(84) bytes of data. --- 128.118.0.185 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.119 (128.118.0.119) 56(84) bytes of data. --- 128.118.0.119 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.183 (128.118.0.183) 56(84) bytes of data. --- 128.118.0.183 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.118 (128.118.0.118) 56(84) bytes of data. --- 128.118.0.118 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.182 (128.118.0.182) 56(84) bytes of data. --- 128.118.0.182 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.110 (128.118.0.110) 56(84) bytes of data. --- 128.118.0.110 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.180 (128.118.0.180) 56(84) bytes of data. --- 128.118.0.180 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.109 (128.118.0.109) 56(84) bytes of data. --- 128.118.0.109 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.178 (128.118.0.178) 56(84) bytes of data. --- 128.118.0.178 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.107 (128.118.0.107) 56(84) bytes of data. --- 128.118.0.107 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.176 (128.118.0.176) 56(84) bytes of data. --- 128.118.0.176 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.101 (128.118.0.101) 56(84) bytes of data. --- 128.118.0.101 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.175 (128.118.0.175) 56(84) bytes of data. PING 128.118.0.100 (128.118.0.100) 56(84) bytes of data. --- 128.118.0.175 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.100 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.173 (128.118.0.173) 56(84) bytes of data. --- 128.118.0.173 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.99 (128.118.0.99) 56(84) bytes of data. --- 128.118.0.99 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.172 (128.118.0.172) 56(84) bytes of data. --- 128.118.0.172 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.95 (128.118.0.95) 56(84) bytes of data. --- 128.118.0.95 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.171 (128.118.0.171) 56(84) bytes of data. --- 128.118.0.171 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.94 (128.118.0.94) 56(84) bytes of data. --- 128.118.0.94 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.170 (128.118.0.170) 56(84) bytes of data. --- 128.118.0.170 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.81 (128.118.0.81) 56(84) bytes of data. --- 128.118.0.81 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.169 (128.118.0.169) 56(84) bytes of data. --- 128.118.0.169 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.80 (128.118.0.80) 56(84) bytes of data. --- 128.118.0.80 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.168 (128.118.0.168) 56(84) bytes of data. --- 128.118.0.168 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.79 (128.118.0.79) 56(84) bytes of data. --- 128.118.0.79 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.167 (128.118.0.167) 56(84) bytes of data. PING 128.118.0.78 (128.118.0.78) 56(84) bytes of data. --- 128.118.0.167 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.78 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.166 (128.118.0.166) 56(84) bytes of data. PING 128.118.0.68 (128.118.0.68) 56(84) bytes of data. --- 128.118.0.166 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.68 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.165 (128.118.0.165) 56(84) bytes of data. PING 128.118.0.67 (128.118.0.67) 56(84) bytes of data. --- 128.118.0.165 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.67 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.161 (128.118.0.161) 56(84) bytes of data. PING 128.118.0.64 (128.118.0.64) 56(84) bytes of data. --- 128.118.0.161 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.64 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.159 (128.118.0.159) 56(84) bytes of data. PING 128.118.0.63 (128.118.0.63) 56(84) bytes of data. --- 128.118.0.159 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.63 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.151 (128.118.0.151) 56(84) bytes of data. --- 128.118.0.151 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.62 (128.118.0.62) 56(84) bytes of data. --- 128.118.0.62 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.61 (128.118.0.61) 56(84) bytes of data. PING 128.118.0.149 (128.118.0.149) 56(84) bytes of data. --- 128.118.0.61 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.149 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.60 (128.118.0.60) 56(84) bytes of data. PING 128.118.0.147 (128.118.0.147) 56(84) bytes of data. --- 128.118.0.60 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.147 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.139 (128.118.0.139) 56(84) bytes of data. --- 128.118.0.139 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.58 (128.118.0.58) 56(84) bytes of data. --- 128.118.0.58 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.138 (128.118.0.138) 56(84) bytes of data. --- 128.118.0.138 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.55 (128.118.0.55) 56(84) bytes of data. --- 128.118.0.55 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.137 (128.118.0.137) 56(84) bytes of data. --- 128.118.0.137 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.52 (128.118.0.52) 56(84) bytes of data. --- 128.118.0.52 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.136 (128.118.0.136) 56(84) bytes of data. --- 128.118.0.136 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.49 (128.118.0.49) 56(84) bytes of data. --- 128.118.0.49 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.48 (128.118.0.48) 56(84) bytes of data. PING 128.118.0.135 (128.118.0.135) 56(84) bytes of data. --- 128.118.0.48 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.135 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.133 (128.118.0.133) 56(84) bytes of data. PING 128.118.0.47 (128.118.0.47) 56(84) bytes of data. --- 128.118.0.133 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.47 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.132 (128.118.0.132) 56(84) bytes of data. --- 128.118.0.132 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.45 (128.118.0.45) 56(84) bytes of data. --- 128.118.0.45 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.130 (128.118.0.130) 56(84) bytes of data. --- 128.118.0.130 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.38 (128.118.0.38) 56(84) bytes of data. --- 128.118.0.38 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.126 (128.118.0.126) 56(84) bytes of data. --- 128.118.0.126 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.37 (128.118.0.37) 56(84) bytes of data. --- 128.118.0.37 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.124 (128.118.0.124) 56(84) bytes of data. --- 128.118.0.124 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.36 (128.118.0.36) 56(84) bytes of data. --- 128.118.0.36 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.123 (128.118.0.123) 56(84) bytes of data. --- 128.118.0.123 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.35 (128.118.0.35) 56(84) bytes of data. --- 128.118.0.35 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.122 (128.118.0.122) 56(84) bytes of data. --- 128.118.0.122 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.34 (128.118.0.34) 56(84) bytes of data. --- 128.118.0.34 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.121 (128.118.0.121) 56(84) bytes of data. PING 128.118.0.32 (128.118.0.32) 56(84) bytes of data. --- 128.118.0.121 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.32 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.120 (128.118.0.120) 56(84) bytes of data. --- 128.118.0.120 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.115 (128.118.0.115) 56(84) bytes of data. --- 128.118.0.115 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.111 (128.118.0.111) 56(84) bytes of data. --- 128.118.0.111 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.104 (128.118.0.104) 56(84) bytes of data. --- 128.118.0.104 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.97 (128.118.0.97) 56(84) bytes of data. --- 128.118.0.97 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.90 (128.118.0.90) 56(84) bytes of data. --- 128.118.0.90 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.88 (128.118.0.88) 56(84) bytes of data. --- 128.118.0.88 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.87 (128.118.0.87) 56(84) bytes of data. --- 128.118.0.87 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.86 (128.118.0.86) 56(84) bytes of data. --- 128.118.0.86 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.85 (128.118.0.85) 56(84) bytes of data. --- 128.118.0.85 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.0 (128.118.0.0) 56(84) bytes of data. --- 128.118.0.0 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.84 (128.118.0.84) 56(84) bytes of data. --- 128.118.0.84 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.83 (128.118.0.83) 56(84) bytes of data. PING 128.118.0.1 (128.118.0.1) 56(84) bytes of data. --- 128.118.0.83 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.1 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.3 (128.118.0.3) 56(84) bytes of data. PING 128.118.0.82 (128.118.0.82) 56(84) bytes of data. --- 128.118.0.3 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.82 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.77 (128.118.0.77) 56(84) bytes of data. PING 128.118.0.4 (128.118.0.4) 56(84) bytes of data. --- 128.118.0.77 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.4 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.59 (128.118.0.59) 56(84) bytes of data. PING 128.118.0.5 (128.118.0.5) 56(84) bytes of data. --- 128.118.0.59 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.5 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.57 (128.118.0.57) 56(84) bytes of data. PING 128.118.0.6 (128.118.0.6) 56(84) bytes of data. --- 128.118.0.57 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.6 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.56 (128.118.0.56) 56(84) bytes of data. PING 128.118.0.7 (128.118.0.7) 56(84) bytes of data. --- 128.118.0.56 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.7 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.54 (128.118.0.54) 56(84) bytes of data. --- 128.118.0.54 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.8 (128.118.0.8) 56(84) bytes of data. --- 128.118.0.8 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.53 (128.118.0.53) 56(84) bytes of data. --- 128.118.0.53 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.9 (128.118.0.9) 56(84) bytes of data. --- 128.118.0.9 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.51 (128.118.0.51) 56(84) bytes of data. PING 128.118.0.10 (128.118.0.10) 56(84) bytes of data. --- 128.118.0.51 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.10 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.50 (128.118.0.50) 56(84) bytes of data. PING 128.118.0.11 (128.118.0.11) 56(84) bytes of data. --- 128.118.0.50 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.11 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.46 (128.118.0.46) 56(84) bytes of data. PING 128.118.0.12 (128.118.0.12) 56(84) bytes of data. --- 128.118.0.46 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.12 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.44 (128.118.0.44) 56(84) bytes of data. PING 128.118.0.13 (128.118.0.13) 56(84) bytes of data. --- 128.118.0.44 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.13 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.43 (128.118.0.43) 56(84) bytes of data. PING 128.118.0.14 (128.118.0.14) 56(84) bytes of data. --- 128.118.0.43 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.14 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.42 (128.118.0.42) 56(84) bytes of data. PING 128.118.0.15 (128.118.0.15) 56(84) bytes of data. --- 128.118.0.42 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.15 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.41 (128.118.0.41) 56(84) bytes of data. PING 128.118.0.16 (128.118.0.16) 56(84) bytes of data. --- 128.118.0.41 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.16 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.40 (128.118.0.40) 56(84) bytes of data. PING 128.118.0.17 (128.118.0.17) 56(84) bytes of data. --- 128.118.0.40 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.17 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.39 (128.118.0.39) 56(84) bytes of data. PING 128.118.0.18 (128.118.0.18) 56(84) bytes of data. --- 128.118.0.39 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.18 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.33 (128.118.0.33) 56(84) bytes of data. PING 128.118.0.19 (128.118.0.19) 56(84) bytes of data. --- 128.118.0.33 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.19 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.20 (128.118.0.20) 56(84) bytes of data. PING 128.118.0.31 (128.118.0.31) 56(84) bytes of data. --- 128.118.0.20 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.31 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.21 (128.118.0.21) 56(84) bytes of data. --- 128.118.0.21 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.30 (128.118.0.30) 56(84) bytes of data. --- 128.118.0.30 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.29 (128.118.0.29) 56(84) bytes of data. --- 128.118.0.29 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.28 (128.118.0.28) 56(84) bytes of data. --- 128.118.0.28 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.27 (128.118.0.27) 56(84) bytes of data. --- 128.118.0.27 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.26 (128.118.0.26) 56(84) bytes of data. --- 128.118.0.26 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.25 (128.118.0.25) 56(84) bytes of data. --- 128.118.0.25 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.24 (128.118.0.24) 56(84) bytes of data. --- 128.118.0.24 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.23 (128.118.0.23) 56(84) bytes of data. --- 128.118.0.23 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.22 (128.118.0.22) 56(84) bytes of data. --- 128.118.0.22 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.2 (128.118.0.2) 56(84) bytes of data. 64 bytes from 128.118.0.2: icmp_req=1 ttl=241 time=144 ms --- 128.118.0.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 144.211/144.211/144.211/0.000 ms PING 128.118.0.65 (128.118.0.65) 56(84) bytes of data. 64 bytes from 128.118.0.65: icmp_req=1 ttl=51 time=29.3 ms --- 128.118.0.65 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.368/29.368/29.368/0.000 ms PING 128.118.0.66 (128.118.0.66) 56(84) bytes of data. 64 bytes from 128.118.0.66: icmp_req=1 ttl=115 time=29.2 ms --- 128.118.0.66 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.203/29.203/29.203/0.000 ms PING 128.118.0.69 (128.118.0.69) 56(84) bytes of data. 64 bytes from 128.118.0.69: icmp_req=1 ttl=51 time=30.7 ms --- 128.118.0.69 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.708/30.708/30.708/0.000 ms PING 128.118.0.70 (128.118.0.70) 56(84) bytes of data. 64 bytes from 128.118.0.70: icmp_req=1 ttl=50 time=29.7 ms --- 128.118.0.70 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.718/29.718/29.718/0.000 ms PING 128.118.0.71 (128.118.0.71) 56(84) bytes of data. 64 bytes from 128.118.0.71: icmp_req=1 ttl=51 time=36.9 ms --- 128.118.0.71 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 36.900/36.900/36.900/0.000 ms PING 128.118.0.72 (128.118.0.72) 56(84) bytes of data. 64 bytes from 128.118.0.72: icmp_req=1 ttl=50 time=36.2 ms --- 128.118.0.72 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 36.271/36.271/36.271/0.000 ms PING 128.118.0.73 (128.118.0.73) 56(84) bytes of data. 64 bytes from 128.118.0.73: icmp_req=1 ttl=51 time=31.0 ms --- 128.118.0.73 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 31.064/31.064/31.064/0.000 ms PING 128.118.0.74 (128.118.0.74) 56(84) bytes of data. 64 bytes from 128.118.0.74: icmp_req=1 ttl=50 time=31.7 ms --- 128.118.0.74 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 31.709/31.709/31.709/0.000 ms PING 128.118.0.75 (128.118.0.75) 56(84) bytes of data. 64 bytes from 128.118.0.75: icmp_req=1 ttl=51 time=31.9 ms --- 128.118.0.75 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 31.901/31.901/31.901/0.000 ms PING 128.118.0.76 (128.118.0.76) 56(84) bytes of data. 64 bytes from 128.118.0.76: icmp_req=1 ttl=51 time=38.2 ms --- 128.118.0.76 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 38.265/38.265/38.265/0.000 ms PING 128.118.0.89 (128.118.0.89) 56(84) bytes of data. 64 bytes from 128.118.0.89: icmp_req=1 ttl=114 time=32.4 ms --- 128.118.0.89 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 32.467/32.467/32.467/0.000 ms PING 128.118.0.91 (128.118.0.91) 56(84) bytes of data. 64 bytes from 128.118.0.91: icmp_req=1 ttl=114 time=29.3 ms --- 128.118.0.91 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.346/29.346/29.346/0.000 ms PING 128.118.0.92 (128.118.0.92) 56(84) bytes of data. 64 bytes from 128.118.0.92: icmp_req=1 ttl=114 time=30.9 ms --- 128.118.0.92 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.952/30.952/30.952/0.000 ms PING 128.118.0.93 (128.118.0.93) 56(84) bytes of data. 64 bytes from 128.118.0.93: icmp_req=1 ttl=115 time=30.7 ms --- 128.118.0.93 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.758/30.758/30.758/0.000 ms PING 128.118.0.96 (128.118.0.96) 56(84) bytes of data. 64 bytes from 128.118.0.96: icmp_req=1 ttl=115 time=36.2 ms --- 128.118.0.96 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 36.286/36.286/36.286/0.000 ms PING 128.118.0.98 (128.118.0.98) 56(84) bytes of data. 64 bytes from 128.118.0.98: icmp_req=1 ttl=115 time=33.9 ms --- 128.118.0.98 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 33.942/33.942/33.942/0.000 ms PING 128.118.0.102 (128.118.0.102) 56(84) bytes of data. 64 bytes from 128.118.0.102: icmp_req=1 ttl=114 time=32.6 ms --- 128.118.0.102 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 32.672/32.672/32.672/0.000 ms PING 128.118.0.103 (128.118.0.103) 56(84) bytes of data. 64 bytes from 128.118.0.103: icmp_req=1 ttl=115 time=43.0 ms --- 128.118.0.103 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 43.099/43.099/43.099/0.000 ms PING 128.118.0.105 (128.118.0.105) 56(84) bytes of data. 64 bytes from 128.118.0.105: icmp_req=1 ttl=115 time=42.4 ms --- 128.118.0.105 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 42.426/42.426/42.426/0.000 ms PING 128.118.0.106 (128.118.0.106) 56(84) bytes of data. 64 bytes from 128.118.0.106: icmp_req=1 ttl=114 time=29.6 ms --- 128.118.0.106 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.695/29.695/29.695/0.000 ms PING 128.118.0.108 (128.118.0.108) 56(84) bytes of data. 64 bytes from 128.118.0.108: icmp_req=1 ttl=115 time=29.4 ms --- 128.118.0.108 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.426/29.426/29.426/0.000 ms PING 128.118.0.111 (128.118.0.111) 56(84) bytes of data. 64 bytes from 128.118.0.111: icmp_req=1 ttl=114 time=38.1 ms --- 128.118.0.111 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 38.109/38.109/38.109/0.000 ms PING 128.118.0.112 (128.118.0.112) 56(84) bytes of data. 64 bytes from 128.118.0.112: icmp_req=1 ttl=114 time=30.7 ms --- 128.118.0.112 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.728/30.728/30.728/0.000 ms PING 128.118.0.113 (128.118.0.113) 56(84) bytes of data. 64 bytes from 128.118.0.113: icmp_req=1 ttl=115 time=34.7 ms --- 128.118.0.113 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 34.770/34.770/34.770/0.000 ms PING 128.118.0.114 (128.118.0.114) 56(84) bytes of data. 64 bytes from 128.118.0.114: icmp_req=1 ttl=114 time=30.5 ms --- 128.118.0.114 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.543/30.543/30.543/0.000 ms PING 128.118.0.116 (128.118.0.116) 56(84) bytes of data. 64 bytes from 128.118.0.116: icmp_req=1 ttl=115 time=30.2 ms --- 128.118.0.116 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.290/30.290/30.290/0.000 ms PING 128.118.0.117 (128.118.0.117) 56(84) bytes of data. 64 bytes from 128.118.0.117: icmp_req=1 ttl=114 time=29.6 ms --- 128.118.0.117 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.621/29.621/29.621/0.000 ms PING 128.118.0.125 (128.118.0.125) 56(84) bytes of data. 64 bytes from 128.118.0.125: icmp_req=1 ttl=51 time=32.1 ms --- 128.118.0.125 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 32.128/32.128/32.128/0.000 ms PING 128.118.0.129 (128.118.0.129) 56(84) bytes of data. 64 bytes from 128.118.0.129: icmp_req=1 ttl=51 time=30.2 ms --- 128.118.0.129 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.224/30.224/30.224/0.000 ms PING 128.118.0.140 (128.118.0.140) 56(84) bytes of data. 64 bytes from 128.118.0.140: icmp_req=1 ttl=51 time=29.4 ms --- 128.118.0.140 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.444/29.444/29.444/0.000 ms PING 128.118.0.141 (128.118.0.141) 56(84) bytes of data. 64 bytes from 128.118.0.141: icmp_req=1 ttl=50 time=29.7 ms --- 128.118.0.141 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.751/29.751/29.751/0.000 ms PING 128.118.0.142 (128.118.0.142) 56(84) bytes of data. 64 bytes from 128.118.0.142: icmp_req=1 ttl=51 time=30.7 ms --- 128.118.0.142 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.720/30.720/30.720/0.000 ms PING 128.118.0.143 (128.118.0.143) 56(84) bytes of data. 64 bytes from 128.118.0.143: icmp_req=1 ttl=50 time=29.3 ms --- 128.118.0.143 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.360/29.360/29.360/0.000 ms PING 128.118.0.144 (128.118.0.144) 56(84) bytes of data. 64 bytes from 128.118.0.144: icmp_req=1 ttl=50 time=32.2 ms --- 128.118.0.144 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 32.203/32.203/32.203/0.000 ms PING 128.118.0.145 (128.118.0.145) 56(84) bytes of data. 64 bytes from 128.118.0.145: icmp_req=1 ttl=51 time=30.9 ms --- 128.118.0.145 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.929/30.929/30.929/0.000 ms PING 128.118.0.146 (128.118.0.146) 56(84) bytes of data. 64 bytes from 128.118.0.146: icmp_req=1 ttl=50 time=32.1 ms --- 128.118.0.146 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 32.151/32.151/32.151/0.000 ms PING 128.118.0.203 (128.118.0.203) 56(84) bytes of data. 64 bytes from 128.118.0.203: icmp_req=1 ttl=115 time=29.8 ms --- 128.118.0.203 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.833/29.833/29.833/0.000 ms PING 128.118.0.206 (128.118.0.206) 56(84) bytes of data. 64 bytes from 128.118.0.206: icmp_req=1 ttl=115 time=30.1 ms --- 128.118.0.206 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.127/30.127/30.127/0.000 ms PING 128.118.0.209 (128.118.0.209) 56(84) bytes of data. 64 bytes from 128.118.0.209: icmp_req=1 ttl=115 time=28.1 ms --- 128.118.0.209 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.174/28.174/28.174/0.000 ms PING 128.118.0.210 (128.118.0.210) 56(84) bytes of data. 64 bytes from 128.118.0.210: icmp_req=1 ttl=114 time=29.8 ms --- 128.118.0.210 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.801/29.801/29.801/0.000 ms PING 128.118.0.211 (128.118.0.211) 56(84) bytes of data. 64 bytes from 128.118.0.211: icmp_req=1 ttl=115 time=30.1 ms --- 128.118.0.211 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.120/30.120/30.120/0.000 ms PING 128.118.0.213 (128.118.0.213) 56(84) bytes of data. 64 bytes from 128.118.0.213: icmp_req=1 ttl=114 time=29.3 ms --- 128.118.0.213 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.339/29.339/29.339/0.000 ms PING 128.118.0.215 (128.118.0.215) 56(84) bytes of data. 64 bytes from 128.118.0.215: icmp_req=1 ttl=114 time=29.1 ms --- 128.118.0.215 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.117/29.117/29.117/0.000 ms PING 128.118.0.217 (128.118.0.217) 56(84) bytes of data. 64 bytes from 128.118.0.217: icmp_req=1 ttl=114 time=34.0 ms --- 128.118.0.217 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 34.019/34.019/34.019/0.000 ms PING 128.118.0.220 (128.118.0.220) 56(84) bytes of data. 64 bytes from 128.118.0.220: icmp_req=1 ttl=114 time=34.5 ms --- 128.118.0.220 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 34.580/34.580/34.580/0.000 ms PING 128.118.0.222 (128.118.0.222) 56(84) bytes of data. 64 bytes from 128.118.0.222: icmp_req=1 ttl=114 time=31.6 ms --- 128.118.0.222 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 31.672/31.672/31.672/0.000 ms PING 128.118.0.223 (128.118.0.223) 56(84) bytes of data. 64 bytes from 128.118.0.223: icmp_req=1 ttl=115 time=30.2 ms --- 128.118.0.223 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.270/30.270/30.270/0.000 ms PING 128.118.0.225 (128.118.0.225) 56(84) bytes of data. 64 bytes from 128.118.0.225: icmp_req=1 ttl=114 time=30.7 ms --- 128.118.0.225 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.729/30.729/30.729/0.000 ms PING 128.118.0.232 (128.118.0.232) 56(84) bytes of data. 64 bytes from 128.118.0.232: icmp_req=1 ttl=114 time=29.1 ms --- 128.118.0.232 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.120/29.120/29.120/0.000 ms PING 128.118.0.234 (128.118.0.234) 56(84) bytes of data. 64 bytes from 128.118.0.234: icmp_req=1 ttl=114 time=29.3 ms --- 128.118.0.234 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.319/29.319/29.319/0.000 ms PING 128.118.0.236 (128.118.0.236) 56(84) bytes of data. 64 bytes from 128.118.0.236: icmp_req=1 ttl=115 time=28.4 ms --- 128.118.0.236 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.435/28.435/28.435/0.000 ms PING 128.118.0.238 (128.118.0.238) 56(84) bytes of data. 64 bytes from 128.118.0.238: icmp_req=1 ttl=115 time=29.4 ms --- 128.118.0.238 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.470/29.470/29.470/0.000 ms PING 128.118.0.240 (128.118.0.240) 56(84) bytes of data. 64 bytes from 128.118.0.240: icmp_req=1 ttl=114 time=28.6 ms --- 128.118.0.240 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 28.622/28.622/28.622/0.000 ms PING 128.118.0.241 (128.118.0.241) 56(84) bytes of data. 64 bytes from 128.118.0.241: icmp_req=1 ttl=115 time=29.5 ms --- 128.118.0.241 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.566/29.566/29.566/0.000 ms PING 128.118.0.242 (128.118.0.242) 56(84) bytes of data. 64 bytes from 128.118.0.242: icmp_req=1 ttl=114 time=30.4 ms --- 128.118.0.242 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.410/30.410/30.410/0.000 ms PING 128.118.1.1 (128.118.1.1) 56(84) bytes of data. 64 bytes from 128.118.1.1: icmp_req=1 ttl=243 time=31.9 ms --- 128.118.1.1 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 31.968/31.968/31.968/0.000 ms PING 128.118.1.2 (128.118.1.2) 56(84) bytes of data. 64 bytes from 128.118.1.2: icmp_req=1 ttl=241 time=43.4 ms --- 128.118.1.2 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 43.451/43.451/43.451/0.000 ms PING 128.118.1.5 (128.118.1.5) 56(84) bytes of data. 64 bytes from 128.118.1.5: icmp_req=1 ttl=242 time=43.1 ms --- 128.118.1.5 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 43.115/43.115/43.115/0.000 ms PING 128.118.1.6 (128.118.1.6) 56(84) bytes of data. 64 bytes from 128.118.1.6: icmp_req=1 ttl=242 time=33.7 ms --- 128.118.1.6 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 33.793/33.793/33.793/0.000 ms PING 128.118.1.9 (128.118.1.9) 56(84) bytes of data. 64 bytes from 128.118.1.9: icmp_req=1 ttl=242 time=30.3 ms --- 128.118.1.9 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.369/30.369/30.369/0.000 ms PING 128.118.1.10 (128.118.1.10) 56(84) bytes of data. 64 bytes from 128.118.1.10: icmp_req=1 ttl=241 time=31.0 ms --- 128.118.1.10 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 31.063/31.063/31.063/0.000 ms PING 128.118.1.13 (128.118.1.13) 56(84) bytes of data. 64 bytes from 128.118.1.13: icmp_req=1 ttl=242 time=33.4 ms --- 128.118.1.13 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 33.415/33.415/33.415/0.000 ms PING 128.118.1.14 (128.118.1.14) 56(84) bytes of data. 64 bytes from 128.118.1.14: icmp_req=1 ttl=241 time=30.7 ms --- 128.118.1.14 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.730/30.730/30.730/0.000 ms PING 128.118.1.17 (128.118.1.17) 56(84) bytes of data. 64 bytes from 128.118.1.17: icmp_req=1 ttl=243 time=29.9 ms --- 128.118.1.17 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.975/29.975/29.975/0.000 ms PING 128.118.1.18 (128.118.1.18) 56(84) bytes of data. 64 bytes from 128.118.1.18: icmp_req=1 ttl=241 time=30.1 ms --- 128.118.1.18 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.182/30.182/30.182/0.000 ms PING 128.118.1.41 (128.118.1.41) 56(84) bytes of data. 64 bytes from 128.118.1.41: icmp_req=1 ttl=243 time=30.0 ms --- 128.118.1.41 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.079/30.079/30.079/0.000 ms PING 128.118.1.42 (128.118.1.42) 56(84) bytes of data. 64 bytes from 128.118.1.42: icmp_req=1 ttl=243 time=46.6 ms --- 128.118.1.42 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 46.652/46.652/46.652/0.000 ms PING 128.118.1.45 (128.118.1.45) 56(84) bytes of data. 64 bytes from 128.118.1.45: icmp_req=1 ttl=242 time=29.6 ms --- 128.118.1.45 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 29.619/29.619/29.619/0.000 ms PING 128.118.1.46 (128.118.1.46) 56(84) bytes of data. 64 bytes from 128.118.1.46: icmp_req=1 ttl=242 time=34.7 ms --- 128.118.1.46 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 34.717/34.717/34.717/0.000 ms PING 128.118.1.49 (128.118.1.49) 56(84) bytes of data. 64 bytes from 128.118.1.49: icmp_req=1 ttl=242 time=30.4 ms --- 128.118.1.49 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.476/30.476/30.476/0.000 ms PING 128.118.1.50 (128.118.1.50) 56(84) bytes of data. 64 bytes from 128.118.1.50: icmp_req=1 ttl=243 time=67.4 ms --- 128.118.1.50 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 67.492/67.492/67.492/0.000 ms PING 128.118.1.53 (128.118.1.53) 56(84) bytes of data. 64 bytes from 128.118.1.53: icmp_req=1 ttl=242 time=30.0 ms --- 128.118.1.53 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.009/30.009/30.009/0.000 ms PING 128.118.1.54 (128.118.1.54) 56(84) bytes of data. 64 bytes from 128.118.1.54: icmp_req=1 ttl=242 time=30.9 ms --- 128.118.1.54 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.982/30.982/30.982/0.000 ms PING 128.118.1.69 (128.118.1.69) 56(84) bytes of data. 64 bytes from 128.118.1.69: icmp_req=1 ttl=243 time=34.2 ms --- 128.118.1.69 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 34.265/34.265/34.265/0.000 ms PING 128.118.1.70 (128.118.1.70) 56(84) bytes of data. 64 bytes from 128.118.1.70: icmp_req=1 ttl=242 time=30.6 ms --- 128.118.1.70 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 30.658/30.658/30.658/0.000 ms PING 128.118.1.80 (128.118.1.80) 56(84) bytes of data. --- 128.118.1.80 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.79 (128.118.1.79) 56(84) bytes of data. PING 128.118.1.78 (128.118.1.78) 56(84) bytes of data. --- 128.118.1.79 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.1.78 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.76 (128.118.1.76) 56(84) bytes of data. --- 128.118.1.76 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.77 (128.118.1.77) 56(84) bytes of data. --- 128.118.1.77 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.75 (128.118.1.75) 56(84) bytes of data. --- 128.118.1.75 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.74 (128.118.1.74) 56(84) bytes of data. --- 128.118.1.74 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.73 (128.118.1.73) 56(84) bytes of data. --- 128.118.1.73 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.72 (128.118.1.72) 56(84) bytes of data. --- 128.118.1.72 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.71 (128.118.1.71) 56(84) bytes of data. --- 128.118.1.71 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.67 (128.118.1.67) 56(84) bytes of data. --- 128.118.1.67 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.68 (128.118.1.68) 56(84) bytes of data. --- 128.118.1.68 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.66 (128.118.1.66) 56(84) bytes of data. --- 128.118.1.66 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.64 (128.118.1.64) 56(84) bytes of data. --- 128.118.1.64 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.65 (128.118.1.65) 56(84) bytes of data. --- 128.118.1.65 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.63 (128.118.1.63) 56(84) bytes of data. --- 128.118.1.63 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.62 (128.118.1.62) 56(84) bytes of data. --- 128.118.1.62 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.61 (128.118.1.61) 56(84) bytes of data. --- 128.118.1.61 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.60 (128.118.1.60) 56(84) bytes of data. --- 128.118.1.60 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.59 (128.118.1.59) 56(84) bytes of data. --- 128.118.1.59 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.58 (128.118.1.58) 56(84) bytes of data. --- 128.118.1.58 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.57 (128.118.1.57) 56(84) bytes of data. --- 128.118.1.57 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.56 (128.118.1.56) 56(84) bytes of data. --- 128.118.1.56 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.51 (128.118.1.51) 56(84) bytes of data. --- 128.118.1.51 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.55 (128.118.1.55) 56(84) bytes of data. --- 128.118.1.55 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.48 (128.118.1.48) 56(84) bytes of data. --- 128.118.1.48 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.52 (128.118.1.52) 56(84) bytes of data. --- 128.118.1.52 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.37 (128.118.1.37) 56(84) bytes of data. --- 128.118.1.37 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.47 (128.118.1.47) 56(84) bytes of data. --- 128.118.1.47 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.36 (128.118.1.36) 56(84) bytes of data. --- 128.118.1.36 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.44 (128.118.1.44) 56(84) bytes of data. --- 128.118.1.44 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.34 (128.118.1.34) 56(84) bytes of data. --- 128.118.1.34 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.43 (128.118.1.43) 56(84) bytes of data. --- 128.118.1.43 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.31 (128.118.1.31) 56(84) bytes of data. --- 128.118.1.31 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.40 (128.118.1.40) 56(84) bytes of data. --- 128.118.1.40 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.30 (128.118.1.30) 56(84) bytes of data. --- 128.118.1.30 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.39 (128.118.1.39) 56(84) bytes of data. --- 128.118.1.39 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.29 (128.118.1.29) 56(84) bytes of data. --- 128.118.1.29 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.38 (128.118.1.38) 56(84) bytes of data. --- 128.118.1.38 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.27 (128.118.1.27) 56(84) bytes of data. --- 128.118.1.27 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.35 (128.118.1.35) 56(84) bytes of data. --- 128.118.1.35 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.24 (128.118.1.24) 56(84) bytes of data. --- 128.118.1.24 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.33 (128.118.1.33) 56(84) bytes of data. --- 128.118.1.33 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.23 (128.118.1.23) 56(84) bytes of data. --- 128.118.1.23 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.32 (128.118.1.32) 56(84) bytes of data. --- 128.118.1.32 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.15 (128.118.1.15) 56(84) bytes of data. --- 128.118.1.15 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.28 (128.118.1.28) 56(84) bytes of data. --- 128.118.1.28 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.12 (128.118.1.12) 56(84) bytes of data. --- 128.118.1.12 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.26 (128.118.1.26) 56(84) bytes of data. --- 128.118.1.26 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.8 (128.118.1.8) 56(84) bytes of data. --- 128.118.1.8 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.25 (128.118.1.25) 56(84) bytes of data. --- 128.118.1.25 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.4 (128.118.1.4) 56(84) bytes of data. --- 128.118.1.4 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.22 (128.118.1.22) 56(84) bytes of data. --- 128.118.1.22 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.3 (128.118.1.3) 56(84) bytes of data. --- 128.118.1.3 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.21 (128.118.1.21) 56(84) bytes of data. --- 128.118.1.21 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.254 (128.118.0.254) 56(84) bytes of data. --- 128.118.0.254 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.20 (128.118.1.20) 56(84) bytes of data. --- 128.118.1.20 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.253 (128.118.0.253) 56(84) bytes of data. --- 128.118.0.253 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.19 (128.118.1.19) 56(84) bytes of data. --- 128.118.1.19 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.243 (128.118.0.243) 56(84) bytes of data. --- 128.118.0.243 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.16 (128.118.1.16) 56(84) bytes of data. --- 128.118.1.16 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.239 (128.118.0.239) 56(84) bytes of data. --- 128.118.0.239 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.11 (128.118.1.11) 56(84) bytes of data. --- 128.118.1.11 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.233 (128.118.0.233) 56(84) bytes of data. --- 128.118.0.233 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.7 (128.118.1.7) 56(84) bytes of data. --- 128.118.1.7 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.226 (128.118.0.226) 56(84) bytes of data. --- 128.118.0.226 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.0 (128.118.1.0) 56(84) bytes of data. --- 128.118.1.0 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.221 (128.118.0.221) 56(84) bytes of data. --- 128.118.0.221 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.255 (128.118.0.255) 56(84) bytes of data. --- 128.118.0.255 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.216 (128.118.0.216) 56(84) bytes of data. --- 128.118.0.216 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.252 (128.118.0.252) 56(84) bytes of data. --- 128.118.0.252 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.208 (128.118.0.208) 56(84) bytes of data. --- 128.118.0.208 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.251 (128.118.0.251) 56(84) bytes of data. --- 128.118.0.251 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.202 (128.118.0.202) 56(84) bytes of data. --- 128.118.0.202 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.250 (128.118.0.250) 56(84) bytes of data. --- 128.118.0.250 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.200 (128.118.0.200) 56(84) bytes of data. --- 128.118.0.200 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.249 (128.118.0.249) 56(84) bytes of data. --- 128.118.0.249 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.199 (128.118.0.199) 56(84) bytes of data. --- 128.118.0.199 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.248 (128.118.0.248) 56(84) bytes of data. --- 128.118.0.248 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.197 (128.118.0.197) 56(84) bytes of data. --- 128.118.0.197 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.247 (128.118.0.247) 56(84) bytes of data. --- 128.118.0.247 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.194 (128.118.0.194) 56(84) bytes of data. --- 128.118.0.194 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.246 (128.118.0.246) 56(84) bytes of data. --- 128.118.0.246 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.193 (128.118.0.193) 56(84) bytes of data. --- 128.118.0.193 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.245 (128.118.0.245) 56(84) bytes of data. --- 128.118.0.245 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.190 (128.118.0.190) 56(84) bytes of data. --- 128.118.0.190 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.244 (128.118.0.244) 56(84) bytes of data. --- 128.118.0.244 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.188 (128.118.0.188) 56(84) bytes of data. --- 128.118.0.188 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.237 (128.118.0.237) 56(84) bytes of data. --- 128.118.0.237 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.186 (128.118.0.186) 56(84) bytes of data. --- 128.118.0.186 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.235 (128.118.0.235) 56(84) bytes of data. --- 128.118.0.235 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.185 (128.118.0.185) 56(84) bytes of data. --- 128.118.0.185 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.231 (128.118.0.231) 56(84) bytes of data. --- 128.118.0.231 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.184 (128.118.0.184) 56(84) bytes of data. --- 128.118.0.184 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.230 (128.118.0.230) 56(84) bytes of data. --- 128.118.0.230 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.183 (128.118.0.183) 56(84) bytes of data. --- 128.118.0.183 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.229 (128.118.0.229) 56(84) bytes of data. --- 128.118.0.229 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.182 (128.118.0.182) 56(84) bytes of data. --- 128.118.0.182 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.228 (128.118.0.228) 56(84) bytes of data. --- 128.118.0.228 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.181 (128.118.0.181) 56(84) bytes of data. --- 128.118.0.181 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.227 (128.118.0.227) 56(84) bytes of data. --- 128.118.0.227 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.180 (128.118.0.180) 56(84) bytes of data. --- 128.118.0.180 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.224 (128.118.0.224) 56(84) bytes of data. --- 128.118.0.224 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.179 (128.118.0.179) 56(84) bytes of data. --- 128.118.0.179 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.219 (128.118.0.219) 56(84) bytes of data. --- 128.118.0.219 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.178 (128.118.0.178) 56(84) bytes of data. --- 128.118.0.178 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.218 (128.118.0.218) 56(84) bytes of data. --- 128.118.0.218 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.177 (128.118.0.177) 56(84) bytes of data. --- 128.118.0.177 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.214 (128.118.0.214) 56(84) bytes of data. --- 128.118.0.214 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.176 (128.118.0.176) 56(84) bytes of data. --- 128.118.0.176 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.212 (128.118.0.212) 56(84) bytes of data. --- 128.118.0.212 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.173 (128.118.0.173) 56(84) bytes of data. --- 128.118.0.173 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.207 (128.118.0.207) 56(84) bytes of data. --- 128.118.0.207 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.171 (128.118.0.171) 56(84) bytes of data. --- 128.118.0.171 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.205 (128.118.0.205) 56(84) bytes of data. --- 128.118.0.205 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.169 (128.118.0.169) 56(84) bytes of data. --- 128.118.0.169 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.204 (128.118.0.204) 56(84) bytes of data. --- 128.118.0.204 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.166 (128.118.0.166) 56(84) bytes of data. --- 128.118.0.166 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.201 (128.118.0.201) 56(84) bytes of data. --- 128.118.0.201 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.163 (128.118.0.163) 56(84) bytes of data. --- 128.118.0.163 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.198 (128.118.0.198) 56(84) bytes of data. --- 128.118.0.198 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.162 (128.118.0.162) 56(84) bytes of data. --- 128.118.0.162 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.196 (128.118.0.196) 56(84) bytes of data. --- 128.118.0.196 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.161 (128.118.0.161) 56(84) bytes of data. --- 128.118.0.161 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.195 (128.118.0.195) 56(84) bytes of data. --- 128.118.0.195 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.155 (128.118.0.155) 56(84) bytes of data. --- 128.118.0.155 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.192 (128.118.0.192) 56(84) bytes of data. --- 128.118.0.192 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.154 (128.118.0.154) 56(84) bytes of data. --- 128.118.0.154 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.191 (128.118.0.191) 56(84) bytes of data. --- 128.118.0.191 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.153 (128.118.0.153) 56(84) bytes of data. --- 128.118.0.153 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 1ms PING 128.118.0.189 (128.118.0.189) 56(84) bytes of data. --- 128.118.0.189 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.152 (128.118.0.152) 56(84) bytes of data. --- 128.118.0.152 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.187 (128.118.0.187) 56(84) bytes of data. --- 128.118.0.187 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.151 (128.118.0.151) 56(84) bytes of data. --- 128.118.0.151 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.175 (128.118.0.175) 56(84) bytes of data. --- 128.118.0.175 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.150 (128.118.0.150) 56(84) bytes of data. --- 128.118.0.150 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.174 (128.118.0.174) 56(84) bytes of data. --- 128.118.0.174 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.149 (128.118.0.149) 56(84) bytes of data. --- 128.118.0.149 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.172 (128.118.0.172) 56(84) bytes of data. --- 128.118.0.172 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.147 (128.118.0.147) 56(84) bytes of data. --- 128.118.0.147 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.170 (128.118.0.170) 56(84) bytes of data. --- 128.118.0.170 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.139 (128.118.0.139) 56(84) bytes of data. --- 128.118.0.139 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.168 (128.118.0.168) 56(84) bytes of data. --- 128.118.0.168 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.138 (128.118.0.138) 56(84) bytes of data. --- 128.118.0.138 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.167 (128.118.0.167) 56(84) bytes of data. --- 128.118.0.167 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.137 (128.118.0.137) 56(84) bytes of data. --- 128.118.0.137 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.165 (128.118.0.165) 56(84) bytes of data. --- 128.118.0.165 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.136 (128.118.0.136) 56(84) bytes of data. --- 128.118.0.136 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.164 (128.118.0.164) 56(84) bytes of data. --- 128.118.0.164 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.134 (128.118.0.134) 56(84) bytes of data. --- 128.118.0.134 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.160 (128.118.0.160) 56(84) bytes of data. --- 128.118.0.160 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.132 (128.118.0.132) 56(84) bytes of data. --- 128.118.0.132 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.159 (128.118.0.159) 56(84) bytes of data. --- 128.118.0.159 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.127 (128.118.0.127) 56(84) bytes of data. --- 128.118.0.127 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.158 (128.118.0.158) 56(84) bytes of data. --- 128.118.0.158 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.126 (128.118.0.126) 56(84) bytes of data. --- 128.118.0.126 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.157 (128.118.0.157) 56(84) bytes of data. --- 128.118.0.157 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.123 (128.118.0.123) 56(84) bytes of data. --- 128.118.0.123 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.156 (128.118.0.156) 56(84) bytes of data. --- 128.118.0.156 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.119 (128.118.0.119) 56(84) bytes of data. --- 128.118.0.119 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.148 (128.118.0.148) 56(84) bytes of data. --- 128.118.0.148 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.118 (128.118.0.118) 56(84) bytes of data. --- 128.118.0.118 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.135 (128.118.0.135) 56(84) bytes of data. --- 128.118.0.135 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.109 (128.118.0.109) 56(84) bytes of data. --- 128.118.0.109 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.133 (128.118.0.133) 56(84) bytes of data. PING 128.118.0.107 (128.118.0.107) 56(84) bytes of data. --- 128.118.0.133 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.107 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.131 (128.118.0.131) 56(84) bytes of data. PING 128.118.0.101 (128.118.0.101) 56(84) bytes of data. --- 128.118.0.131 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.101 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.130 (128.118.0.130) 56(84) bytes of data. PING 128.118.0.100 (128.118.0.100) 56(84) bytes of data. --- 128.118.0.130 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.100 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.128 (128.118.0.128) 56(84) bytes of data. PING 128.118.0.95 (128.118.0.95) 56(84) bytes of data. --- 128.118.0.128 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.95 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.124 (128.118.0.124) 56(84) bytes of data. PING 128.118.0.90 (128.118.0.90) 56(84) bytes of data. --- 128.118.0.124 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.90 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.122 (128.118.0.122) 56(84) bytes of data. --- 128.118.0.122 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.88 (128.118.0.88) 56(84) bytes of data. --- 128.118.0.88 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.121 (128.118.0.121) 56(84) bytes of data. PING 128.118.0.84 (128.118.0.84) 56(84) bytes of data. --- 128.118.0.121 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.84 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.120 (128.118.0.120) 56(84) bytes of data. PING 128.118.0.83 (128.118.0.83) 56(84) bytes of data. --- 128.118.0.120 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.83 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.115 (128.118.0.115) 56(84) bytes of data. PING 128.118.0.81 (128.118.0.81) 56(84) bytes of data. --- 128.118.0.115 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.81 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.110 (128.118.0.110) 56(84) bytes of data. PING 128.118.0.78 (128.118.0.78) 56(84) bytes of data. --- 128.118.0.110 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.78 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.104 (128.118.0.104) 56(84) bytes of data. PING 128.118.0.77 (128.118.0.77) 56(84) bytes of data. --- 128.118.0.104 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.77 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.99 (128.118.0.99) 56(84) bytes of data. PING 128.118.0.67 (128.118.0.67) 56(84) bytes of data. --- 128.118.0.99 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.67 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.97 (128.118.0.97) 56(84) bytes of data. PING 128.118.0.63 (128.118.0.63) 56(84) bytes of data. --- 128.118.0.97 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.63 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.94 (128.118.0.94) 56(84) bytes of data. PING 128.118.0.60 (128.118.0.60) 56(84) bytes of data. --- 128.118.0.94 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.60 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.87 (128.118.0.87) 56(84) bytes of data. PING 128.118.0.58 (128.118.0.58) 56(84) bytes of data. --- 128.118.0.87 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.58 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.86 (128.118.0.86) 56(84) bytes of data. PING 128.118.0.55 (128.118.0.55) 56(84) bytes of data. --- 128.118.0.86 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.55 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.85 (128.118.0.85) 56(84) bytes of data. --- 128.118.0.85 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.51 (128.118.0.51) 56(84) bytes of data. --- 128.118.0.51 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.82 (128.118.0.82) 56(84) bytes of data. --- 128.118.0.82 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.50 (128.118.0.50) 56(84) bytes of data. --- 128.118.0.50 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.80 (128.118.0.80) 56(84) bytes of data. --- 128.118.0.80 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.46 (128.118.0.46) 56(84) bytes of data. --- 128.118.0.46 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.79 (128.118.0.79) 56(84) bytes of data. --- 128.118.0.79 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.45 (128.118.0.45) 56(84) bytes of data. --- 128.118.0.45 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.68 (128.118.0.68) 56(84) bytes of data. --- 128.118.0.68 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.43 (128.118.0.43) 56(84) bytes of data. --- 128.118.0.43 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.64 (128.118.0.64) 56(84) bytes of data. --- 128.118.0.64 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.42 (128.118.0.42) 56(84) bytes of data. --- 128.118.0.42 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.62 (128.118.0.62) 56(84) bytes of data. --- 128.118.0.62 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.41 (128.118.0.41) 56(84) bytes of data. --- 128.118.0.41 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.61 (128.118.0.61) 56(84) bytes of data. --- 128.118.0.61 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.40 (128.118.0.40) 56(84) bytes of data. --- 128.118.0.40 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.59 (128.118.0.59) 56(84) bytes of data. --- 128.118.0.59 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.37 (128.118.0.37) 56(84) bytes of data. --- 128.118.0.37 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.57 (128.118.0.57) 56(84) bytes of data. --- 128.118.0.57 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.35 (128.118.0.35) 56(84) bytes of data. --- 128.118.0.35 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.56 (128.118.0.56) 56(84) bytes of data. --- 128.118.0.56 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.28 (128.118.0.28) 56(84) bytes of data. --- 128.118.0.28 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.54 (128.118.0.54) 56(84) bytes of data. --- 128.118.0.54 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.27 (128.118.0.27) 56(84) bytes of data. --- 128.118.0.27 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.53 (128.118.0.53) 56(84) bytes of data. --- 128.118.0.53 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.26 (128.118.0.26) 56(84) bytes of data. --- 128.118.0.26 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.52 (128.118.0.52) 56(84) bytes of data. --- 128.118.0.52 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.25 (128.118.0.25) 56(84) bytes of data. --- 128.118.0.25 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.49 (128.118.0.49) 56(84) bytes of data. PING 128.118.0.23 (128.118.0.23) 56(84) bytes of data. --- 128.118.0.49 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.23 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.48 (128.118.0.48) 56(84) bytes of data. PING 128.118.0.20 (128.118.0.20) 56(84) bytes of data. --- 128.118.0.48 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.20 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.47 (128.118.0.47) 56(84) bytes of data. PING 128.118.0.19 (128.118.0.19) 56(84) bytes of data. --- 128.118.0.47 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.19 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.44 (128.118.0.44) 56(84) bytes of data. --- 128.118.0.44 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.17 (128.118.0.17) 56(84) bytes of data. --- 128.118.0.17 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.39 (128.118.0.39) 56(84) bytes of data. --- 128.118.0.39 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.15 (128.118.0.15) 56(84) bytes of data. --- 128.118.0.15 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.38 (128.118.0.38) 56(84) bytes of data. --- 128.118.0.38 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.14 (128.118.0.14) 56(84) bytes of data. --- 128.118.0.14 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.36 (128.118.0.36) 56(84) bytes of data. --- 128.118.0.36 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.4 (128.118.0.4) 56(84) bytes of data. --- 128.118.0.4 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.34 (128.118.0.34) 56(84) bytes of data. --- 128.118.0.34 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.3 (128.118.0.3) 56(84) bytes of data. --- 128.118.0.3 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.33 (128.118.0.33) 56(84) bytes of data. PING 128.118.0.1 (128.118.0.1) 56(84) bytes of data. --- 128.118.0.33 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms --- 128.118.0.1 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.32 (128.118.0.32) 56(84) bytes of data. --- 128.118.0.32 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.31 (128.118.0.31) 56(84) bytes of data. --- 128.118.0.31 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.30 (128.118.0.30) 56(84) bytes of data. --- 128.118.0.30 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.29 (128.118.0.29) 56(84) bytes of data. --- 128.118.0.29 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.24 (128.118.0.24) 56(84) bytes of data. --- 128.118.0.24 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.22 (128.118.0.22) 56(84) bytes of data. --- 128.118.0.22 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.21 (128.118.0.21) 56(84) bytes of data. --- 128.118.0.21 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.18 (128.118.0.18) 56(84) bytes of data. --- 128.118.0.18 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.16 (128.118.0.16) 56(84) bytes of data. --- 128.118.0.16 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.13 (128.118.0.13) 56(84) bytes of data. --- 128.118.0.13 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.12 (128.118.0.12) 56(84) bytes of data. --- 128.118.0.12 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.11 (128.118.0.11) 56(84) bytes of data. --- 128.118.0.11 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.10 (128.118.0.10) 56(84) bytes of data. --- 128.118.0.10 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.9 (128.118.0.9) 56(84) bytes of data. --- 128.118.0.9 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.8 (128.118.0.8) 56(84) bytes of data. --- 128.118.0.8 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.7 (128.118.0.7) 56(84) bytes of data. --- 128.118.0.7 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.6 (128.118.0.6) 56(84) bytes of data. --- 128.118.0.6 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.5 (128.118.0.5) 56(84) bytes of data. --- 128.118.0.5 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.0.0 (128.118.0.0) 56(84) bytes of data. --- 128.118.0.0 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms PING 128.118.1.81 (128.118.1.81) 56(84) bytes of data. --- 128.118.1.81 ping statistics --- 1 packets transmitted, 0 received, 100% packet loss, time 0ms
patbeagan1/AcerArchDev
bashscripts/results.log.sh
Shell
gpl-2.0
313,573
#! /bin/sh triplet=i686-w64-mingw32 prefix=/usr/$triplet/sys-root/mingw CC=$triplet-gcc export PKG_CONFIG_LIBDIR=$prefix/lib/pkgconfig export PKG_CONFIG_PREFIX=$prefix sudo cp $prefix/bin/icudata46.dll $prefix/lib/ sudo cp $prefix/bin/icuuc46.dll $prefix/lib/icuuc46.lib sudo cp $prefix/bin/icui18n46.dll $prefix/lib/ sudo cp $prefix/bin/icuio46.dll $prefix/lib/ cd sword-unicode ./autogen.sh export CFLAGS=" $CFLAGS -mms-bitfields -I$prefix/include/glib-2.0 -I$prefix/lib/glib-2.0/include -DUSBINARY" export CXXFLAGS=" $CXXFLAGS -mms-bitfields -I$prefix/include/glib-2.0 -I$prefix/lib/glib-2.0/include -DUSBINARY" ./configure --host=$triplet --prefix=$prefix --with-icusword --enable-shared --disable-static --with-clucene=$prefix/ lt_cv_deplibs_check_method=pass_all --with-curl ac_cv_path_CURL_CONFIG=$prefix/bin/curl-config ac_cv_path_ICU_CONFIG=$prefix/bin/icu-config make -j3
greg-hellings/Xiphos
win32/suse/sword-unicode.sh
Shell
gpl-2.0
890
#!/bin/bash # # # Execute a Sutra # S=/usr/bin/sutra [[ -f $S ]] && $S
sri-arjuna/tui-sutra
sutra-tui.sh
Shell
gpl-2.0
73
#!/bin/bash echo "01"; cat tests/syntax/input/etapa2/errada01.txt | ./main echo echo "02"; cat tests/syntax/input/etapa2/errada02.txt | ./main echo echo "03"; cat tests/syntax/input/etapa2/errada03.txt | ./main echo echo "04"; cat tests/syntax/input/etapa2/errada04.txt | ./main echo echo "05"; cat tests/syntax/input/etapa2/errada05.txt | ./main echo echo "06"; cat tests/syntax/input/etapa2/errada06.txt | ./main echo echo "07"; cat tests/syntax/input/etapa2/errada07.txt | ./main echo echo "08"; cat tests/syntax/input/etapa2/errada08.txt | ./main echo echo "09"; cat tests/syntax/input/etapa2/errada09.txt | ./main echo echo "10"; cat tests/syntax/input/etapa2/errada10.txt | ./main echo echo "11"; cat tests/syntax/input/etapa2/errada11.txt | ./main echo echo "12"; cat tests/syntax/input/etapa2/errada12.txt | ./main echo echo "13"; cat tests/syntax/input/etapa2/errada13.txt | ./main echo echo "14"; cat tests/syntax/input/etapa2/errada14.txt | ./main echo echo "15"; cat tests/syntax/input/etapa2/errada15.txt | ./main echo echo "16"; cat tests/syntax/input/etapa2/errada16.txt | ./main echo echo "17"; cat tests/syntax/input/etapa2/errada17.txt | ./main echo echo "18"; cat tests/syntax/input/etapa2/errada18.txt | ./main echo echo "19"; cat tests/syntax/input/etapa2/errada19.txt | ./main echo echo "20"; cat tests/syntax/input/etapa2/errada20.txt | ./main echo
betting/compiladores
test_errado_e2.sh
Shell
gpl-2.0
1,393
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! # ! FILE IS CONTROLLED BY ANSIBLE, DO NOT CHANGE, OR ELSE YOUR CHANGES WILL BE EVENTUALLY LOST ! # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! # # Bash helper function library # # Source this in other scripts. # common env vars main_rtrc_file="{{ main_rtrc_file }}" rutorrent_rtrc_file="{{ rutorrent_rtrc_file }}" # normally the same as 'main_rtrc_file' # Prevent concurrent script execution pid_guard() { # scriptname local pid=$$ local script=$1; shift local guard="/tmp/$script-$(id -nu).pid" if test -f "$guard" ; then echo >&2 "ERROR: Script already runs... own PID=$pid" ps auxw | grep "$script" | grep -v grep >&2 exit 1 fi trap "rm -f $guard" EXIT echo $pid >"$guard" }
pyroscope/pimp-my-box
roles/rtorrent-ps/templates/bin/_tools.sh
Shell
gpl-2.0
881
#!/bin/bash function run() { COMMENT=$1 CMD=$2 echo "======================================================================================" echo "$COMMENT:" echo "$CMD" /bin/bash -c "$CMD" echo } SRCADDR=$1 if test "$SRCADDR" = "" then SRCADDR="1PSf86KnLuzM7Ris5kDhTEZwooR3p2iyfV" # Known to belong to pirate fi SRCSHORT=`echo $SRCADDR | dd bs=1 count=8` DSTADDR=$2 if test "$DSTADDR" = "" then DSTADDR="1DkyBEKt5S2GDtv7aQw6rQepAvnsRyHoYM" # Richest address in chain fi DSTSHORT=`echo $DSTADDR | dd bs=1 count=8` run "Compute closure of address $SRCADDR" "./parser closure $SRCADDR > $SRCSHORT-CLOSURE" run "Closure cleanup" "cat $SRCSHORT-CLOSURE | grep -v '^$' | cut -d' ' -f2 | sort | uniq > $SRCSHORT-CLOSURE-CLEAN" run "See how many addresses we got" "wc -l $SRCSHORT-CLOSURE-CLEAN | cut -d' ' -f1" run "Compute all transactions in and out of closure" "./parser tx --csv file:$SRCSHORT-CLOSURE-CLEAN > $SRCSHORT-TRANSACTIONS" run "List cleanup" "cat $SRCSHORT-TRANSACTIONS | grep -v '^$' | grep -v '\"Time' >$SRCSHORT-TRANSACTIONS-CLEAN" run "See how many tx we got" "wc -l $SRCSHORT-TRANSACTIONS-CLEAN | cut -d' ' -f1" run "Extract spends" "cat $SRCSHORT-TRANSACTIONS-CLEAN | grep '-' | awk '{print \$3}' | sed -e 's/[\",]//g' | sort | uniq > $SRCSHORT-SPENDS" run "See how many spends we got" "wc -l $SRCSHORT-SPENDS | cut -d' ' -f1" run "Compute taint of these spends to every tx in the chain " "./parser taint file:$SRCSHORT-SPENDS > $SRCSHORT-TAINT" run "Compute list of all tx for dst address" "./parser tx --csv $DSTADDR > $DSTSHORT-TX" run "Compute list of tx spending into dst address" "cat $DSTSHORT-TX | grep -v '-' | awk '{print \$3}' | sed -e 's/[\",]//g' | sort | uniq > $DSTSHORT-INCOMING-TX" run "Compute most recent tx spending from fat address" "cat $DSTSHORT-TX | grep '-' | tail -1 | awk '{print \$3}' | sed -e 's/[\",]//g' | sort | uniq > $DSTSHORT-LATEST-SPEND-TX" echo "======================================================================================" echo "Find the taint of each of these tx" rm -f $SRCSHORT-FAT-TAINT for tx in `cat $DSTSHORT-INCOMING-TX` do grep $tx $SRCSHORT-TAINT >>$SRCSHORT-$DSTSHORT-TAINT done echo run "Show input taint to $DSTADDR by coins in the closure of $SRCADDR" "cat $SRCSHORT-$DSTSHORT-TAINT | sort -n" run "Show overall taint for $DSTADDR by coins in the closure of $SRCADDR" "grep `cat $DSTSHORT-LATEST-SPEND-TX` $SRCSHORT-TAINT"
oggio88/SimpleBlockParser
src/contrib/closure-taint.sh
Shell
gpl-2.0
2,760
#!/bin/sh set -e if [ -f .git/hooks/pre-commit.sample -a ! -f .git/hooks/pre-commit ] ; then cp -p .git/hooks/pre-commit.sample .git/hooks/pre-commit && \ chmod +x .git/hooks/pre-commit && \ echo "Activated pre-commit hook." fi autoreconf --install
tjohann/my_common_docs
autotools/prog_simple/autogen.sh
Shell
gpl-2.0
276
#!/bin/bash # source helper functions . ../helperfunctions.sh # source configuration . ../OPTIONS.conf # install ldap - server # install slapd dpkg - package if [ ! "$FULLINSTALL" = "true" ]; then echo "FULLINSTALL=false" apt-get -y update fi printAndLogStartMessage "START: SILENT INSTALLATION OF LDAP - SERVER" export DEBIAN_FRONTEND=noninteractive printAndLogMessage "CREATE FAKED /etc/hosts FILE FOR SETTING NAME OF LDAP DATABASE" file=/etc/hosts cp $file $file.tmp # block host entrance, if one exists sed -e "{ /127.0.1.1/ s/127.0.1.1/#127.0.1.1/ }" -i $file # write host entrance with our LDAP suffixes echo "127.0.1.1 $(hostname).$LDAP_DOMAIN_SUFFIX_FIRST.$LDAP_DOMAIN_SUFFIX_SECOND $(hostname)" >> $file #sed -e "{ # /127.0.1.1/ s/127.0.1.1/127.0.1.1 $(hostname).$LDAP_DOMAIN_SUFFIX_FIRST.$LDAP_DOMAIN_SUFFIX_SECOND $(hostname)/ #}" -i $file logFile $file printAndLogMessage "apt-get install slapd ldap-utils" apt-get -y install slapd ldap-utils printAndLogMessage "RESTORE ORIGINAL /etc/hosts" rm $file mv $file.tmp $file logFile $file printAndLogMessage "CONFIG cn=config database" cd cn_config /bin/bash config-cn_config.sh cd .. printAndLogMessage "POPULATE LDAP TREE" cd ldap_tree /bin/bash populate-ldap_tree.sh cd .. printAndLogEndMessage "FINISH: INSTALLATION OF LDAP - SERVER"
thomasgatterer/networkbox
ldap-server/install-slapd.sh
Shell
gpl-2.0
1,324
#!/bin/bash # # Build webservice images from the currently checked out version of BookBrainz # and push it to the Docker Hub, with an optional tag (by default "beta"). # # Usage: # $ ./push-webservice.sh [env] [tag] # # Examples: # $ ./push-webservice.sh beta beta # will push image with tag beta and deploy environment beta # $ ./push-webservice.sh prod v-2018-07-14.0 # will push images with tag v-2018-07-14.0 and deploy env prod cd "$(dirname "${BASH_SOURCE[0]}")/../" git describe --tags --dirty --always > .git-version ENV=${1:-beta} TAG=${2:-beta} echo "Building BookBrainz image with env $ENV tag $TAG and docker build target bookbrainz-webservice" docker build -t metabrainz/bookbrainz-webservice:$TAG \ --target bookbrainz-webservice \ --build-arg GIT_COMMIT_SHA=$(git rev-parse --short HEAD) \ --build-arg DEPLOY_ENV=webservice-$ENV . RESULT=$? if [ $RESULT -eq 0 ]; then echo "Done!" else echo "Docker build command failed with error code $RESULT, exiting." exit 1; fi echo "Pushing image to docker hub metabrainz/bookbrainz-webservice:$TAG..." docker push metabrainz/bookbrainz-webservice:$TAG echo "Done!"
bookbrainz/bookbrainz-site
docker/push-webservice.sh
Shell
gpl-2.0
1,175