使用 python 擷取 Linux 的 IP 資訊(通過 ifconfig 命令)

來源:互聯網
上載者:User

標籤:pen   linu   tar   ifconfig   [1]   擷取   linux   實現   cat   

我們可以使用 python 代碼通過調用 ifconfig 命令來擷取 Linux 主機的 IP 相關資訊,包括:網卡名稱、MAC地址、IP地址等。

第一種實現方式:

 1 #!/usr/bin/python 2 #encoding: utf-8 3  4 from subprocess import Popen, PIPE 5  6 def getIfconfig(): 7     p = Popen([‘ifconfig‘], stdout = PIPE) 8     data = p.stdout.read().split(‘\n\n‘) 9     return [i for i in data if i and not i.startswith(‘lo‘)]10 11 def parseIfconfig(data):12     dic = {}13     for devs in data:14         lines = devs.split(‘\n‘)15         devname = lines[0].split()[0]16         macaddr = lines[0].split()[-1]17         ipaddr  = lines[1].split()[1].split(‘:‘)[1]18         dic[devname] = [ipaddr, macaddr]19     return dic20         21 22 if __name__ == ‘__main__‘:23     data = getIfconfig()24     print parseIfconfig(data)

 

 

第二種實現方式:

 1 #!/usr/bin/python 2 #encoding: utf-8 3  4 from subprocess import Popen, PIPE 5  6 def getIP(): 7     p = Popen([‘ifconfig‘], stdout = PIPE, stderr = PIPE) 8     stdout, stderr = p.communicate() 9     data = [i for i in stdout.split(‘\n‘) if i]10     return data11 12 def genIP(data):13     new_line = ‘‘14     lines = []15     for line in data:16         if line[0].strip():17             lines.append(new_line)18             new_line = line + ‘\n‘19         else:20             new_line += line + ‘\n‘21     lines.append(new_line)22     return [i for i in lines if i and not i.startswith(‘lo‘)]23 24 def parseIP(data):25     dic = {}26     for devs in data:27         lines = devs.split(‘\n‘)28         devname = lines[0].split()[0]29         macaddr = lines[0].split()[-1]30         ipaddr  = lines[1].split()[1].split(‘:‘)[1]31         dic[devname] = [ipaddr, macaddr]32     return dic33 34 if __name__ == ‘__main__‘:35     data = getIP()36     nics = genIP(data)37     print parseIP(nics)

 

使用 python 擷取 Linux 的 IP 資訊(通過 ifconfig 命令)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.