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.
Remote SE Client Manager
-
- Posts: 125
- Joined: Sun Jul 16, 2017 6:58 pm
Re: Remote SE Client Manager
I got iptables working... But it's not optimal...
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?
Code: Select all
# Accept on local network
iptables -A INPUT -s 192.168.0.1/24 -j ACCEPT
-
- Posts: 125
- Joined: Sun Jul 16, 2017 6:58 pm
Re: Remote SE Client Manager
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
-
- Posts: 2458
- Joined: Mon Feb 24, 2014 11:03 am
Re: Remote SE Client Manager
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
https://github.com/SoftEtherVPN/SoftEth ... elayServer
Management port generating code is here.
https://github.com/SoftEtherVPN/SoftEth ... nt.c#L5290