<html><head></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; ">the network host for a 'normal' network will always get the gateway ip, but it doesn't delete the existing ip.  It should also show the original ip if you do:<div>ip addr show</div><div><br></div><div>One thing to keep in mind though, you will need to mark that ip reserved in the database if don't want it assigned to the vm:</div><div>UPDATE fixed_ips set reserved=TRUE where address='192.168.200.20';</div><div><br></div><div> A 'multi_host' network is a little bit different, it will give out a random ip from the vm network to the host machine.  You can pre-allocate a particular ip to a host if you want by manually setting the host field to a the hostname of the machine.  Something like:</div><div>UPDATE fixed_ips set host=$HOSTNAME where address='192.168.200.20';</div><div>UPDATE networks set multi_host=TRUE;</div><div><br></div><div>This will force nova-network to assign that ip to the host instead of trying to give out 200.1</div><div><br></div><div>Vish</div><div><br></div><div><div><div>On Sep 27, 2011, at 5:30 AM, Michael Basnight wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite">

<meta http-equiv="Content-Type" content="text/html; charset=gb2312">

<div bgcolor="#FFFFFF">
<div>I typically go in to the db and delete the ips I don't need. The cidr mapping will insert all the ips in that range, so go clean them out in fixed_ips in the db. <br>
<br>
Sent from my iPhone</div>
<div><br>
On Sep 27, 2011, at 1:08 AM, "DeadSun" <<a href="mailto:mwjpiero@gmail.com">mwjpiero@gmail.com</a>> wrote:<br>
<br>
</div>
<div></div>
<blockquote type="cite">
<div>
<div>Hi, erveryone:<br clear="all">
</div>
<div><br>
</div>
<div>I used FLATDHCP network. And I set br100 on eth0 only. The ip is 192.168.200.20. Then I assign the fixed_ips range "<a href="http://192.168.200.0/24">192.168.200.0/24</a>".</div>
<div>But when nova-network restarted, br100 is assigned to 192.168.200.1. This is not what I want. </div>
<div><br>
</div>
<div>Dose anyone can help me?</div>
<div><br>
</div>
<div>2011.3 (2011.3-nova-milestone-tarball:tarmac-20110922115702-k9nkvxqzhj130av2)</div>
<br>
-- <br>
非淡薄无以明志,非宁静无以致远<br>
</div>
</blockquote>
<blockquote type="cite">
<div><span>_______________________________________________</span><br>
<span>Mailing list: <a href="https://launchpad.net/~openstack"></a><a href="https://launchpad.net/~openstack">https://launchpad.net/~openstack</a></span><br>
<span>Post to     : <a href="mailto:openstack@lists.launchpad.net"></a><a href="mailto:openstack@lists.launchpad.net">openstack@lists.launchpad.net</a></span><br>
<span>Unsubscribe : <a href="https://launchpad.net/~openstack"></a><a href="https://launchpad.net/~openstack">https://launchpad.net/~openstack</a></span><br>
<span>More help   : <a href="https://help.launchpad.net/ListHelp"></a><a href="https://help.launchpad.net/ListHelp">https://help.launchpad.net/ListHelp</a></span><br>
</div>
</blockquote>
<font face="monospace">This email may include confidential information. If you received it in error, please delete it.</font></div>

_______________________________________________<br>Mailing list: <a href="https://launchpad.net/~openstack">https://launchpad.net/~openstack</a><br>Post to     : <a href="mailto:openstack@lists.launchpad.net">openstack@lists.launchpad.net</a><br>Unsubscribe : <a href="https://launchpad.net/~openstack">https://launchpad.net/~openstack</a><br>More help   : <a href="https://help.launchpad.net/ListHelp">https://help.launchpad.net/ListHelp</a><br></blockquote></div><br></div></body></html>