forked from opennetworkinglab/onos-p4-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtopo.py
executable file
·98 lines (78 loc) · 3.47 KB
/
topo.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
#!/usr/bin/python
# Copyright 2019-present Open Networking Foundation
#
# 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.
import argparse
from mininet.cli import CLI
from mininet.log import setLogLevel
from mininet.net import Mininet
from mininet.node import RemoteController
from mininet.topo import Topo
from bmv2 import ONOSStratumSwitch
from host6 import IPv6Host
CPU_PORT = 255
class TutorialTopo(Topo):
"""Trellis basic topology"""
def __init__(self, *args, **kwargs):
Topo.__init__(self, *args, **kwargs)
# Leaves
leaf1 = self.addSwitch('leaf1', cls=ONOSStratumSwitch, grpcport=50001,
cpuport=CPU_PORT)
leaf2 = self.addSwitch('leaf2', cls=ONOSStratumSwitch, grpcport=50002,
cpuport=CPU_PORT)
# Spines
spine1 = self.addSwitch('spine1', cls=ONOSStratumSwitch, grpcport=50003,
cpuport=CPU_PORT)
spine2 = self.addSwitch('spine2', cls=ONOSStratumSwitch, grpcport=50004,
cpuport=CPU_PORT)
# Switch Links
self.addLink(spine1, leaf1)
self.addLink(spine1, leaf2)
self.addLink(spine2, leaf1)
self.addLink(spine2, leaf2)
# IPv6 hosts attached to leaf 1
h1a = self.addHost('h1a', cls=IPv6Host, mac="00:00:00:00:00:1A",
ipv6='2001:1:1::a/64', ipv6_gw='2001:1:1::ff')
h1b = self.addHost('h1b', cls=IPv6Host, mac="00:00:00:00:00:1B",
ipv6='2001:1:1::b/64', ipv6_gw='2001:1:1::ff')
h1c = self.addHost('h1c', cls=IPv6Host, mac="00:00:00:00:00:1C",
ipv6='2001:1:1::c/64', ipv6_gw='2001:1:1::ff')
h2 = self.addHost('h2', cls=IPv6Host, mac="00:00:00:00:00:20",
ipv6='2001:1:2::1/64', ipv6_gw='2001:1:2::ff')
self.addLink(h1a, leaf1) # port 3
self.addLink(h1b, leaf1) # port 4
self.addLink(h1c, leaf1) # port 5
self.addLink(h2, leaf1) # port 6
# IPv6 hosts attached to leaf 2
h3 = self.addHost('h3', cls=IPv6Host, mac="00:00:00:00:00:30",
ipv6='2001:2:3::1/64', ipv6_gw='2001:2:3::ff')
h4 = self.addHost('h4', cls=IPv6Host, mac="00:00:00:00:00:40",
ipv6='2001:2:4::1/64', ipv6_gw='2001:2:4::ff')
self.addLink(h3, leaf2) # port 3
self.addLink(h4, leaf2) # port 4
def main(argz):
topo = TutorialTopo()
controller = RemoteController('c0', ip=argz.onos_ip)
net = Mininet(topo=topo, controller=None)
net.addController(controller)
net.start()
CLI(net)
net.stop()
if __name__ == "__main__":
parser = argparse.ArgumentParser(
description='Mininet script for 2x2 fabric with BMv2 and IPv6 hosts')
parser.add_argument('--onos-ip', help='ONOS controller IP address',
type=str, action="store", required=True)
args = parser.parse_args()
setLogLevel('info')
main(args)