diff mbox

[ovs-dev] ovn-tutorial: fix a typo

Message ID 1452993795-51910-1-git-send-email-u9012063@gmail.com
State Accepted
Headers show

Commit Message

William Tu Jan. 17, 2016, 1:23 a.m. UTC
switch_in_pre_acl -> switch_out_pre_acl

Signed-off-by: William Tu <u9012063@gmail.com>
---
 tutorial/OVN-Tutorial.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Russell Bryant Jan. 18, 2016, 1:50 p.m. UTC | #1
On 01/16/2016 08:23 PM, William Tu wrote:
> switch_in_pre_acl -> switch_out_pre_acl
> 
> Signed-off-by: William Tu <u9012063@gmail.com>
> ---
>  tutorial/OVN-Tutorial.md | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/tutorial/OVN-Tutorial.md b/tutorial/OVN-Tutorial.md
> index 2e6a08d..1188faa 100644
> --- a/tutorial/OVN-Tutorial.md
> +++ b/tutorial/OVN-Tutorial.md
> @@ -675,7 +675,7 @@ tracker.  This populates the connection state fields so that we can apply policy
>  as appropriate.
>  
>      table=0(switch_out_pre_acl), priority=  100, match=(ip), action=(ct_next;)
> -    table=1(switch_in_pre_acl), priority=    0, match=(1), action=(next;)
> +    table=1(switch_out_pre_acl), priority=    0, match=(1), action=(next;)
>  
>  In `switch_out_acl`, we allow packets associated with existing connections.  We
>  drop packets that are deemed to be invalid (such as non-SYN TCP packet not
> 

Thanks for the patch!  I pushed this to master and branch-2.5.
diff mbox

Patch

diff --git a/tutorial/OVN-Tutorial.md b/tutorial/OVN-Tutorial.md
index 2e6a08d..1188faa 100644
--- a/tutorial/OVN-Tutorial.md
+++ b/tutorial/OVN-Tutorial.md
@@ -675,7 +675,7 @@  tracker.  This populates the connection state fields so that we can apply policy
 as appropriate.
 
     table=0(switch_out_pre_acl), priority=  100, match=(ip), action=(ct_next;)
-    table=1(switch_in_pre_acl), priority=    0, match=(1), action=(next;)
+    table=1(switch_out_pre_acl), priority=    0, match=(1), action=(next;)
 
 In `switch_out_acl`, we allow packets associated with existing connections.  We
 drop packets that are deemed to be invalid (such as non-SYN TCP packet not