亚洲国产成人,色呦呦内射午夜,无码一级片,无码人妻少妇色欲AV一区二区

<samp id="jg8hh"></samp>

<p id="jg8hh"></p><delect id="jg8hh"><em id="jg8hh"><blockquote id="jg8hh"></blockquote></em></delect><acronym id="jg8hh"><dd id="jg8hh"></dd></acronym><button id="jg8hh"><dd id="jg8hh"><acronym id="jg8hh"></acronym></dd></button><samp id="jg8hh"><em id="jg8hh"><blockquote id="jg8hh"></blockquote></em></samp>

<p id="jg8hh"></p>

<samp id="jg8hh"><legend id="jg8hh"></legend></samp>
<samp id="jg8hh"><legend id="jg8hh"><samp id="jg8hh"></samp></legend></samp>

<samp id="jg8hh"></samp>

<p id="jg8hh"></p><acronym id="jg8hh"></acronym><p id="jg8hh"><dd id="jg8hh"><acronym id="jg8hh"></acronym></dd></p><p id="jg8hh"></p>

<p id="jg8hh"></p><delect id="jg8hh"><legend id="jg8hh"><var id="jg8hh"></var></legend></delect><button id="jg8hh"><listing id="jg8hh"><i id="jg8hh"></i></listing></button>
<delect id="jg8hh"><legend id="jg8hh"><var id="jg8hh"></var></legend></delect>

Linux如何查看端口占用情況

發(fā)布時間:2024-05-02
準備使用python寫一個端口探測的小程序,以檢測一些特定的服務(wù)端口有沒有被占用,突然發(fā)現(xiàn)自己居然不知道在linux中如何查詢端口被占用的情況,趕緊來學(xué)習(xí)下。
linux如何查看端口
1、lsof -i:端口號 用于查看某一端口的占用情況,比如查看8000端口使用情況,lsof -i:8000
# lsof -i:8000 command pid user fd type device size/off node name lwfs 22065 root 6u ipv4 4395053 0t0 tcp *:irdmi (listen)可以看到8000端口已經(jīng)被輕量級文件系統(tǒng)轉(zhuǎn)發(fā)服務(wù)lwfs占用
2、netstat -tunlp |grep 端口號,用于查看指定的端口號的進程情況,如查看8000端口的情況,netstat -tunlp |grep 8000
# netstat -tunlp active internet connections (only servers) proto recv-q send-q local address foreign address state pid/program name tcp 0 0 0.0.0.0:111 0.0.0.0:* listen 4814/rpcbind tcp 0 0 0.0.0.0:5908 0.0.0.0:* listen 25492/qemu-kvm tcp 0 0 0.0.0.0:6996 0.0.0.0:* listen 22065/lwfs tcp 0 0 192.168.122.1:53 0.0.0.0:* listen 38296/dnsmasq tcp 0 0 0.0.0.0:22 0.0.0.0:* listen 5278/sshd tcp 0 0 127.0.0.1:631 0.0.0.0:* listen 5013/cupsd tcp 0 0 127.0.0.1:25 0.0.0.0:* listen 5962/master tcp 0 0 0.0.0.0:8666 0.0.0.0:* listen 44868/lwfs tcp 0 0 0.0.0.0:8000 0.0.0.0:* listen 22065/lwfs# netstat -tunlp | grep 8000 tcp 0 0 0.0.0.0:8000 0.0.0.0:* listen 22065/lwfs說明一下幾個參數(shù)的含義:
-t (tcp) 僅顯示tcp相關(guān)選項 -u (udp)僅顯示udp相關(guān)選項 -n 拒絕顯示別名,能顯示數(shù)字的全部轉(zhuǎn)化為數(shù)字 -l 僅列出在listen(監(jiān)聽)的服務(wù)狀態(tài) -p 顯示建立相關(guān)鏈接的程序名附加一個python端口占用監(jiān)測的程序,該程序可以監(jiān)測指定ip的端口是否被占用。
#!/usr/bin/env python # -*- coding:utf-8 -*- import socket, time, thread socket.setdefaulttimeout(3) #設(shè)置默認超時時間 def socket_port(ip, port): 輸入ip和端口號,掃描判斷端口是否占用 try: if port >=65535: print u'端口掃描結(jié)束' s=socket.socket(socket.af_inet, socket.sock_stream) result=s.connect_ex((ip, port)) if result==0: lock.acquire() print ip,u':',port,u'端口已占用' lock.release() except: print u'端口掃描異常' def ip_scan(ip): 輸入ip,掃描ip的0-65534端口情況 try: print u'開始掃描 %s' % ip start_time=time.time() for i in range(0,65534): thread.start_new_thread(socket_port,(ip, int(i))) print u'掃描端口完成,總共用時:%.2f' %(time.time()-start_time) # raw_input(press enter to exit) except: print u'掃描ip出錯' if __name__=='__main__': url=raw_input('input the ip you want to scan: ') lock=thread.allocate_lock() ip_scan(url)該程序執(zhí)行結(jié)果如下:
# python scan_port.py input the ip you want to scan: 20.0.208.112 開始掃描 20.0.208.112 20.0.208.112 : 111 端口已占用 20.0.208.112 : 22 端口已占用 20.0.208.112 : 8000 端口已占用 20.0.208.112 : 15996 端口已占用 20.0.208.112 : 41734 端口已占用 掃描端口完成,總共用時:9.38來源:https://www.cnblogs.com/wangtao1993/p/6144183.html
上一個:數(shù)控車床常用刀具材質(zhì)分類介紹
下一個:西門子一級代理前連接器6ES73921BM010AA0的參數(shù)

w10電腦如何分盤,win10如何分區(qū)win10磁盤分區(qū)圖文教程
ios12怎么設(shè)置打字震動(蘋果12設(shè)置打字震動)
BX15-425熱敏風(fēng)速儀詳細介紹
天然氣管道流量計選擇的注意
空氣加濕機,消除干燥防范靜電
拉力試驗機力測量系統(tǒng)標定和 調(diào)整
惠普840g3安裝win10方法(惠普840g1升級)
新材料激活激光焊接應(yīng)用
shinsei超聲波馬達工作原理分析
瑞普儀器—低溫密閉超聲波脫水儀黃山