*Here is S40-network's content:*
*$ cat* /etc/rc3.d/S40-network
#!/bin/sh
#
# Start the network....
#
case "$1" in
start)
echo "Starting network..."
/sbin/ifup -a
;;
stop)
echo -n "Stopping network..."
/sbin/ifdown -a
;;
restart|reload)
"$0" stop
"$0" start
;;
*)
echo $"Usage: $0 {start|stop|restart}"
exit 1
esac
exit $?
2013/8/27 Razique Mahroua <razique.mahroua at gmail.com>
> Does the instance start on the new node? Does the network goes up if you
> check via VNC?
>
> Le 27 août 2013 à 11:32, 郭龙仓 <guolongcang.work at gmail.com> a écrit :
>
> If I create a vmA on hostA, then migrate the vmA to hostB , then vmA
> cannot connect to the network; If I move vmA back to hostA from hostB
> ,then vmA's network become normal again.
>
>
> 2013/8/27 郭龙仓 <guolongcang.work at gmail.com>
>
>>
>>
> _______________________________________________
> Mailing list:
> http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack
> Post to : openstack at lists.openstack.org
> Unsubscribe :
> http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack
>
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.openstack.org/pipermail/openstack/attachments/20130828/2945058e/attachment.html>