-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig_with_change.py
58 lines (50 loc) · 2.19 KB
/
config_with_change.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import os
import time
from topo.swslot import swslot
from route_default.rt_default import rt_default
from topo.ctrlslot import ctrlslot
from topo.dbload import dbload
from controller.controller import sw_connect_ctrl
from threading import Thread
def load_db(filePath):
# 初始化数据库
dbdata = dbload(filePath + '/config')
print("--将分布式数据库放入topo")
dbdata.load_db()
if __name__ == "__main__":
filePath = os.path.dirname(__file__)
if not os.path.exists(filePath + "/config/sw_shell"):
os.makedirs(filePath + "/config/sw_shell")
if not os.path.exists(filePath + "/config/ctrl_shell"):
os.makedirs(filePath + "/config/ctrl_shell")
if not os.path.exists(filePath + "/config/rt_shell"):
os.makedirs(filePath + "/config/rt_shell")
# 初始化拓扑
# 初始化卫星交换机和卫星交换机之间的连接
os.system("/usr/bin/gcc-9 -g ./slot_change/sw_slot_change.c ./slot_change/sw_slot_change.h -o ./slot_change/sw_slot_change -lpthread > /dev/null")
sws = swslot(filePath + "/config")
print("--生成链路连接sh脚本,并且复制到对应的docker当中")
sws.config2sh()
print("--启动卫星交换机对应的docker和ovs,并且加载第一个时间片的拓扑")
sws.sw_links_init()
# 初始化第一个时间片的默认路由
rt = rt_default(filePath + '/config')
os.system("sudo ovs-vsctl show > /dev/null")
print("--生成默认路由sh脚本,包括第一个时间片的默认路由和时间片切换需要增删的流表项,并且复制到对应的docker")
rt.config2sh()
print("--加载第一个时间片的默认流表")
rt.load_rt_default()
# 初始化数据库
Thread(target=load_db, args=(filePath,)).start()
time.sleep(10)
# 初始化第一个时间片的控制器
cslot = ctrlslot(filePath + '/config')
print("--生成控制器连接sh脚本")
cslot.config2sh()
print("--将第一个时间片的控制器放入topo")
cslot.ctrl_init()
# time.sleep(10)
# datactrl = cslot.ctrl_slot[0]
# for ctrl in datactrl:
# for sw in datactrl[ctrl]:
# Thread(target=sw_connect_ctrl, args=(sw,ctrl)).start()