<?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 to drop packet from a specify IP address? in Software Defined Networking</title>
    <link>https://community.hpe.com/t5/software-defined-networking/sdn-controller-to-drop-packet-from-a-specify-ip-address/m-p/6774318#M1776</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can create add a&amp;nbsp;flow&amp;nbsp;from the controller&amp;nbsp;to your DPID matching the source or destination IP.&lt;/P&gt;&lt;P&gt;You can achieve this using the controller RSdocs or via the cli (using Curl).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please check our REST API guide for more information:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="http://h20564.www2.hpe.com/hpsc/doc/public/display?docId=c04647295&amp;amp;lang=en-us&amp;amp;cc=us" target="_blank"&gt;http://h20564.www2.hpe.com/hpsc/doc/public/display?docId=c04647295&amp;amp;lang=en-us&amp;amp;cc=us&lt;/A&gt;&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;Antonio&lt;/P&gt;&lt;P&gt;SDN Team&lt;/P&gt;</description>
    <pubDate>Wed, 12 Aug 2015 14:56:23 GMT</pubDate>
    <dc:creator>piricchio72</dc:creator>
    <dc:date>2015-08-12T14:56:23Z</dc:date>
    <item>
      <title>SDN Controller to drop packet from a specify IP address?</title>
      <link>https://community.hpe.com/t5/software-defined-networking/sdn-controller-to-drop-packet-from-a-specify-ip-address/m-p/6774111#M1775</link>
      <description>&lt;P&gt;SDN Controller to drop packet from a specify IP address.&lt;/P&gt;&lt;P&gt;can this be done? How?&lt;/P&gt;</description>
      <pubDate>Wed, 12 Aug 2015 09:18:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/software-defined-networking/sdn-controller-to-drop-packet-from-a-specify-ip-address/m-p/6774111#M1775</guid>
      <dc:creator>Survivelater</dc:creator>
      <dc:date>2015-08-12T09:18:32Z</dc:date>
    </item>
    <item>
      <title>Re: SDN Controller to drop packet from a specify IP address?</title>
      <link>https://community.hpe.com/t5/software-defined-networking/sdn-controller-to-drop-packet-from-a-specify-ip-address/m-p/6774318#M1776</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can create add a&amp;nbsp;flow&amp;nbsp;from the controller&amp;nbsp;to your DPID matching the source or destination IP.&lt;/P&gt;&lt;P&gt;You can achieve this using the controller RSdocs or via the cli (using Curl).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please check our REST API guide for more information:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="http://h20564.www2.hpe.com/hpsc/doc/public/display?docId=c04647295&amp;amp;lang=en-us&amp;amp;cc=us" target="_blank"&gt;http://h20564.www2.hpe.com/hpsc/doc/public/display?docId=c04647295&amp;amp;lang=en-us&amp;amp;cc=us&lt;/A&gt;&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;Antonio&lt;/P&gt;&lt;P&gt;SDN Team&lt;/P&gt;</description>
      <pubDate>Wed, 12 Aug 2015 14:56:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/software-defined-networking/sdn-controller-to-drop-packet-from-a-specify-ip-address/m-p/6774318#M1776</guid>
      <dc:creator>piricchio72</dc:creator>
      <dc:date>2015-08-12T14:56:23Z</dc:date>
    </item>
    <item>
      <title>Re: SDN Controller to drop packet from a specify IP address?</title>
      <link>https://community.hpe.com/t5/software-defined-networking/sdn-controller-to-drop-packet-from-a-specify-ip-address/m-p/6774471#M1777</link>
      <description>&lt;P&gt;what do i need to put under instructions in order to drop it?&amp;nbsp;&lt;/P&gt;&lt;P&gt;example that 10.0.0.1 is the malicous address and i want to drop packet from this 10.0.0.1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;POST /sdn/v2.0/of/datapaths/10.0.0.1/flows&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;{ "flow":{ "priority":30000, "table_id":200, "idle_timeout":60,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;"match":[ { "ipv4_src":"10.0.0.1" }&lt;SPAN&gt;&amp;nbsp;],&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;"instructions":[ { "apply_actions":[ { "drop" } ] }&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;] } }&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;can i put it this way? did i do it correctly?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;edited- at RSdoc i tried but the response code is 0. even i tried doing /auth with&lt;/P&gt;&lt;P&gt;{ "login":{ "user":"sdn", "password":"skyline", "domain":"sdn" } } &amp;nbsp;&lt;/P&gt;&lt;P&gt;andi i still get response code is still 0.&lt;/P&gt;&lt;P&gt;why?&lt;/P&gt;</description>
      <pubDate>Thu, 13 Aug 2015 09:29:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/software-defined-networking/sdn-controller-to-drop-packet-from-a-specify-ip-address/m-p/6774471#M1777</guid>
      <dc:creator>Survivelater</dc:creator>
      <dc:date>2015-08-13T09:29:10Z</dc:date>
    </item>
  </channel>
</rss>

