carlosmscabral | f40ecd1 | 2013-02-01 18:15:58 -0200 | [diff] [blame] | 1 | """Custom topology example |
| 2 | |
| 3 | Two directly connected switches plus a host for each switch: |
| 4 | |
| 5 | host --- switch --- switch --- host |
| 6 | |
| 7 | Adding the 'topos' dict with a key/value pair to generate our newly defined |
| 8 | topology enables one to pass in '--topo=mytopo' from the command line. |
| 9 | """ |
| 10 | |
| 11 | from mininet.topo import Topo |
| 12 | |
| 13 | class MyTopo( Topo ): |
| 14 | "Simple topology example." |
| 15 | |
| 16 | def __init__( self ): |
| 17 | "Create custom topo." |
| 18 | |
| 19 | # Initialize topology |
| 20 | Topo.__init__( self ) |
| 21 | |
| 22 | # Add hosts and switches |
| 23 | leftHost = self.addHost( 'h1' ) |
| 24 | rightHost = self.addHost( 'h2' ) |
| 25 | leftSwitch = self.addSwitch( 's3' ) |
| 26 | rightSwitch = self.addSwitch( 's4' ) |
| 27 | |
| 28 | # Add links |
| 29 | self.addLink( leftHost, leftSwitch ) |
| 30 | self.addLink( leftSwitch, rightSwitch ) |
| 31 | self.addLink( rightSwitch, rightHost ) |
| 32 | |
| 33 | |
| 34 | topos = { 'mytopo': ( lambda: MyTopo() ) } |