How to make server inside rattan connectable to public network? #123
BobAnkh
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Take iperf3 as an example
We can run the following command to start an iperf3 server inside Rattan:
rattan link --downlink-delay=10ms -- ip a && iperf3 -sHere, we also use
ip ato display NICs (network interfaces) inside the Rattan network ns, in order to support port forwarding.Then we should check the IP address of NICs beginning with
vL1-L, which usually begins with10.0.1, e.g., 10.1.1.1/32.Then we should set port forwarding on the host, for example, forwarding port 35201 on the host to port 5201 inside Rattan.
Beta Was this translation helpful? Give feedback.
All reactions