nova/nova
Mark McLoughlin 086a2184bc Add iptables filter rules for dnsmasq (lp:844935)
On Fedora, the default policy for the INPUT chain in the filter table
is DROP. This means that DHCP and DNS request packets from the guest
get dropped.

Add these rules to allow the traffic through:

 $> sudo iptables -t filter -A nova-network-INPUT -i br0 -p udp -m udp --dport 67 -j ACCEPT
 $> sudo iptables -t filter -A nova-network-INPUT -i br0 -p tcp -m tcp --dport 67 -j ACCEPT
 $> sudo iptables -t filter -A nova-network-INPUT -i br0 -p udp -m udp --dport 53 -j ACCEPT
 $> sudo iptables -t filter -A nova-network-INPUT -i br0 -p tcp -m tcp --dport 53 -j ACCEPT
2011-09-20 09:37:07 +00:00
..
api * Remove the foreign key and backrefs tying vif<->instance 2011-09-19 20:16:49 +00:00
auth fix for rc generation using noauth. 2011-08-23 12:21:52 -07:00
CA some cleanup. VSA flag status changes. returned some files 2011-07-25 16:26:23 -07:00
cloudpipe remove extra reference in pipelib 2011-08-17 20:26:33 -07:00
compute merged trunk and resolved conflict 2011-09-19 15:32:45 -07:00
console Remove spurious direct use of subprocess 2011-08-05 14:02:55 +02:00
db Update migration 047 to dynamically lookup the name of the instance_id 2011-09-19 22:04:32 -04:00
image merging trunk; resolving conflicts 2011-09-12 15:39:13 -04:00
ipv6 Bug #835964: pep8 violations in IPv6 code 2011-08-28 16:17:17 +05:30
network Add iptables filter rules for dnsmasq (lp:844935) 2011-09-20 09:37:07 +00:00
notifier more logging info to help identify bad payloads 2011-08-29 10:27:25 -07:00
objectstore fix pylint W0102 errors. 2011-08-03 20:26:37 -04:00
rpc kludge for kombu 1.1.3 memory transport bug 2011-08-31 11:54:19 -07:00
scheduler don't need random in abstract_scheduler.py anymore... 2011-09-09 20:27:22 +00:00
tests merged trunk and resolved conflict 2011-09-19 15:32:45 -07:00
virt create disk.local the same way ephemerals are created (LP: #851145) 2011-09-20 08:41:51 +00:00
vnc Remove instances of the "diaper pattern" 2011-08-03 19:17:08 -04:00
volume deprecate aoe 2011-09-13 14:32:24 -07:00
vsa removed create_volumes, added log & doc comment about experimental code 2011-08-26 13:55:43 -07:00
__init__.py Removing import of nova.test added to nova/__init.py__ as problem turned out to be somewhere else (not in nova source code tree) 2011-07-04 17:22:08 +01:00
block_device.py block_device: introduce helper function to check swap or ephemeral device 2011-07-23 16:55:25 +09:00
context.py Update GlanceClient, GlanceImageService, and Glance Xen plugin to work with 2011-09-10 13:56:54 -04:00
crypto.py added tests - list doesn't pass due to unicode issues 2011-08-09 13:00:13 -07:00
exception.py NoMoreFixedIps now subclasses NovaException instead of Error 2011-09-15 16:58:22 -05:00
fakememcache.py docstring cleanup, nova dir 2011-04-20 12:08:22 -07:00
fakerabbit.py cleanup the code for merging 2011-05-25 15:42:49 -07:00
flags.py Update the v1.0 rescue admin action and the v1.1 rescue extension to 2011-09-06 07:31:39 -04:00
log.py cosmetic cleanup 2011-08-25 19:09:50 -07:00
manager.py docstring cleanup, nova dir 2011-04-20 12:08:22 -07:00
quota.py VSA code redesign. Drive types completely replaced by Volume types 2011-08-25 18:38:35 -07:00
service.py ditched rpc.create_consumer(conn) interface... instead you now do conn.create_consumer(.. 2011-08-29 14:36:12 -07:00
test.py support the extra optional arguments for msg to assertIn and assertNotIn 2011-08-29 01:13:08 -07:00
utils.py Fixed review comments 2011-09-02 11:00:33 -07:00
version.py Open Essex (switch version to 2012.1) 2011-09-09 09:27:26 +02:00
wsgi.py Next round of prep for keystone integration. 2011-08-19 19:02:02 +00:00