- added resolv.conf parsing
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>
Wed, 12 Oct 2005 00:14:28 +0000 (00:14 +0000)
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>
Wed, 12 Oct 2005 00:14:28 +0000 (00:14 +0000)
- fixed some bugs
- networksetting now complete ;)

lib/python/Components/Network.py
lib/python/Screens/NetworkSetup.py

index 85d0a3a2cea9f5182b48c4d106a4bfbe741f4630..cd82081b774b8c741f01c84f5e8a0dea16327791 100644 (file)
@@ -26,6 +26,8 @@ class Network:
                        # parse the interfaces-file
                        fp = file('/etc/network/interfaces', 'r')
                        interfaces = fp.readlines()
                        # parse the interfaces-file
                        fp = file('/etc/network/interfaces', 'r')
                        interfaces = fp.readlines()
+                       fp.close()
+                       
                        ifaces = {}
                        currif = ""
                        for i in interfaces:
                        ifaces = {}
                        currif = ""
                        for i in interfaces:
@@ -43,8 +45,24 @@ class Network:
                                        if (split[0] == "netmask"):
                                                ifaces[currif]["netmask"] = map(int, split[1].split('.'))
                                        if (split[0] == "gateway"):
                                        if (split[0] == "netmask"):
                                                ifaces[currif]["netmask"] = map(int, split[1].split('.'))
                                        if (split[0] == "gateway"):
-                                               ifaces[currif]["gateway"] = map(int, split[1].split('.'))                                                                               
+                                               ifaces[currif]["gateway"] = map(int, split[1].split('.'))                                                                       
+                       
+                       # parse the resolv.conf-file
+                       fp = file('/etc/network/interfaces', 'r')
+                       resolv = fp.readlines()
+                       fp.close()
+               except:
+                       pass
                        
                        
+               try:
+                       for i in resolv:
+                               split = i.strip().split(' ')
+                               if (split[0] == "nameserver"):
+                                       config.network.nameserver.value = map(int, split[1].split('.'))
+               except:
+                       pass
+               
+               try:
                        # set this config
                        if (ifaces.has_key("eth0")):
                                if (ifaces["eth0"]["dhcp"] == "yes"):
                        # set this config
                        if (ifaces.has_key("eth0")):
                                if (ifaces["eth0"]["dhcp"] == "yes"):
@@ -54,7 +72,6 @@ class Network:
                                if (ifaces["eth0"].has_key("address")): config.network.ip.value = ifaces["eth0"]["address"]
                                if (ifaces["eth0"].has_key("netmask")): config.network.netmask.value = ifaces["eth0"]["netmask"]
                                if (ifaces["eth0"].has_key("gateway")): config.network.gateway.value = ifaces["eth0"]["gateway"]
                                if (ifaces["eth0"].has_key("address")): config.network.ip.value = ifaces["eth0"]["address"]
                                if (ifaces["eth0"].has_key("netmask")): config.network.netmask.value = ifaces["eth0"]["netmask"]
                                if (ifaces["eth0"].has_key("gateway")): config.network.gateway.value = ifaces["eth0"]["gateway"]
-                       fp.close()
                except:
                        pass
 
                except:
                        pass
 
@@ -105,7 +122,13 @@ class Network:
 iNetwork = Network()
 
 def InitNetwork():
 iNetwork = Network()
 
 def InitNetwork():
-       ip = map (int, gethostbyname(gethostname()).split('.'))
+       try:
+               ip = [0, 0, 0, 0]
+               print gethostbyname(gethostname())
+               ip = gethostbyname(gethostname()).split('.')
+               print ip
+       except:
+               print "[Network.py] Could not get current ip (not necessarily an error)"
                
        config.network = ConfigSubsection()
        config.network.dhcp = configElement_nonSave("config.network.dhcp", configSelection, 1, ("no", "yes"))
                
        config.network = ConfigSubsection()
        config.network.dhcp = configElement_nonSave("config.network.dhcp", configSelection, 1, ("no", "yes"))
index d05a6365556ab24275594571a539c0d1f78907f0..505d508f5423f2fa27b3bac4295f7b6dfad8cc29 100644 (file)
@@ -94,4 +94,5 @@ class NetworkSetup(Screen):
     def keyCancel(self):
         for x in self["config"].list:
             x[1].cancel()
     def keyCancel(self):
         for x in self["config"].list:
             x[1].cancel()
-        self.close()        
\ No newline at end of file
+        iNetwork.loadNetworkConfig()
+        self.close()
\ No newline at end of file