mininet-sample/mpECMPSingleInterfaceConfig.py

166 lines
5.7 KiB
Python
Raw Normal View History

2020-06-24 08:36:26 +00:00
from core.topo import Topo, TopoConfig, TopoParameter
from mpECMPSingleInterfaceTopo import MpECMPSingleInterfaceTopo
from struct import *
2020-06-24 08:36:26 +00:00
class MpECMPSingleInterfaceConfig(TopoConfig):
2020-06-23 11:20:07 +00:00
def __init__(self, topo, param):
2020-06-24 08:54:44 +00:00
super(MpECMPSingleInterfaceConfig, self).__init__(topo, param)
2020-06-23 11:20:07 +00:00
def configureRoute(self):
i = 0
mask = len(self.topo.routers) - 1
for l in self.topo.routers:
cmd = self.getIptableRuleICMP(mask, i)
self.topo.commandTo(self.client, cmd)
self.topo.commandTo(self.server, cmd)
cmd = self.getIptableRuleTCPPortClient(mask, i)
self.topo.commandTo(self.client, cmd)
cmd = self.getIptableRuleTCPPortServer(mask, i)
self.topo.commandTo(self.server, cmd)
cmd = self.getIpRuleCmd(i)
self.topo.commandTo(self.client, cmd)
self.topo.commandTo(self.server, cmd)
cmd = self.getDefaultRouteCmd(self.getRouterIPClient(i),
i)
self.topo.commandTo(self.client, cmd)
cmd = self.getDefaultRouteCmd(self.getRouterIPServer(i),
i)
self.topo.commandTo(self.server, cmd)
i = i + 1
###
cmd = self.addRouteDefaultSimple(self.getRouterIPServer(0))
self.topo.commandTo(self.server, cmd)
cmd = self.addRouteDefaultSimple(self.getRouterIPClient(0))
self.topo.commandTo(self.client, cmd)
self.topo.commandTo(self.client, "ip route flush cache")
self.topo.commandTo(self.server, "ip route flush cache")
def getIptableRuleICMP(self, mask, id):
s = 'iptables -t mangle -A OUTPUT -m u32 --u32 ' + \
'"6&0xFF=0x1 && ' + \
'24&0x' + \
pack('>I',(mask)).encode('hex') + \
'=0x' + pack('>I',id).encode('hex') + \
'" -j MARK --set-mark ' + str(id + 1)
print (s)
return s
def getIptableRuleTCPPortClient(self, mask, id):
s = 'iptables -t mangle -A OUTPUT -m u32 --u32 ' + \
'"6&0xFF=0x6 && ' + \
'18&0x' + \
pack('>I',(mask)).encode('hex') + \
'=0x' + pack('>I',id).encode('hex') + \
'" -j MARK --set-mark ' + str(id + 1)
print (s)
return s
def getIptableRuleTCPPortServer(self, mask, id):
s = 'iptables -t mangle -A OUTPUT -m u32 --u32 ' + \
'"6&0xFF=0x6 && ' + \
'20&0x' + \
pack('>I',(mask)).encode('hex') + \
'=0x' + pack('>I',id).encode('hex') + \
'" -j MARK --set-mark ' + str(id + 1)
print (s)
return s
def getIpRuleCmd(self, id):
s = 'ip rule add fwmark ' + str(id + 1) + ' table ' + \
str(id + 1)
print(s)
return s
def getDefaultRouteCmd(self, via, id):
s = 'ip route add default via ' + via + ' table ' + str(id + 1)
print(s)
return s
def configureInterfaces(self):
2020-06-24 08:36:26 +00:00
self.client = self.topo.getHost(Topo.clientName)
self.server = self.topo.getHost(Topo.serverName)
2020-06-23 11:20:07 +00:00
self.routers = []
i = 0
netmask = "255.255.255.0"
for l in self.topo.routers:
self.routers.append(self.topo.getHost(
2020-06-24 08:36:26 +00:00
Topo.routerNamePrefix + str(i)))
2020-06-23 11:20:07 +00:00
cmd = self.interfaceUpCommand(
self.getRouterInterfaceLSwitch(i),
self.getRouterIPClient(i), netmask)
self.topo.commandTo(self.routers[-1] , cmd)
cmd = self.interfaceUpCommand(
self.getRouterInterfaceRSwitch(i),
self.getRouterIPServer(i), netmask)
self.topo.commandTo(self.routers[-1] , cmd)
i = i + 1
cmd = self.interfaceUpCommand(self.getClientInterface(0),
self.getClientIP(0), netmask)
self.topo.commandTo(self.client, cmd)
cmd = self.interfaceUpCommand(self.getServerInterface(),
self.getServerIP(), netmask)
self.topo.commandTo(self.server, cmd)
def getClientIP(self, interfaceID):
2020-06-24 08:36:26 +00:00
lSubnet = self.param.getParam(TopoParameter.LSUBNET)
2020-06-23 11:20:07 +00:00
clientIP = lSubnet + str(interfaceID) + ".1"
return clientIP
def getClientSubnet(self, interfaceID):
2020-06-24 08:36:26 +00:00
lSubnet = self.param.getParam(TopoParameter.LSUBNET)
2020-06-23 11:20:07 +00:00
clientSubnet = lSubnet + str(interfaceID) + ".0/24"
return clientSubnet
def getRouterIPClient(self, id):
2020-06-24 08:36:26 +00:00
lSubnet = self.param.getParam(TopoParameter.LSUBNET)
2020-06-23 11:20:07 +00:00
routerIP = lSubnet + "0." + str(id + 2)
return routerIP
def getRouterIPServer(self, id):
2020-06-24 08:36:26 +00:00
rSubnet = self.param.getParam(TopoParameter.RSUBNET)
2020-06-23 11:20:07 +00:00
routerIP = rSubnet + "0." + str(id + 2)
return routerIP
def getServerIP(self):
2020-06-24 08:36:26 +00:00
rSubnet = self.param.getParam(TopoParameter.RSUBNET)
2020-06-23 11:20:07 +00:00
serverIP = rSubnet + "0.1"
return serverIP
def getClientInterfaceCount(self):
return 1
def getRouterInterfaceLSwitch(self, id):
2020-06-24 08:36:26 +00:00
return Topo.routerNamePrefix + str(id) + "-eth0"
2020-06-23 11:20:07 +00:00
def getRouterInterfaceRSwitch(self, id):
2020-06-24 08:36:26 +00:00
return Topo.routerNamePrefix + str(id) + "-eth1"
2020-06-23 11:20:07 +00:00
def getClientInterface(self, interfaceID):
2020-06-24 08:36:26 +00:00
return Topo.clientName + "-eth" + str(interfaceID)
2020-06-23 11:20:07 +00:00
def getServerInterface(self):
2020-06-24 08:36:26 +00:00
return Topo.serverName + "-eth0"
2020-06-23 11:20:07 +00:00
def getMidLeftName(self, id):
2020-06-24 08:36:26 +00:00
return Topo.routerNamePrefix + str(id)
2020-06-23 11:20:07 +00:00
def getMidRightName(self, id):
2020-06-24 08:36:26 +00:00
return Topo.switchNamePrefix + "1"
2020-06-23 11:20:07 +00:00
def getMidL2RInterface(self, id):
return self.getMidLeftName(id) + "-eth1"
def getMidR2LInterface(self, id):
return self.getMidRightName(id) + "-eth" + str(id+2)