Windows Server 如何查看正在访问本机的主机的IP地址?

以下命令可以查看当前访问本机的主机的IP地址和端口号

netstat -an

统计程序:
统计访问aimedRouter的IP

import os,pickle
import time


aimedRouter = "10.1.1.1:80"
pkl="dic.pkl"
dic={}

if os.path.exists(pkl):
	f = open(pkl, "rb")
	dic=pickle.load(f)
	f.close()

def updateDic():
	r = os.popen("netstat -an").read()

	for line in r.splitlines()[4:]:
		res = line.split(" ")
		while "" in res: res.remove("")
		if res[1]==aimedRouter:
			print(res)
			ip=res[2].split(":")[0]
			print(ip,"arrived.")
			if ip in dic:
				dic.update({ip:dic[ip]+1})
			else:
				dic.update({ip:1})

def saveDic():
	f = open(pkl, "wb")
	pickle.dump(dic, f)
	f.close()
	print("已写入:", dic)

if __name__ == "__main__":
	cnt=0
	while True:
		time.sleep(12)
		updateDic()
		cnt+=1
		if not cnt%10:
			saveDic()
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

COCO56(徐可可)

建议微信红包:xucoco56

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值