From 3c6ae625101aee6ddf94e0fd85ce3a9c9067c3bf Mon Sep 17 00:00:00 2001 From: Stefano Brivio Date: Sun, 1 May 2022 06:36:34 +0200 Subject: conf, tcp, udp: Allow address specification for forwarded ports This feature is available in slirp4netns but was missing in passt and pasta. Given that we don't do dynamic memory allocation, we need to bind sockets while parsing port configuration. This means we need to process all other options first, as they might affect addressing and IP version support. It also implies a minor rework of how TCP and UDP implementations bind sockets. Signed-off-by: Stefano Brivio --- passt.1 | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'passt.1') diff --git a/passt.1 b/passt.1 index d9708b6..cdca3e9 100644 --- a/passt.1 +++ b/passt.1 @@ -298,7 +298,8 @@ For low (< 1024) ports, see \fBNOTES\fR. .TP .BR ports A comma-separated list of ports, optionally ranged with \fI-\fR, and, -optionally, with target ports after \fI:\fR, if they differ. Examples: +optionally, with target ports after \fI:\fR, if they differ. Specific addresses +can be bound as well, separated by \fI/\fR. Examples: .RS .TP -t 22 @@ -315,6 +316,9 @@ Forward local ports 22 to 80 to corresponding ports on the guest .TP -t 22-80-32:90 Forward local ports 22 to 80 to corresponding ports on the guest plus 10 +.TP +-t 192.0.2.1/22 +Forward local port 22, bound to 192.0.2.1, to port 22 on the guest .RE Default is \fBnone\fR. @@ -356,7 +360,8 @@ periodically derived (every second) from listening sockets reported by .TP .BR ports A comma-separated list of ports, optionally ranged with \fI-\fR, and, -optionally, with target ports after \fI:\fR, if they differ. Examples: +optionally, with target ports after \fI:\fR, if they differ. Specific addresses +can be bound as well, separated by \fI/\fR. Examples: .RS .TP -t 22 @@ -374,6 +379,9 @@ Forward local ports 22 to 80 to corresponding ports in the target namespace -t 22-80-32:90 Forward local ports 22 to 80 to corresponding ports plus 10 in the target namespace +.TP +-t 192.0.2.1/22 +Forward local port 22, bound to 192.0.2.1, to port 22 in the target namespace .RE IPv6 bound ports are also forwarded for IPv4. -- cgit v1.2.3