<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: SDN Controller installation in Software Defined Networking</title>
    <link>https://community.hpe.com/t5/software-defined-networking/sdn-controller-installation/m-p/6800587#M871</link>
    <description>&lt;P&gt;I am having the same issues...fresh install and cannot get this to work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Need an OVA file for this...would make lives a TON easier!!!!!&lt;/P&gt;</description>
    <pubDate>Thu, 08 Oct 2015 14:32:55 GMT</pubDate>
    <dc:creator>sfiermonti</dc:creator>
    <dc:date>2015-10-08T14:32:55Z</dc:date>
    <item>
      <title>SDN Controller installation</title>
      <link>https://community.hpe.com/t5/software-defined-networking/sdn-controller-installation/m-p/6356977#M110</link>
      <description>&lt;P&gt;Can SDN Controller installed on 32 bit machine?&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jan 2014 09:22:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/software-defined-networking/sdn-controller-installation/m-p/6356977#M110</guid>
      <dc:creator>atul12345</dc:creator>
      <dc:date>2014-01-30T09:22:08Z</dc:date>
    </item>
    <item>
      <title>Re: SDN Controller installation</title>
      <link>https://community.hpe.com/t5/software-defined-networking/sdn-controller-installation/m-p/6357573#M118</link>
      <description>&lt;P&gt;No, it is only supported on Ubuntu 12.04 64 bit.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jan 2014 16:22:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/software-defined-networking/sdn-controller-installation/m-p/6357573#M118</guid>
      <dc:creator>EricAtHP</dc:creator>
      <dc:date>2014-01-30T16:22:08Z</dc:date>
    </item>
    <item>
      <title>Re: SDN Controller installation</title>
      <link>https://community.hpe.com/t5/software-defined-networking/sdn-controller-installation/m-p/6357621#M120</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;after installing Ubuntu Precise 64 bit you need to run the following commands:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;sudo su -
apt-get install python-software-properties ubuntu-cloud-keyring
add-apt-repository "deb &lt;A target="_blank" href="http://ubuntu-cloud.archive.canonical.com/ubuntu"&gt;http://ubuntu-cloud.archive.canonical.com/ubuntu&lt;/A&gt; precise-updates/folsom main"
apt-get update
apt-get install openjdk-7-jre-headless postgresql keystone keystone-doc python-keystone iptables unzip
dpkg -i hp-sdn-ctl_2.0.0.4253_amd64.deb&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;Once installed you can access the controller under:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;A target="_blank" href="https://10.101.253.45:8443/sdn/ui/"&gt;https://10.101.253.45:8443/sdn/ui/&lt;/A&gt; sdn / skyline&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;Now you can connect either physical provision switches:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;openflow
   controller-id 1 ip 192.168.10.21 controller-interface vlan 1
   instance aggregate
      listen-port
      controller-id 1
      version 1.3
      limit hardware-rate 10000000
      limit software-rate 10000
      enable
      exit
   enable
   exit&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;Or physical Comware switches:&lt;/P&gt;&lt;PRE&gt;# Comware
vlan 4092

interface GigabitEthernet1/0/47
 port access vlan 4092
interface GigabitEthernet1/0/48
 port access vlan 4092

openflow instance 1
 mac-learning forbidden
 classification vlan 4092
 controller 1 address ip 192.168.0.1
 active instance&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;Or mininet which is a collection of scripts that uses linux network name spaces to simulate multiple switches and hosts. Linux namespaces allow multiple interfaces including loopback interfaces to have each own routing and arp table. This makes it possible to simulate large topologies on a small machine. Quickstart for mininet is to install another Ubuntu precise and execute the following commands:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;apt-get install mininet
service openvswitch-switch start
cat &amp;gt; mininet_sample_topo.py &amp;lt;&amp;lt;EOF
from mininet.topo import Topo

class SampleTopo( Topo ):
    "Simple topology"

    def __init__( self ):
        "Create custom topo."

        # Initialize topology
        Topo.__init__( self )

        # Add hosts
        h1= self.addHost( 'h1' )
        h2= self.addHost( 'h2' )
        h3= self.addHost( 'h3' )
        h4= self.addHost( 'h4' )
        h5= self.addHost( 'h5' )
        h6= self.addHost( 'h6' )
        h7= self.addHost( 'h7' )
        h8= self.addHost( 'h8' )
        h9= self.addHost( 'h9' )

        # Switches
        s1= self.addSwitch( 's1' )
        s2= self.addSwitch( 's2' )
        s3= self.addSwitch( 's3' )
        s4= self.addSwitch( 's4' )

        # Add links
        self.addLink( s1, h1 )
        self.addLink( s1, h2 )
        self.addLink( s3, s4 )

        self.addLink( h3, s2 )
        self.addLink( h4, s2 )

        self.addLink( h5, s3 )
        self.addLink( h6, s3 )

        self.addLink( s1, s2 )
        self.addLink( s1, s3 )
        self.addLink( s2, s4 )

        self.addLink( s4, h7 )
        self.addLink( s4, h8 )
        self.addLink( s4, h9 )

topos = { 'sampletopo': ( lambda: SampleTopo() ) }
EOF

mn --custom mininet_sample_topo.py --topo sampletopo --mac --switch ovsk --arp --controller remote,ip=10.103.251.244
pingall&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;I have made two VMware images ready for the controller and mininet. If you're interested you can drop me an e-mail to thomas at glanzmann dot de.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; Thomas&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jan 2014 16:50:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/software-defined-networking/sdn-controller-installation/m-p/6357621#M120</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-01-30T16:50:19Z</dc:date>
    </item>
    <item>
      <title>Re: SDN Controller installation</title>
      <link>https://community.hpe.com/t5/software-defined-networking/sdn-controller-installation/m-p/6365381#M134</link>
      <description>&lt;P&gt;Hello Atul,&lt;BR /&gt;&lt;BR /&gt;I hope the response from Eric answers your question.&lt;/P&gt;&lt;P&gt;Please feel free to reply incase you have more questions around the same topic or open a new thread if new&amp;nbsp; topic.&lt;BR /&gt;If you feel we have answered your question, please do let us know by marking this response as an 'accepted solution’.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;HP SDN Team&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Feb 2014 11:37:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/software-defined-networking/sdn-controller-installation/m-p/6365381#M134</guid>
      <dc:creator>sdnindia</dc:creator>
      <dc:date>2014-02-05T11:37:07Z</dc:date>
    </item>
    <item>
      <title>Re: SDN Controller installation</title>
      <link>https://community.hpe.com/t5/software-defined-networking/sdn-controller-installation/m-p/6366675#M139</link>
      <description>&lt;P&gt;Thanks a ton! Setup is fine.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However I am not able to open the SDN Controller UI. https://Controller IP Address :8443/sdn/ui/&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anything missing?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Atul&lt;/P&gt;</description>
      <pubDate>Thu, 06 Feb 2014 09:34:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/software-defined-networking/sdn-controller-installation/m-p/6366675#M139</guid>
      <dc:creator>atul12345</dc:creator>
      <dc:date>2014-02-06T09:34:08Z</dc:date>
    </item>
    <item>
      <title>Re: SDN Controller installation</title>
      <link>https://community.hpe.com/t5/software-defined-networking/sdn-controller-installation/m-p/6367815#M144</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;If possible, please share the logs(/var/log/sdn/virgo/logs/log.log) and screen shot of the SDN UI page.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Are you able to open RSdoc page(https:// Controller IP Address:8443/api/) ?&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;HP SDN Team&lt;/P&gt;</description>
      <pubDate>Fri, 07 Feb 2014 04:38:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/software-defined-networking/sdn-controller-installation/m-p/6367815#M144</guid>
      <dc:creator>sdnindia</dc:creator>
      <dc:date>2014-02-07T04:38:45Z</dc:date>
    </item>
    <item>
      <title>Re: SDN Controller installation</title>
      <link>https://community.hpe.com/t5/software-defined-networking/sdn-controller-installation/m-p/6368221#M146</link>
      <description>&lt;P&gt;hi Atul&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you give us the output of the following commands&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;uname -a&lt;/P&gt;&lt;P&gt;sudo service sdnc status&lt;/P&gt;&lt;P&gt;sudo service sdna status&lt;/P&gt;&lt;P&gt;sudo service keystone status&lt;/P&gt;&lt;P&gt;sudo dpkg -l | grep -i sdn&lt;/P&gt;&lt;P&gt;sudo dpkg -l | grep -i keystone&lt;/P&gt;&lt;P&gt;netstat -na | grep 8443&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sample output:&lt;/P&gt;&lt;PRE&gt;gpr@sdncontroller1:~$ uname -a
Linux sdncontroller1 3.8.0-29-generic #42~precise1-Ubuntu SMP Wed Aug 14 16:19:23 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux
gpr@sdncontroller1:~$ 
gpr@sdncontroller1:~$ sudo service sdnc status
sdnc start/running, process 812
gpr@sdncontroller1:~$ 
gpr@sdncontroller1:~$ sudo service sdna status

sdna start/running, process 815
gpr@sdncontroller1:~$ 
gpr@sdncontroller1:~$ sudo service keystone status

keystone start/running, process 728
gpr@sdncontroller1:~$ 
gpr@sdncontroller1:~$ sudo dpkg -l | grep -i sdn

sudo dpkg -l | grep -i keystone
ii  hp-sdn-ctl                       2.1.0.4863                   HP VAN SDN Controller

netstat -na | grep 8443
gpr@sdncontroller1:~$ 
gpr@sdncontroller1:~$ sudo dpkg -l | grep -i keystone
ii  keystone                         2012.2.4-0ubuntu3.1~cloud0   OpenStack identity service - Daemons
ii  keystone-doc                     2012.2.4-0ubuntu3.1~cloud0   OpenStack identity service - Documentation
ii  python-keystone                  2012.2.4-0ubuntu3.1~cloud0   OpenStack identity service - Python library
ii  python-keystoneclient            1:0.1.3-0ubuntu1.1~cloud0    Client libary for Openstack Keystone API
gpr@sdncontroller1:~$ 
gpr@sdncontroller1:~$ netstat -na | grep 8443
tcp6       0      0 :::8443                 :::*                    LISTEN     
tcp6       0      0 10.128.10.4:8443        10.99.0.4:65086         TIME_WAIT  
tcp6       0      0 10.128.10.4:8443        10.128.1.1:54156        ESTABLISHED
tcp6       0      0 10.128.10.4:8443        10.99.0.4:65493         ESTABLISHED
gpr@sdncontroller1:~$ &lt;/PRE&gt;&lt;P&gt;&amp;nbsp;Kind Regards&lt;/P&gt;&lt;P&gt;Gerhard&lt;/P&gt;</description>
      <pubDate>Fri, 07 Feb 2014 12:48:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/software-defined-networking/sdn-controller-installation/m-p/6368221#M146</guid>
      <dc:creator>Gerhard Roets</dc:creator>
      <dc:date>2014-02-07T12:48:14Z</dc:date>
    </item>
    <item>
      <title>Re: SDN Controller installation</title>
      <link>https://community.hpe.com/t5/software-defined-networking/sdn-controller-installation/m-p/6369961#M148</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I did netstat -atupvn and found missing service on port 8443. Did a reinstallation and it worked.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Atul&lt;/P&gt;</description>
      <pubDate>Mon, 10 Feb 2014 10:08:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/software-defined-networking/sdn-controller-installation/m-p/6369961#M148</guid>
      <dc:creator>atul12345</dc:creator>
      <dc:date>2014-02-10T10:08:44Z</dc:date>
    </item>
    <item>
      <title>Re: SDN Controller installation</title>
      <link>https://community.hpe.com/t5/software-defined-networking/sdn-controller-installation/m-p/6402071#M175</link>
      <description>&lt;P&gt;Hello Atul,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for letting us know. Please do feel free to reply in case you need any assistance with respect to this topic or open up a new thread if it’s a new topic.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;HP SDN Team&lt;/P&gt;</description>
      <pubDate>Thu, 06 Mar 2014 10:19:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/software-defined-networking/sdn-controller-installation/m-p/6402071#M175</guid>
      <dc:creator>sdnindia</dc:creator>
      <dc:date>2014-03-06T10:19:01Z</dc:date>
    </item>
    <item>
      <title>Re: SDN Controller installation</title>
      <link>https://community.hpe.com/t5/software-defined-networking/sdn-controller-installation/m-p/6733724#M758</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;we are trying to get 2.5 running on another box and are having similar issues to the people above. VAN doesn't want to bind to ipv4 8443. The VM has 9 GB ram and 4 vCPUs. See requested output below. This is a fresh install of Ubuntu 12.04&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;uname -a&lt;BR /&gt;Linux hyperglance 3.13.0-32-generic #57~precise1-Ubuntu SMP Tue Jul 15 03:51:20 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;$ sudo service sdnc status&lt;BR /&gt;sdnc start/running, process 1093&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;$ sudo service sdna status&lt;BR /&gt;sdna start/running, process 1096&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;$ sudo service keystone status&lt;BR /&gt;keystone start/running, process 1100&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;$ sudo dpkg -l | grep -i sdn&lt;BR /&gt;ii hp-sdn-ctl 2.5.11.1149 HP VAN SDN Controller&lt;BR /&gt;hyperglance@hyperglance:~$ sudo dpkg -l | grep -i keystone&lt;BR /&gt;ii keystone 1:2014.1.4-0ubuntu2~cloud0 OpenStack identity service - Daemons&lt;BR /&gt;ii python-keystone 1:2014.1.4-0ubuntu2~cloud0 OpenStack identity service - Python library&lt;BR /&gt;ii python-keystoneclient 1:0.7.1-ubuntu1~cloud0 Client library for OpenStack Identity API&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;$ netstat -na | grep 8443&lt;BR /&gt;tcp6 0 0 :::8443 :::* LISTEN&lt;BR /&gt;tcp6 38 0 127.0.0.1:54266 127.0.0.1:8443 CLOSE_WAIT&lt;/P&gt;</description>
      <pubDate>Fri, 17 Apr 2015 08:43:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/software-defined-networking/sdn-controller-installation/m-p/6733724#M758</guid>
      <dc:creator>stacehip</dc:creator>
      <dc:date>2015-04-17T08:43:45Z</dc:date>
    </item>
    <item>
      <title>Re: SDN Controller installation</title>
      <link>https://community.hpe.com/t5/software-defined-networking/sdn-controller-installation/m-p/6800587#M871</link>
      <description>&lt;P&gt;I am having the same issues...fresh install and cannot get this to work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Need an OVA file for this...would make lives a TON easier!!!!!&lt;/P&gt;</description>
      <pubDate>Thu, 08 Oct 2015 14:32:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/software-defined-networking/sdn-controller-installation/m-p/6800587#M871</guid>
      <dc:creator>sfiermonti</dc:creator>
      <dc:date>2015-10-08T14:32:55Z</dc:date>
    </item>
  </channel>
</rss>

