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-devel

[Xen-devel] [PATCH] Add checks for iptables and iproute2 (Was Re: Coral

To: xen-devel@xxxxxxxxxxxxxxxxxxxxx
Subject: [Xen-devel] [PATCH] Add checks for iptables and iproute2 (Was Re: Coral with Xen)
From: Anthony Liguori <anthony@xxxxxxxxxxxxx>
Date: Sun, 09 Jan 2005 17:10:24 -0600
Delivery-date: Sun, 09 Jan 2005 23:22:11 +0000
Envelope-to: xen+James.Bulpin@xxxxxxxxxxxx
In-reply-to: <3b793f1a05010913532e834754@xxxxxxxxxxxxxx>
List-archive: <http://sourceforge.net/mailarchive/forum.php?forum=xen-devel>
List-help: <mailto:xen-devel-request@lists.sourceforge.net?subject=help>
List-id: List for Xen developers <xen-devel.lists.sourceforge.net>
List-post: <mailto:xen-devel@lists.sourceforge.net>
List-subscribe: <https://lists.sourceforge.net/lists/listinfo/xen-devel>, <mailto:xen-devel-request@lists.sourceforge.net?subject=subscribe>
List-unsubscribe: <https://lists.sourceforge.net/lists/listinfo/xen-devel>, <mailto:xen-devel-request@lists.sourceforge.net?subject=unsubscribe>
References: <3b793f1a05010913532e834754@xxxxxxxxxxxxxx>
Sender: xen-devel-admin@xxxxxxxxxxxxxxxxxxxxx
User-agent: Mozilla Thunderbird 1.0 (X11/20041206)
The following two scripts add checks for iptables and iproute2 during install.

Not all distributions include these by default. I know this was a source of problems (with Gentoo) for me as the network scripts used by Xend silently fail if these commands aren't available.

It could be that Coral does not include one of these two packages by default.

Regards,
Anthony Liguori

Kero-Chan wrote:

Hi!

Coral isn't working from Xen. If you can please try it, maybe i'm just
doing something wrong. However it works from outside Xen with the same
setup.
Can Xen cause this kind of DNS errors?
Try something like: http://www.scs.cs.nyu.edu.nyud.net:8090/coral/
or http://www.google.com.nyud.net:8090/


#!/bin/bash
# CHECK-INSTALL

function error {
   echo 'Check for iproute2 failed.'
   exit 1
}

which ip || error
#!/bin/bash
# CHECK-INSTALL

function error {
   echo 'Check for the iptables failed.'
   exit 1
}

which iptables || error
<Prev in Thread] Current Thread [Next in Thread>