On Sun, Nov 15, 2009 at 9:55 AM, Kalle Anka
<[email protected]> wrote:
> I dont understand what you mean with "I/F"?

That's just a shortened version of "interface".

> Now I changed my /etc/hosts file to look like this instead
> 127.0.0.1 localhost
> 192.168.0.181   frasse loghost

You should move 'loghost' back to the 127.0.0.1 line.  The important thing
is that the name 'frasse' is matched with the 192.168.0.181 address.
You can check that the system understands this by running:

    getent hosts frasse

If that shows 192.168.0.181 then your configuration is good.  If it doesn't
show 192.168.0.181 then you need to fix that before going any further.

> And I get ifconfig output as
> or...@frasse:~$ ifconfig -a
...
> e1000g0: flags=1000851<UP,POINTOPOINT,RUNNING,MULTICAST,IPv4> mtu 1500 index 2
>        inet 192.168.0.181 --> 192.168.0.181 netmask ffffff00

> And network connection is still dead.

It's not really dead, but the interface believes that it's a
point-to-point link.
That will prevent it from working correctly.  Your /etc/hostname.e1000g0
file probably contains the server name twice, like this:

    frasse frasse

or perhaps it contains both the name and the IP address, like this:

    192.168.0.181 frasse

or this:

    frasse  192.168.0.181

Any of these would cause the interface to believe that it should try to
operate as a point-to-point interface, which is not what you want.

The /etc/hostname.e1000g0 file must contain the server name only once.
If you aren't certain about what's supposed to go into this file then just
do this:

    echo 'frasse  netmask  +  broadcast  +' > /etc/hostname.e1000g0

and then reboot.

OttoM.
__
ottomeister

Disclaimer: These are my opinions.  I do not speak for my employer.
_______________________________________________
SunRay-Users mailing list
[email protected]
http://www.filibeto.org/mailman/listinfo/sunray-users

Reply via email to