diff options
author | fumihiko kakuma <kakuma@valinux.co.jp> | 2014-02-07 16:36:17 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2014-02-07 19:53:53 +0900 |
commit | a5e369390848282c681b6e89b87865c1e3ead4ae (patch) | |
tree | 16980a4ef5202907116255d062190c713d34e63a /bin | |
parent | d00d1498d7adedb35df5c58575b583a5dad76f14 (diff) |
neutron-ofswitch-agent: neutron agent for ofswitch ML2 mechanism driver
Like ryu-manager, this agent serves Ryu applications and acts an OpenFlow
controller to control switches. The neutron agent logic, which we will
push to the neutron repo, is implemented as a Ryu application.
Implements: OpenStack blueprint ryu-ml2-driver
https://blueprints.launchpad.net/neutron/+spec/ryu-ml2-driver
Signed-off-by: YAMAMOTO Takashi <yamamoto@valinux.co.jp>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/neutron-ofswitch-agent | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/bin/neutron-ofswitch-agent b/bin/neutron-ofswitch-agent new file mode 100755 index 00000000..2778b220 --- /dev/null +++ b/bin/neutron-ofswitch-agent @@ -0,0 +1,19 @@ +#!/usr/bin/env python + +# Copyright (C) 2011, 2012 Nippon Telegraph and Telephone Corporation. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or +# implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from ryu.cmd.ofs_neutron_agent import main +main() |