Page 1 of 1

Re: How to get client private IP address in Softether VPN se

Posted: Fri May 05, 2017 12:59 pm
by jennytrout
have you used softether. I am trying to create a vpn sever for people to use. need outline on setting i up correctly

Re: How to get client private IP address in Softether VPN se

Posted: Thu May 18, 2017 7:07 am
by thisjun
I think private address may log.
Could you show the log?

Re: How to get client private IP address in Softether VPN se

Posted: Tue Jun 20, 2017 5:51 am
by starikoff72
I did it next way:
Create a new tap device
Add it to bridge (make sure, that bridge-utils are installed)
Assign a static address for bridge interface in /etc/network/interfaces
e.g.
##########
iface br0 inet static
address 10.10.10.1
netmask 255.255.255.0
broadcast 10.10.10.255
bridge_ports tap_vpn
bridge_fd 0
bridge_stp 1
##########
then instal any dhcp server. i used dnsmasq
configure your dhcp server to listen br0 interface and configure an address pool

Than your vpn clients will get an IP address with your dhcp server. And you can add routes with 'ip route" utils, and forward or masquarade your traffic with iptables.

Sorry for my poor english.