On Friday 21 April 2006 20:40, xpto09 wrote: > On 4/21/06, Stefano Melchior <[EMAIL PROTECTED]> wrote:
> > For instance, when you install uml-utilities the system (on debian) > > creates a socket > > > > /usr/bin/uml_switch -unix /var/run/uml-utilities/uml_switch.ctl > > When you launch your uml systems, remember to include them in the > > definition of the ethX parameters: see man linux for examples. > > > > i.e.: eth[0-9]+=mcast,ethernet_address,address,port,ttl > > I mean eth0=mcast,,192.168.0.254,3 from machine2 point of view and > > eth0=mcast,,192.168.0.253,3 from the other system point of view No, that's wrong. 1) eth0=mcast like he did at the beginning is supposed to work, if it doesn't the host kernel is missing the "IP: multicast routing" option (CONFIG_IP_MROUTE) or "IP: multicasting" (CONFIG_IP_MULTICAST). 2) Your configuration is invalid. What you call "address" is multicast_address and must be a multicast one, like 239.192.168.1 (the default one, valid for local use). See http://user-mode-linux.sourceforge.net/networking.html and (reachable from there): http://user-mode-linux.sourceforge.net/text/mcast.txt > ___________________________________________________________________________ >________ I- I don't know weather I made correct. > > #/usr/bin/uml_switch -unix /var/run/uml-utilities/uml_switch.ctl > The control socket '/var/run/uml-utilities/uml_switch.ctl' has another > server attached to it > You can either > remove '/var/run/uml-utilities/uml_switch.ctl' > or rerun with a different, unused filename for a socket That's because Debian already ran that command, so it already created the communication socket. You don't need to run your own daemon. To use that socket, you need to use eth0=daemon, but it will look for /tmp/uml.ctl, so you must specify the path: eth0=daemon,,,/var/run/uml-utilities/uml_switch.ctl and it'll work like your eth0=daemon setup. -- Inform me of my mistakes, so I can keep imitating Homer Simpson's "Doh!". Paolo Giarrusso, aka Blaisorblade (Skype ID "PaoloGiarrusso", ICQ 215621894) http://www.user-mode-linux.org/~blaisorblade ___________________________________ Yahoo! Messenger with Voice: chiama da PC a telefono a tariffe esclusive http://it.messenger.yahoo.com ------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ User-mode-linux-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/user-mode-linux-user
