Fixed object naming problem from SDNTopo to SdnIpTopo

Following tutorial_ipv6.py, topology obecjt name is "SdnIpTopo", not "SDNTopo"

Change-Id: I8d27b35ff7fbecbb1dac37156f06cf0bc7897baa
diff --git a/tools/tutorials/sdnip/tutorial.py b/tools/tutorials/sdnip/tutorial.py
index 4f6d6bd..316690e 100755
--- a/tools/tutorials/sdnip/tutorial.py
+++ b/tools/tutorials/sdnip/tutorial.py
@@ -57,7 +57,7 @@
 
 class SdnIpTopo( Topo ):
     "SDN-IP tutorial topology"
-    
+
     def build( self ):
         s1 = self.addSwitch('s1', dpid='00000000000000a1')
         s2 = self.addSwitch('s2', dpid='00000000000000a2')
@@ -84,16 +84,16 @@
 
             router = self.addHost(name, cls=Router, quaggaConfFile=quaggaConf,
                                   zebraConfFile=zebraConf, intfDict=intfs)
-            
-            host = self.addHost('h%s' % i, cls=SdnIpHost, 
+
+            host = self.addHost('h%s' % i, cls=SdnIpHost,
                                 ip='192.168.%s.1/24' % i,
                                 route='192.168.%s.254' % i)
-            
+
             self.addLink(router, attachmentSwitches[i-1])
             self.addLink(router, host)
 
         # Set up the internal BGP speaker
-        bgpEth0 = { 'mac':'00:00:00:00:00:01', 
+        bgpEth0 = { 'mac':'00:00:00:00:00:01',
                     'ipAddrs' : ['10.0.1.101/24',
                                  '10.0.2.101/24',
                                  '10.0.3.101/24',
@@ -101,12 +101,12 @@
         bgpEth1 = { 'ipAddrs' : ['10.10.10.1/24'] }
         bgpIntfs = { 'bgp-eth0' : bgpEth0,
                      'bgp-eth1' : bgpEth1 }
-        
-        bgp = self.addHost( "bgp", cls=Router, 
-                             quaggaConfFile = '%s/quagga-sdn.conf' % CONFIG_DIR, 
-                             zebraConfFile = zebraConf, 
+
+        bgp = self.addHost( "bgp", cls=Router,
+                             quaggaConfFile = '%s/quagga-sdn.conf' % CONFIG_DIR,
+                             zebraConfFile = zebraConf,
                              intfDict=bgpIntfs )
-        
+
         self.addLink( bgp, s3 )
 
         # Connect BGP speaker to the root namespace so it can peer with ONOS
@@ -127,7 +127,7 @@
 
 if __name__ == '__main__':
     setLogLevel('debug')
-    topo = SDNTopo()
+    topo = SdnIpTopo()
 
     net = Mininet(topo=topo, controller=RemoteController)
 
diff --git a/tools/tutorials/sdnip/tutorial_ipv6.py b/tools/tutorials/sdnip/tutorial_ipv6.py
index 9fc4f3f..c56579b 100755
--- a/tools/tutorials/sdnip/tutorial_ipv6.py
+++ b/tools/tutorials/sdnip/tutorial_ipv6.py
@@ -69,7 +69,7 @@
 
 class SdnIpTopo( Topo ):
     "SDN-IP tutorial topology"
-    
+
     def build( self ):
         s1 = self.addSwitch('s1', cls=SdnSwitch, dpid='00000000000000a1')
         s2 = self.addSwitch('s2', cls=SdnSwitch, dpid='00000000000000a2')
@@ -96,16 +96,16 @@
 
             router = self.addHost(name, cls=Router, quaggaConfFile=quaggaConf,
                                   zebraConfFile=zebraConf, intfDict=intfs)
-            
+
             host = self.addHost('h%s' % i, cls=SdnIpHost,
                                 ip='2001:10%s::1/48' % i,
                                 route='2001:10%s::101' % i)
-            
+
             self.addLink(router, attachmentSwitches[i-1])
             self.addLink(router, host)
 
         # Set up the internal BGP speaker
-        bgpEth0 = { 'mac':'00:00:00:00:00:01', 
+        bgpEth0 = { 'mac':'00:00:00:00:00:01',
                     'ipAddrs' : ['2001:1::101/48',
                                  '2001:2::101/48',
                                  '2001:3::101/48',
@@ -113,12 +113,12 @@
         bgpEth1 = { 'ipAddrs' : ['10.10.10.1/24'] }
         bgpIntfs = { 'bgp-eth0' : bgpEth0,
                      'bgp-eth1' : bgpEth1 }
-        
-        bgp = self.addHost( "bgp", cls=Router, 
-                             quaggaConfFile = '%s/quagga-sdn.conf' % CONFIG_DIR, 
-                             zebraConfFile = zebraConf, 
+
+        bgp = self.addHost( "bgp", cls=Router,
+                             quaggaConfFile = '%s/quagga-sdn.conf' % CONFIG_DIR,
+                             zebraConfFile = zebraConf,
                              intfDict=bgpIntfs )
-        
+
         self.addLink( bgp, s3 )
 
         # Connect BGP speaker to the root namespace so it can peer with ONOS