]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commit
Support for NVP advanced service router
authorKaiwei Fan <fank@vmware.com>
Fri, 23 Aug 2013 06:25:52 +0000 (23:25 -0700)
committerKaiwei Fan <fank@vmware.com>
Wed, 11 Sep 2013 07:58:57 +0000 (00:58 -0700)
commitf43eb49f56accab87e4d1b6defcf78d1e697f9e6
treeedc68f5d62e76cdd5325cb786e21539bd87ff02e
parent39ef7594bd8f27253507135c4f72cce84a324466
Support for NVP advanced service router

When creating an LR:
    - deploy an Edge asynchronously
    - create a L2 switch for connecting LR and Edge
    - attach a router port to the L2 switch.
    - assign ip address 169.254.2.1/28 and nexthop 169.254.2.3 to LR
When set external gateway:
    - configure Edge interface and default gateway
    - Add static routes to Edge for all logic networks attached to LR via nexthop 169.254.2.1
    - configure SNAT rules for all logic networks attached to LR
When add router interface:
    - Add static route/SNAT rule for the network attached to LR
When associate floating IP address:
    - configure DNAT rule for the floating ip and the port

Tests being done:
    - Verified Edge is deployed asynchronously and LR is attached to the internal created L2 switch
    - Manually attach Edge's vNic to the L2 switch and Edge is able to ping 169.254.2.1
    - Verified router-delete deletes Edge asynchronously and remove the internal L2 switch
    - Verified SNAT/DNAT/static-routes rules are configured on Edge in correct order
    - Verified external vnic ip address/netmask and default gateway is configured

Implements: blueprint nvp-service-router
Change-Id: If9eff53df4d65cf4e318dedbfaafc742f6c6ab7f
15 files changed:
neutron/db/migration/alembic_migrations/versions/4a666eb208c2_service_router.py [new file with mode: 0644]
neutron/plugins/nicira/NeutronPlugin.py
neutron/plugins/nicira/NeutronServicePlugin.py [new file with mode: 0644]
neutron/plugins/nicira/dbexts/distributedrouter.py
neutron/plugins/nicira/dbexts/nicira_models.py
neutron/plugins/nicira/dbexts/nsxrouter.py [new file with mode: 0644]
neutron/plugins/nicira/dbexts/servicerouter.py [new file with mode: 0644]
neutron/plugins/nicira/dbexts/vcns_db.py [new file with mode: 0644]
neutron/plugins/nicira/dbexts/vcns_models.py [new file with mode: 0644]
neutron/plugins/nicira/extensions/servicerouter.py [new file with mode: 0644]
neutron/plugins/nicira/vshield/edge_appliance_driver.py
neutron/plugins/nicira/vshield/vcns.py
neutron/tests/unit/nicira/__init__.py
neutron/tests/unit/nicira/test_edge_router.py [new file with mode: 0644]
neutron/tests/unit/nicira/test_nicira_plugin.py