1importsocket2importplatform45defgetip():6try:7s =socket.socket(socket.AF_INET, socket.SOCK_DGRAM)8s.connect(('www.baidu.com', 0))9ip =s.getsockname()[0]10except:11ip ="x.x.x.x"12finally:13s.close()14returnip1516if__name__=="__main__":17ip_address ="0.0.0.0"18sysstr =p...