multipath-tcp / mptcp

⚠️⚠️⚠️ Deprecated 🚫 Out-of-tree Linux Kernel implementation of MultiPath TCP. 👉 Use https://github.com/multipath-tcp/mptcp_net-next repo instead ⚠️⚠️⚠️
https://github.com/multipath-tcp/mptcp_net-next
Other
888 stars 336 forks source link

port forwarding using mptcp? #323

Open ajithmsm opened 5 years ago

ajithmsm commented 5 years ago

I amusing ubuntu

I installed mptcp on two systems mptcp installation I followed this site to install mptcp and its working perfectly I check this site also mptcp check both systems will work perfectly. I want to forward the port from system1 to system2 and I am using two network ethernet devices on both systems so there are two IP addresses on each system.

The problem is that I want to use both IPs to forward the port and receive the port my first system IP is

system1: 10.18.10.11, 10.18.10.12 system2: 10.18.10.21, 10.18.10.22 I am using to port forward command

system1: ssh -fN -L 2222:127.0.0.1:2222 pas@10.18.10.21 so the port was forwarded to system2. I check the port forwarding

system1:echo "s" | nc localhost 2222 system2: nc -l 2222 and this works.

But that no use of mptcp. I have two systems I have to forward the port one system to another system but the sender and receiver both using two ethernets if middle of the port forwarding i plug out any ethernet it don't be affecting the port forwarding that's what i want i try but i am not able to forward the port two ip. i plug out any other ethernet the connection will be loss

My main goal is to stream the video using mptcp. when I stream anything and I plug out any one of ethernet devices it should automatically switch to the other network/forwarding. I want to use mptcp to stream 4k video so I got automatically more bandwidth. does anyone help to finish this?