是否可以更改我的"临时IPv6地址" - windows(最好通过Python)

时间:2018-04-21 13:29:05

标签: python windows networking ip ipv6

最佳,

标题说明了一切:
是否可以更改我的"临时IPv6地址" - 在Windows中(最好用Python)
(通过代码)

我注意到,当我使用我的5ghz wifi时,切换到2.4 ghz wifi&立即回到5ghz wifi,我的临时IPv6地址已被更改。

由于某些特定原因,我想通过python代码重新创建此行为。 (或powershell或cmd(只要python可以执行函数或-windows命令))

enter image description here

亲切的问候

1 个答案:

答案 0 :(得分:0)

在Windows下,您应该可以使用org.apache.hadoop.mapred.InvalidInputException: Input path does not exist: file:/C:/Users/kolbj/OneDrive - NTNU/Emner/BigData/SBT-Phase2/geotweets.tsv

ipconfig

以上可能不起作用,所以这里是非dhcp适配器的解决方案,请注意这是针对Python3的:

import os

def refresh_ip():
  # Switch to dhcp
  system('netsh interface ip set address "Wi-Fi" dhcp');
  system('ipconfig /release6 Wi-Fi')
  system('ipconfig /renew6 Wi-Fi')