Python, How to get all external ip addresses with multiple NICs

后端 未结 5 1086
闹比i
闹比i 2020-12-10 18:48

What is the most efficient way to get all of the external ip address of a machine with multiple nics, using python? I understand that an external server is neeeded (I have o

5条回答
  •  情深已故
    2020-12-10 19:37

    Use the subprocess module to connect to your usual systems tools like ifconfig or netstat:

    >>> import subprocess
    >>> print subprocess.check_output(['ifconfig'])
    

提交回复
热议问题