使用python每隔x次更改windows中的ip地址

时间:2014-10-21 18:52:52

标签: python python-2.7

如何在X段时间后使用Python更改我的IP地址?

1 个答案:

答案 0 :(得分:-1)

您可以尝试这样的事情:

import os
os.system("netsh interface ip set address "Local Area Connection" static 192.168.0.10 255.255.255.0 192.168.0.1 1")
print "IP ADRESS CHANGED!"