I have the following line in my /etc/hosts
file
54.230.202.149 gs2.ww.prod.dl.playstation.net
What I'm trying to do is, find the line gs2
in the /etc/hosts
file and get the current IP address. This is what I have, but it doesn't find the DNS or return the IP address. It tells me that my current IP address is 'None'.
try:
with open('/etc/hosts', 'r') as f:
for line in f:
host_ip = re.findall(r"\b(?:[0-9]{1,3}\.){3}[0-9]{1,3}\b.+(?=gs2)", line)
if host_ip:
current_ip = host_ip[0].strip()
else:
current_ip = 'None'
except:
current_ip = 'Unknown'
c.execute('INTERT INTO status VALUES(?,?,?,?,?,?)',
('Current Configured IP', current_ip))
Not sure what the problem is. Any help would be appreciated.
Do this using .split(), which will split your line based on whitespace into separate indexed elements.
Also note that using this approach removes the need for
host_ip[0].strip()
, because all whitespace between IP address and hostname is removed during thesplit()
operation. You can just usehost_ip[0]
.From https://docs.python.org/3/library/stdtypes.html#str.split:
(See URL for further discussion of split()).