其他分享
首页 > 其他分享> > 实验1:SDN拓扑实践

实验1:SDN拓扑实践

作者:互联网

一、实验要求

1.能够使用源码安装Mininet;
2.能够使用Mininet的可视化工具生成拓扑;
3.能够使用Mininet的命令行生成特定拓扑;
4.能够使用Mininet交互界面管理SDN拓扑;
5.能够使用Python脚本构建SDN拓扑。

二、实验环境

Ubuntu 20.04 Desktop amd64

三、实验要求

(一)基本要求

1.使用Mininet可视化工具,生成下图所示的拓扑,并保存拓扑文件名为学号.py。

image

2.使用Mininet的命令行生成如下拓扑:

a) 3台交换机,每个交换机连接1台主机,3台交换机连接成一条线。

image

b) 3台主机,每个主机都连接到同1台交换机上。

image

3.在2 b)的基础上,在Mininet交互界面上新增1台主机并且连接到交换机上,再测试新拓扑的连通性。

image

4.编辑(一)中第1步保存的Python脚本,添加如下网络性能限制,生成拓扑:

a) h1的cpu最高不超过50%;

b) h1和s1之间的链路带宽为10,延迟为5ms,最大队列大小为1000,损耗率50。

修改后代码:

image

mininet运行结果:

image

(二)进阶要求

代码如下:

#!/usr/bin/python
#创建网络拓扑
"""Custom topology example
Adding the 'topos' dict with a key/value pair to generate our newly defined
topology enables one to pass in '--topo=mytopo' from the command line.
"""
from re import S
from mininet.topo import Topo
from mininet.net import Mininet
from mininet.node import RemoteController,CPULimitedHost
from mininet.link import TCLink
from mininet.util import dumpNodeConnections
class MyTopo( Topo ):
    def __init__(self):
        #initilize topology
        Topo.__init__(self)
        first=2
        second=first*2
        third=second*2
        s1=[]
        s2=[]
        s3=[]
        
        for i in range(first):
            switch=self.addSwitch('s{}'.format(i+1))
            s1.append(switch)

        
        for i in range(second):
            switch=self.addSwitch('s{}'.format(i+1+first))
            s2.append(switch)
        
        
        for i in range(third):
            switch=self.addSwitch('s{}'.format(i+1+second+first))
            s3.append(switch)

        
        
        for i in range(first):
            for j in range(second):
                self.addLink(s1[i],s2[j])

       
        for i in range(second):
            if i<int(second/2):
                for j in range(int(third/2)):
                    self.addLink(s2[i],s3[j])
            else:
                for k in range(int(third/2),third):
                    self.addLink(s2[i],s3[k])

        
       
        node=2
        count=1
        for i in range(third):
            for j in range(node):   
                host = self.addHost('h{}'.format(count))
                self.addLink(s3[i],host)
                count+=1


topos = { 'mytopo': ( lambda: MyTopo() ) }

运行结果如下:

image

image

(三)个人总结

遇到的问题与解决方法

问题1:

解决方法:

chmod 777 filename 获取权限

问题2:

进阶作业python文件运行出现问题

image

发生原因:直接使用+号进行Python字符串与数字拼接时,不会将int转换成str所导致的

解决方法:

switch=self.addSwitch('s{}'.format(i+1+first))
#利用format方法将数字转换为对应位置字符串

实验收获与反思

标签:Mininet,mininet,self,实践,switch,SDN,拓扑,first
来源: https://www.cnblogs.com/codesheepXK/p/16687844.html