From: Ihar Hrachyshka Date: Thu, 25 Jun 2015 13:54:34 +0000 (+0200) Subject: linuxbridge: clean up README file X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=61909ac515c337c94f55805641b1b7c725a95191;p=openstack-build%2Fneutron-build.git linuxbridge: clean up README file It's weird that we suggest users to copy python files around instead of relying on generated console_scripts. Other configuration information located here is trivial and is documented elsewhere, f.e. [1]. [1]: http://docs.openstack.org/networking-guide/deploy_scenario1b.html Change-Id: Ie8dd37087599ff4b5e23f0ad01105f94f5b886ab --- diff --git a/neutron/plugins/linuxbridge/README b/neutron/plugins/linuxbridge/README index 89eb5ece6..008ba1ab7 100644 --- a/neutron/plugins/linuxbridge/README +++ b/neutron/plugins/linuxbridge/README @@ -2,46 +2,3 @@ The Neutron Linux Bridge plugin has removed from the tree in Juno. You must migrate to ML2 using the script in: neutron/db/migration/migrate_to_ml2.py - -# -- Agent configuration - -- Edit the configuration file: - etc/neutron/plugins/linuxbridge/linuxbridge_conf.ini - -- Copy neutron/plugins/linuxbridge/agent/linuxbridge_neutron_agent.py - and etc/neutron/plugins/linuxbridge/linuxbridge_conf.ini - to the compute node. - -- Copy the neutron.conf file to the compute node - - Note: debug and logging information should be updated in etc/neutron.conf - -- On each compute node, the network_interface_mappings must be - configured in linuxbridge_conf.ini to map each physical network name - to the physical interface connecting the node to that physical - network. Entries are of the form - ":". For example, one compute - node may use the following physical_inteface_mappings entries: - - [LINUX_BRIDGE] - physical_interface_mappings = physnet1:eth1,physnet2:eth2,physnet3:eth3 - - while another might use: - - [LINUX_BRIDGE] - physical_interface_mappings = physnet1:em3,physnet2:em2,physnet3:em1 - - -$ Run the following: - python linuxbridge_neutron_agent.py --config-file neutron.conf - --config-file linuxbridge_conf.ini - - Note that the the user running the agent must have sudo priviliges - to run various networking commands. Also, the agent can be - configured to use neutron-rootwrap, limiting what commands it can - run via sudo. See http://wiki.openstack.org/Packager/Rootwrap for - details on rootwrap. - - As an alternative to coping the agent python file, if neutron is - installed on the compute node, the agent can be run as - bin/neutron-linuxbridge-agent.