Page 1 of 1

Remote SE Client Manager

Posted: Wed Oct 10, 2018 2:21 am
by cmd wh0ami
What port does remote client manager use? I can get it to work on my linux host if I set a default accept policy in iptables. I'd like to make something a little more secure and permanent.

Also can someone tell me what "bool disable relay server" is all about... On my linux client it was set to false on default which is confusing and possibly a little concerning... I'm thinking it has something to do with VPN Gate? Since all the other settings for VPN Gate are below.

Re: Remote SE Client Manager

Posted: Wed Oct 10, 2018 1:43 pm
by cmd wh0ami
I got iptables working... But it's not optimal...

Code: Select all

 # Accept on local network
iptables -A INPUT -s 192.168.0.1/24 -j ACCEPT
Is there a better way in case I connect to another network where the network is on a different subnet like 192.168.1.0/24 ect?

Re: Remote SE Client Manager

Posted: Wed Oct 10, 2018 4:46 pm
by cmd wh0ami
I think I have the iptables figured out...

Code: Select all

iptables -A INPUT $(ip route list exact 0.0.0.0/0 | grep wlan0 | xargs | awk '{print $3}')/24 -j ACCEPT

Re: Remote SE Client Manager

Posted: Thu Oct 18, 2018 7:44 am
by thisjun
DisableRelayServer doesn't relate to VPN Gate.
https://github.com/SoftEtherVPN/SoftEth ... elayServer

Management port generating code is here.
https://github.com/SoftEtherVPN/SoftEth ... nt.c#L5290