Skip to content
Snippets Groups Projects
Commit 73b9ec07 authored by Zuul's avatar Zuul Committed by Gerrit Code Review
Browse files

Merge "Add support for specifying SNAT source and destination filters"

parents a9292dc7 3903ca92
No related branches found
No related tags found
No related merge requests found
......@@ -15,5 +15,10 @@
out_interface: "{{ item.interface }}"
jump: SNAT
to_source: "{{ item.source_ip }}"
destination: "{{ item.destination | default(omit) }}"
destination_port: "{{ item.destination_port | default(omit) }}"
destination_ports: "{{ item.destination_ports | default(omit) }}"
source: "{{ item.source | default(omit) }}"
source_port: "{{ item.source_port | default(omit) }}"
with_items: "{{ snat_rules }}"
become: True
---
features:
- |
Adds support for specifying SNAT source and destination filters. This is
useful if forwarded packets need to exit on a different interface depending
on the source or destination IP address or port.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment