当我使用以下命令平平我的Linux服务器(运行在我的Windows7主机上的VM中)时:
ping -a 192.168.56.***
我得到的结果如下。为什么它不解析我服务器的名字?
Pinging 192.168.56.*** with 32 bytes of data:
Reply from 192.168.56.***: bytes=32 time<1ms TTL=64
Reply from 192.168.56.***: bytes=32 time<1ms TTL=64
Reply from 192.168.56.***: bytes=32 time<1ms
所以,我搞不懂到底怎么回事。我从未入侵过linux内核,所以这可能是司空见惯的事情。如果是这样的话,很抱歉问你这个新问题。
$ git clone https://github.com/torvalds/linux.git
然后,
$ git status
。
# On branch master
# Changes not staged for commit:
# (use "git add <file>..." to update what will be committed)
# (use "git checkout -- <file&g
脚本,想要ping网络上的设备,告诉我它是否可达,然后从ping中获取ttl数据,并告诉我操作系统。
我尝试过使用awk命令,但我还是个脚本新手,可能没有正确使用它。
for host in $(seq 1 255);
do
ping -c 1 $sn.$host | grep "Unreachable" &>/dev/null
if [ $? -eq 0 ]; then
printf "%s\n" "$sn.$host is Offline"
fi
ping -c 1 $sn
我正在尝试在mininet中使用ping命令查找时间戳。每当我对某个主机执行ping操作时,我都会得到类似如下的结果:
mininet> h1 ping h2
PING 10.0.0.2 (10.0.0.2) 56(84) bytes of data.
64 bytes from 10.0.0.2: icmp_seq=1 ttl=64 time=1.17 ms
64 bytes from 10.0.0.2: icmp_seq=2 ttl=64 time=1.48 ms
64 bytes from 10.0.0.2: icmp_seq=3 ttl=64 time=0.426 ms
64 b
目前,我正在研究脚本,并且正在编写一些东西,可以在网络上对设备进行ping,如果它可以到达,然后从ping获取ttl数据,并声明它是操作系统。
我并不完全熟悉grep命令是如何工作的,但到目前为止,我已经了解了以下内容:
for host in $(seq 1 255);
do
ping -c 1 $sn.$host | grep "Unreachable" &>/dev/null
if [ $? -eq 0 ]; then
printf "%s\n" "$sn.$host is Offline"
fi
ping -c
我已经在单独的centos机器和相应的路由表之间配置了GRE隧道,如图所示:
I dont have enough reputation to post images
Router1-------gre1---------Transit-Router---------gre2--------Router2
10.2.32.0/24--Router1--10.0.0.1---gre1---10.0.0.2--Transit-Router--11.0.0.2---gre2--11.0.0.1--Router2--10.4.32.0/24
我可以从路由器-1到gre1隧道的另一端:
worker]#
我想用不同的ip创建1000个macvlan。并使用ip rule路由不同的公共ip到多个接口的互联网。
首先创建1000 macvlan:
ip link add link eth0 address %02x:%02x:%02x:%02x:%02x:%02x eth0_%d type macvlan
%02x是mac地址,%d是0-999.
然后使用ifconfig设置每个macvlan不同的公共ip。最后,使用ip规则:
ip route add default via ${router} dev ${interface} src ${ip} table ${interfaceidx}
i
我是shell脚本的新手,因此对linux命令知之甚少。我正在pinging主机恰好10次。我想知道,怎样才能拿到第一名。成功传输的数据包的百分比。E.g
ping -c 10 12.1.4.1
PING 12.1.4.1 (12.1.4.1) 56(84) bytes of data.
64 bytes from 12.1.4.1: icmp_seq=1 ttl=128 time=439 ms
64 bytes from 12.1.4.1: icmp_seq=2 ttl=128 time=577 ms
64 bytes from 12.1.4.1: i
我注意到这个话题中也有类似的问题。但解决办法不能解决我的问题..。
ping本地路由器报告:
64 bytes from 192.168.0.1: icmp_seq=16 ttl=64 time=1.06 ms
64 bytes from 192.168.0.1: icmp_seq=17 ttl=64 time=200 ms
64 bytes from 192.168.0.1: icmp_seq=20 ttl=64 time=210 ms
64 bytes from 192.168.0.1: icmp_seq=21 ttl=64 time=10.5 ms
64 bytes from 192.1