aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/Network.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python/Components/Network.py')
-rw-r--r--lib/python/Components/Network.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/python/Components/Network.py b/lib/python/Components/Network.py
index 7513901f..0493f0fa 100644
--- a/lib/python/Components/Network.py
+++ b/lib/python/Components/Network.py
@@ -139,11 +139,9 @@ class Network:
iNetwork = Network()
def InitNetwork():
- ip = iNetwork.getCurrentIP()
-
config.network = ConfigSubsection()
config.network.dhcp = NoSave(ConfigYesNo(default=True))
- config.network.ip = NoSave(ConfigIP(default=[0,0,0,0]))
+ config.network.ip = NoSave(ConfigIP(default=iNetwork.getCurrentIP()))
config.network.netmask = NoSave(ConfigIP(default=[255,255,255,0]))
config.network.gateway = NoSave(ConfigIP(default=[192,168,1,3]))
config.network.dns = NoSave(ConfigIP(default=[192,168,1,3]))