]> git.proxmox.com Git - mirror_ovs.git/commitdiff
ovn-northd.8.xml: Remove destination unreachable from "IP Routing".
authorJustin Pettit <jpettit@ovn.org>
Fri, 22 Jul 2016 18:33:44 +0000 (11:33 -0700)
committerJustin Pettit <jpettit@ovn.org>
Fri, 29 Jul 2016 08:45:05 +0000 (01:45 -0700)
We don't support generating these flows yet.

Signed-off-by: Justin Pettit <jpettit@ovn.org>
Acked-by: Ben Pfaff <blp@ovn.org>
ovn/northd/ovn-northd.8.xml

index b95caef5d4e6e63655d92f3c726edf2fc327f2df..4de48d800f5899313b3a3059f9d8106be22b0422 100644 (file)
@@ -1022,36 +1022,6 @@ next;
           is the next hop IP address.  Else it is <code>ip4.dst</code>.
         </p>
       </li>
-
-      <li>
-        <p>
-          Destination unreachable.  For each router port <var>P</var>, which
-          owns IP address <var>A</var>, a priority-0 logical flow with match
-          <code>in_port == <var>P</var> &amp;&amp; !ip.later_frag &amp;&amp;
-          !icmp</code> has the following actions:
-        </p>
-
-        <pre>
-icmp4 {
-    icmp4.type = 3; /* Destination unreachable. */
-    icmp4.code = 0; /* Network unreachable. */
-    ip4.dst = ip4.src;
-    ip4.src = <var>A</var>;
-    ip.ttl = 255;
-    next(2);
-};
-        </pre>
-
-        <p>
-          (The <code>!icmp</code> check prevents recursion if the destination
-          unreachable message itself cannot be routed.)
-        </p>
-
-        <p>
-          These flows are omitted if the logical router has a default route,
-          that is, a route with netmask 0.0.0.0.
-        </p>
-      </li>
     </ul>
 
     <h3>Ingress Table 5: ARP Resolution</h3>