aboutsummaryrefslogtreecommitdiffstats
path: root/modules/xinetd/templates/port_forward
diff options
context:
space:
mode:
Diffstat (limited to 'modules/xinetd/templates/port_forward')
-rw-r--r--modules/xinetd/templates/port_forward16
1 files changed, 16 insertions, 0 deletions
diff --git a/modules/xinetd/templates/port_forward b/modules/xinetd/templates/port_forward
new file mode 100644
index 00000000..9ebdbb91
--- /dev/null
+++ b/modules/xinetd/templates/port_forward
@@ -0,0 +1,16 @@
+service <%= name %>
+{
+ disable = no
+ type = UNLISTED
+<%- if protocol == 'tcp' -%>
+ socket_type = stream
+<%- else -%>
+ socket_type = dgram
+<%- end -%>
+ protocol = <%= protocol %>
+ user = nobody
+ wait = no
+ redirect = <%= target_ip %> <%= target_port %>
+ port = <%= port %>
+}
+