small cleanup to sdn services, added loadservice line to daemon, and updated example service for how current services are coded
This commit is contained in:
parent
e39682c5b4
commit
6bfa81f3a8
3 changed files with 48 additions and 41 deletions
|
@ -1,12 +1,13 @@
|
||||||
"""
|
"""
|
||||||
sdn.py defines services to start Open vSwitch and the Ryu SDN Controller.
|
sdn.py defines services to start Open vSwitch and the Ryu SDN Controller.
|
||||||
"""
|
"""
|
||||||
import os
|
|
||||||
import re
|
import re
|
||||||
|
|
||||||
from core.service import CoreService
|
from core.service import CoreService
|
||||||
from core.service import ServiceManager
|
from core.service import ServiceManager
|
||||||
|
|
||||||
|
|
||||||
class SdnService(CoreService):
|
class SdnService(CoreService):
|
||||||
"""
|
"""
|
||||||
Parent class for SDN services.
|
Parent class for SDN services.
|
||||||
|
@ -24,6 +25,7 @@ class SdnService(CoreService):
|
||||||
def generateconfig(cls, node, filename, services):
|
def generateconfig(cls, node, filename, services):
|
||||||
return ""
|
return ""
|
||||||
|
|
||||||
|
|
||||||
class OvsService(SdnService):
|
class OvsService(SdnService):
|
||||||
_name = "OvsService"
|
_name = "OvsService"
|
||||||
_group = "SDN"
|
_group = "SDN"
|
||||||
|
@ -55,7 +57,7 @@ class OvsService(SdnService):
|
||||||
cfg += "ifconfig ovsbr0 up\n"
|
cfg += "ifconfig ovsbr0 up\n"
|
||||||
|
|
||||||
for ifc in node.netifs():
|
for ifc in node.netifs():
|
||||||
if hasattr(ifc, 'control') and ifc.control == True:
|
if hasattr(ifc, 'control') and ifc.control is True:
|
||||||
continue
|
continue
|
||||||
ifnumstr = re.findall(r"\d+", ifc.name)
|
ifnumstr = re.findall(r"\d+", ifc.name)
|
||||||
ifnum = ifnumstr[0]
|
ifnum = ifnumstr[0]
|
||||||
|
@ -77,20 +79,19 @@ class OvsService(SdnService):
|
||||||
if has_zebra == 0:
|
if has_zebra == 0:
|
||||||
cfg += "ip -6 addr add %s dev rtr%s\n" % (ifcaddr, ifnum)
|
cfg += "ip -6 addr add %s dev rtr%s\n" % (ifcaddr, ifnum)
|
||||||
else:
|
else:
|
||||||
raise Value, "invalid address: %s", x
|
raise ValueError("invalid address: %s" % ifcaddr)
|
||||||
|
|
||||||
# add interfaces to bridge
|
# add interfaces to bridge
|
||||||
cfg += "ovs-vsctl add-port ovsbr0 eth%s\n" % ifnum
|
cfg += "ovs-vsctl add-port ovsbr0 eth%s\n" % ifnum
|
||||||
cfg += "ovs-vsctl add-port ovsbr0 sw%s\n" % ifnum
|
cfg += "ovs-vsctl add-port ovsbr0 sw%s\n" % ifnum
|
||||||
|
|
||||||
|
|
||||||
# Add rule for default controller if there is one local (even if the controller is not local, it finds it)
|
# Add rule for default controller if there is one local (even if the controller is not local, it finds it)
|
||||||
cfg += "ovs-vsctl set-controller ovsbr0 tcp:127.0.0.1:6633\n"
|
cfg += "ovs-vsctl set-controller ovsbr0 tcp:127.0.0.1:6633\n"
|
||||||
|
|
||||||
# Setup default flows
|
# Setup default flows
|
||||||
portnum = 1
|
portnum = 1
|
||||||
for ifc in node.netifs():
|
for ifc in node.netifs():
|
||||||
if hasattr(ifc, 'control') and ifc.control == True:
|
if hasattr(ifc, 'control') and ifc.control is True:
|
||||||
continue
|
continue
|
||||||
cfg += "ovs-ofctl add-flow ovsbr0 priority=1000,in_port=%d,action=output:%d\n" % (portnum, portnum + 1)
|
cfg += "ovs-ofctl add-flow ovsbr0 priority=1000,in_port=%d,action=output:%d\n" % (portnum, portnum + 1)
|
||||||
cfg += "ovs-ofctl add-flow ovsbr0 priority=1000,in_port=%d,action=output:%d\n" % (portnum + 1, portnum)
|
cfg += "ovs-ofctl add-flow ovsbr0 priority=1000,in_port=%d,action=output:%d\n" % (portnum + 1, portnum)
|
||||||
|
@ -98,7 +99,8 @@ class OvsService(SdnService):
|
||||||
|
|
||||||
return cfg
|
return cfg
|
||||||
|
|
||||||
class ryuService(SdnService):
|
|
||||||
|
class RyuService(SdnService):
|
||||||
_name = "ryuService"
|
_name = "ryuService"
|
||||||
_group = "SDN"
|
_group = "SDN"
|
||||||
_depends = ()
|
_depends = ()
|
||||||
|
@ -106,21 +108,21 @@ class ryuService(SdnService):
|
||||||
_configs = ('ryuService.sh',)
|
_configs = ('ryuService.sh',)
|
||||||
_startindex = 50
|
_startindex = 50
|
||||||
_startup = ('sh ryuService.sh',)
|
_startup = ('sh ryuService.sh',)
|
||||||
_shutdown = ('killall ryu-manager')
|
_shutdown = ('killall ryu-manager',)
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def generateconfig(cls, node, filename, services):
|
def generateconfig(cls, node, filename, services):
|
||||||
''' Return a string that will be written to filename, or sent to the
|
"""
|
||||||
|
Return a string that will be written to filename, or sent to the
|
||||||
GUI for user customization.
|
GUI for user customization.
|
||||||
'''
|
"""
|
||||||
app_path = "/usr/local/lib/python2.7/dist-packages/ryu/app"
|
app_path = "/usr/local/lib/python2.7/dist-packages/ryu/app"
|
||||||
cfg = "#!/bin/sh\n"
|
cfg = "#!/bin/sh\n"
|
||||||
cfg += "# auto-generated by ryuService (ryuService.py)\n"
|
cfg += "# auto-generated by ryuService (ryuService.py)\n"
|
||||||
cfg += '/usr/local/bin/ryu-manager --observe-links %s/ofctl_rest.py %s/rest_topology.py' % (app_path, app_path)
|
cfg += '/usr/local/bin/ryu-manager --observe-links %s/ofctl_rest.py %s/rest_topology.py' % (app_path, app_path)
|
||||||
return cfg
|
return cfg
|
||||||
|
|
||||||
|
|
||||||
def load_services():
|
def load_services():
|
||||||
ServiceManager.add(OvsService)
|
ServiceManager.add(OvsService)
|
||||||
ServiceManager.add(ryuService)
|
ServiceManager.add(RyuService)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -3,19 +3,19 @@
|
||||||
# Copyright (c)2010-2012 the Boeing Company.
|
# Copyright (c)2010-2012 the Boeing Company.
|
||||||
# See the LICENSE file included in this distribution.
|
# See the LICENSE file included in this distribution.
|
||||||
#
|
#
|
||||||
''' Sample user-defined service.
|
"""
|
||||||
'''
|
Sample user-defined service.
|
||||||
|
"""
|
||||||
import os
|
|
||||||
|
|
||||||
from core.misc.ipaddress import Ipv4Prefix
|
from core.misc.ipaddress import Ipv4Prefix
|
||||||
from core.misc.ipaddress import Ipv6Prefix
|
|
||||||
from core.service import CoreService
|
from core.service import CoreService
|
||||||
from core.service import ServiceManager
|
from core.service import ServiceManager
|
||||||
|
|
||||||
|
|
||||||
class MyService(CoreService):
|
class MyService(CoreService):
|
||||||
''' This is a sample user-defined service.
|
"""
|
||||||
'''
|
This is a sample user-defined service.
|
||||||
|
"""
|
||||||
# a unique name is required, without spaces
|
# a unique name is required, without spaces
|
||||||
_name = "MyService"
|
_name = "MyService"
|
||||||
# you can create your own group here
|
# you can create your own group here
|
||||||
|
@ -36,9 +36,10 @@ class MyService(CoreService):
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def generateconfig(cls, node, filename, services):
|
def generateconfig(cls, node, filename, services):
|
||||||
''' Return a string that will be written to filename, or sent to the
|
"""
|
||||||
|
Return a string that will be written to filename, or sent to the
|
||||||
GUI for user customization.
|
GUI for user customization.
|
||||||
'''
|
"""
|
||||||
cfg = "#!/bin/sh\n"
|
cfg = "#!/bin/sh\n"
|
||||||
cfg += "# auto-generated by MyService (sample.py)\n"
|
cfg += "# auto-generated by MyService (sample.py)\n"
|
||||||
|
|
||||||
|
@ -51,16 +52,18 @@ class MyService(CoreService):
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def subnetentry(x):
|
def subnetentry(x):
|
||||||
''' Generate a subnet declaration block given an IPv4 prefix string
|
"""
|
||||||
|
Generate a subnet declaration block given an IPv4 prefix string
|
||||||
for inclusion in the config file.
|
for inclusion in the config file.
|
||||||
'''
|
"""
|
||||||
if x.find(":") >= 0:
|
if x.find(":") >= 0:
|
||||||
# this is an IPv6 address
|
# this is an IPv6 address
|
||||||
return ""
|
return ""
|
||||||
else:
|
else:
|
||||||
net = IPv4Prefix(x)
|
net = Ipv4Prefix(x)
|
||||||
return 'echo " network %s"' % (net)
|
return 'echo " network %s"' % net
|
||||||
|
|
||||||
|
|
||||||
|
def load_services():
|
||||||
# this line is required to add the above class to the list of available services
|
# this line is required to add the above class to the list of available services
|
||||||
ServiceManager.add(MyService)
|
ServiceManager.add(MyService)
|
||||||
|
|
||||||
|
|
|
@ -43,6 +43,7 @@ from core.services import bird
|
||||||
from core.services import dockersvc
|
from core.services import dockersvc
|
||||||
from core.services import nrl
|
from core.services import nrl
|
||||||
from core.services import quagga
|
from core.services import quagga
|
||||||
|
from core.services import sdn
|
||||||
from core.services import security
|
from core.services import security
|
||||||
from core.services import startup
|
from core.services import startup
|
||||||
from core.services import ucarp
|
from core.services import ucarp
|
||||||
|
@ -364,5 +365,6 @@ if __name__ == "__main__":
|
||||||
ucarp.load_services()
|
ucarp.load_services()
|
||||||
dockersvc.load_services()
|
dockersvc.load_services()
|
||||||
startup.load_services()
|
startup.load_services()
|
||||||
|
sdn.load_services()
|
||||||
|
|
||||||
main()
|
main()
|
||||||
|
|
Loading…
Add table
Reference in a new issue