-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
how to connect multiple sub tunnel in one port. #5
Comments
in the server side, you need to bind the host and port. On the client side you need the remote host and port (and they must all match), you should not have 'bind host/port' on the client side. You will probably need an up/down script too. |
yes , server side i have bind the host and port . and what to do on client side ? |
you should have remotehost/port (ONLY) on client side. |
yes , client side only give remotehost/port but server side not up all sub tunnels. |
is your problem with the tunnel or the device? |
yes problem in sub tunnels. |
use verbose to see what's happening. |
server side :
[l1r1]
bindhost = "192.168.aa.aa"
bindport = 32108
[l1r2]
bindhost = "192.168.bb.bb"
bindport = 32108
[l2r1]
bindhost = "192.168.aa.aa"
bindport = 32108
[l2r2]
bindhost = "192.168.bb.bb"
bindport = 32108
client side:
[l1r1]
bindhost = "192.168.xx.xx"
bindport = 5080
remotehost = "192.168.aa.aa"
remoteport = 32108
[l1r2]
bindhost = "192.168.xx.xx"
bindport = 5081
remotehost = "192.168.bb.bb"
remoteport = 32108
[l2r1]
bindhost = "192.168.yy.yy"
bindport = 5082
remotehost = "192.168.aa.aa"
remoteport = 32108
[l2r2]
bindhost = "192.168.yy.yy"
bindport = 5083
remotehost = "192.168.bb.bb"
remoteport = 32108
i have write this type in both side but sub tunnel is not created.
how to connect ?
The text was updated successfully, but these errors were encountered: