*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 <[email protected]>

> 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, 郭龙仓 <[email protected]> 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 郭龙仓 <[email protected]>
>
>>
>>
> _______________________________________________
> Mailing list:
> http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack
> Post to     : [email protected]
> Unsubscribe :
> http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack
>
>
>
_______________________________________________
Mailing list: http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack
Post to     : [email protected]
Unsubscribe : http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack

Reply via email to