WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-users

Re: [Xen-users] No network at all in Kubuntu 8.04

To: Daniel Spies <daniel.spies@xxxxxxxxxxxx>
Subject: Re: [Xen-users] No network at all in Kubuntu 8.04
From: Age_M <Age_M@xxxxxx>
Date: Mon, 12 May 2008 15:34:47 +0200
Cc: xen-users@xxxxxxxxxxxxxxxxxxx
Delivery-date: Mon, 12 May 2008 06:35:25 -0700
Envelope-to: www-data@xxxxxxxxxxxxxxxxxx
In-reply-to: <482814C9.9010800@xxxxxx>
List-help: <mailto:xen-users-request@lists.xensource.com?subject=help>
List-id: Xen user discussion <xen-users.lists.xensource.com>
List-post: <mailto:xen-users@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-users>, <mailto:xen-users-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-users>, <mailto:xen-users-request@lists.xensource.com?subject=unsubscribe>
References: <200805101723.54856.daniel.spies@xxxxxxxxxxxx> <48280CC0.4070007@xxxxxx> <200805121147.02127.daniel.spies@xxxxxxxxxxxx> <482814C9.9010800@xxxxxx>
Sender: xen-users-bounces@xxxxxxxxxxxxxxxxxxx
User-agent: Thunderbird 2.0.0.14 (Windows/20080421)
Hi Daniel,

Age_M schrieb:
Daniel Spies schrieb:
On Monday 12 May 2008 11:24:16 Age_M wrote:
Hi Daniel,
    Why does your peth0 has an ip-address?

Good question, I don't know... What do you suggest me to do?
Both, eth0 and peth0 have the very same configuration and IP addresses in "ifconfig -a".

irrlicht@home:~$ cat /etc/network/interfaces
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback
address 127.0.0.1
netmask 255.0.0.0
auto eth0
iface eth0 inet dhcp
Try using static ip instead of dhcp in dom0. Maybe this is messing with your interfaces.

_______________________________________________
Xen-users mailing list
Xen-users@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-users

I recently had a networking problem myself, where only pings came through from domU to the physical network. I had to turn off tx checksum offload with ethtool. I integrated it in the xen-network-common.sh script, so maybe this patch will help you too?!

This patch modifies the last line in the "add_to_bridge ()" function:

--- scripts/xen-network-common.sh       2008-05-12 15:22:52.000000000 +0200
+++ scripts/xen-network-common.sh.modified 2008-05-12 15:23:41.000000000 +0200
@@ -124,5 +124,6 @@
    fi
    brctl addif ${bridge} ${dev}
    ip link set ${dev} up
+    ethtool -K ${dev} tx off
}

Hope it helps,
Greetz Age_M

_______________________________________________
Xen-users mailing list
Xen-users@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-users