<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN">
<HTML>
<HEAD>
  <META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=UTF-8">
  <META NAME="GENERATOR" CONTENT="GtkHTML/3.3.2">
</HEAD>
<BODY>
<BR>
<BLOCKQUOTE TYPE=CITE>
<PRE>
<FONT COLOR="#000000">As neat seems to be currently broken due to python being broken, how can</FONT>
<FONT COLOR="#000000">I set a DNS server address? ifcfg eth0 xxx.xxx.xxx.xxx gives me an error</FONT>
<FONT COLOR="#000000">that eth0 cannot be contacted (or something like that)</FONT>

</PRE>
</BLOCKQUOTE>
For set an ip address:<BR>
<BR>
into a command line type: <BR>
<BR>
ifconfig eth0 111.222.333.444/24 up<BR>
or<BR>
ifconfig eth0 111.222.333.444 netmask 255.255.255.0 up<BR>
<BR>
route add default gw 111.222.333.444<BR>
<BR>
For Setting DNS<BR>
edit the /etc/resolv.conf and add a line like this<BR>
<BR>
nameserver 111.222.333.444<BR>
<BR>
</BODY>
</HTML>