<?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: OpenFlow Group Types on HP 5900 Switches in Software Defined Networking</title>
    <link>https://community.hpe.com/t5/software-defined-networking/openflow-group-types-on-hp-5900-switches/m-p/6701826#M1693</link>
    <description>&lt;P&gt;Lewis,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is to advise you that your forum case has been escalated to the HP SDN engineering department. They have recreated the issue with the HP SDN Controller. There is no ETA on when they will have a solution. I will post a solution once one is provided.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Carlos&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SDN CoE Team&lt;/P&gt;</description>
    <pubDate>Thu, 29 Jan 2015 20:26:38 GMT</pubDate>
    <dc:creator>Carlos</dc:creator>
    <dc:date>2015-01-29T20:26:38Z</dc:date>
    <item>
      <title>OpenFlow Group Types on HP 5900 Switches</title>
      <link>https://community.hpe.com/t5/software-defined-networking/openflow-group-types-on-hp-5900-switches/m-p/6699083#M1689</link>
      <description>&lt;P&gt;Hey everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a few HP 5900 switches that are connected to a Ryu controller application I'm developing for a software-defined network. The switches and the app are configured to use OpenFlow 1.3. I'm attempting to add buckets and groups to the switches via the OFPT_GROUP_MOD message. According the OpenFlow 1.3 spec, there are four group types:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;ALL - Executes all buckets in the group. Support is required.&lt;/LI&gt;&lt;LI&gt;SELECT - Executes one bucket in the group. Support is optional.&lt;/LI&gt;&lt;LI&gt;INDIRECT - Executes the only bucket in the group. Support is required.&lt;/LI&gt;&lt;LI&gt;FAST FAILOVER - Executes the first live bucket in the group. Support is optional.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;My test showed that the only group type that can be successfully installed is the "ALL" type. Here's the log from my app:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;add_group(dpid=0x1): Installing new group:&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; groupId = 0&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; buckets = [OFPBucket(actions=[OFPActionOutput(len=16,max_len=65535,port=45,type=0)],len=32,watch_group=OFPG_ANY,watch_port=OFPP_ANY,weight=0)]&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; type = OFPGT_ALL&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;add_group(dpid=0x1): Installing new group:&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; groupId = 1&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; buckets = [OFPBucket(actions=[OFPActionOutput(len=16,max_len=65535,port=46,type=0)],len=32,watch_group=OFPG_ANY,watch_port=OFPP_ANY,weight=0)]&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; type = OFPGT_SELECT&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;error_msg_handler(dpid=0x1):&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; type=0x0006 (Problem modifying group entry)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; code=0x000a (Unsupported or unknown group type)&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;add_group(dpid=0x1): Installing new group:&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; groupId = 2&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; buckets = [OFPBucket(actions=[OFPActionOutput(len=16,max_len=65535,port=47,type=0)],len=32,watch_group=OFPG_ANY,watch_port=OFPP_ANY,weight=100)]&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; type = OFPGT_INDIRECT&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;error_msg_handler(dpid=0x1):&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; type=0x0006 (Problem modifying group entry)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; code=0x000a (Unsupported or unknown group type)&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;add_group(dpid=0x1): Installing new group:&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; groupId = 3&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; buckets = [OFPBucket(actions=[OFPActionOutput(len=16,max_len=65535,port=48,type=0)],len=32,watch_group=OFPG_ANY,watch_port=OFPP_ANY,weight=0)]&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; type = OFPGT_FF&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;error_msg_handler(dpid=0x1):&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; type=0x0006 (Problem modifying group entry)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; code=0x000a (Unsupported or unknown group type)&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a couple of questions that result from this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Why does the HP 5900 accept my "ALL"-typed group but not my "INDIRECT"-typed group? "INDIRECT" should be supported.&lt;/LI&gt;&lt;LI&gt;Are the "SELECT" and "FAST FAILOVER" group types supported by the HP 5900? If so, could they be subject to the same issue that I'm seeing with my "INDIRECT" group?&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Jan 2015 20:06:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/software-defined-networking/openflow-group-types-on-hp-5900-switches/m-p/6699083#M1689</guid>
      <dc:creator>nplewis</dc:creator>
      <dc:date>2015-01-23T20:06:13Z</dc:date>
    </item>
    <item>
      <title>Re: OpenFlow Group Types on HP 5900 Switches</title>
      <link>https://community.hpe.com/t5/software-defined-networking/openflow-group-types-on-hp-5900-switches/m-p/6699728#M1690</link>
      <description>&lt;P&gt;Lewis,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;At the moment I am researching your question with my colleagues. Do you have the switch software version you are running on the 5900?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Carlos&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jan 2015 15:02:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/software-defined-networking/openflow-group-types-on-hp-5900-switches/m-p/6699728#M1690</guid>
      <dc:creator>Carlos</dc:creator>
      <dc:date>2015-01-26T15:02:42Z</dc:date>
    </item>
    <item>
      <title>Re: OpenFlow Group Types on HP 5900 Switches</title>
      <link>https://community.hpe.com/t5/software-defined-networking/openflow-group-types-on-hp-5900-switches/m-p/6699732#M1691</link>
      <description>&lt;P&gt;The switch firmware version is "7.1.045, Release 2311P01"&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jan 2015 15:06:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/software-defined-networking/openflow-group-types-on-hp-5900-switches/m-p/6699732#M1691</guid>
      <dc:creator>nplewis</dc:creator>
      <dc:date>2015-01-26T15:06:33Z</dc:date>
    </item>
    <item>
      <title>Re: OpenFlow Group Types on HP 5900 Switches</title>
      <link>https://community.hpe.com/t5/software-defined-networking/openflow-group-types-on-hp-5900-switches/m-p/6701028#M1692</link>
      <description>&lt;P&gt;Lewis,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just to advise you, the issue has been recreated using the HP SDN Controller 2.3.5. At the moment I am waiting for an update&amp;nbsp;from our engineering department.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Carlos&lt;/P&gt;&lt;P&gt;HP SDN CoE team&lt;/P&gt;</description>
      <pubDate>Wed, 28 Jan 2015 14:58:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/software-defined-networking/openflow-group-types-on-hp-5900-switches/m-p/6701028#M1692</guid>
      <dc:creator>Carlos</dc:creator>
      <dc:date>2015-01-28T14:58:42Z</dc:date>
    </item>
    <item>
      <title>Re: OpenFlow Group Types on HP 5900 Switches</title>
      <link>https://community.hpe.com/t5/software-defined-networking/openflow-group-types-on-hp-5900-switches/m-p/6701826#M1693</link>
      <description>&lt;P&gt;Lewis,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is to advise you that your forum case has been escalated to the HP SDN engineering department. They have recreated the issue with the HP SDN Controller. There is no ETA on when they will have a solution. I will post a solution once one is provided.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Carlos&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SDN CoE Team&lt;/P&gt;</description>
      <pubDate>Thu, 29 Jan 2015 20:26:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/software-defined-networking/openflow-group-types-on-hp-5900-switches/m-p/6701826#M1693</guid>
      <dc:creator>Carlos</dc:creator>
      <dc:date>2015-01-29T20:26:38Z</dc:date>
    </item>
  </channel>
</rss>

