SoftEther on macOS
Recently, I wanted to connect to my university network to do some hacking on a raspberry pi cluster. Therefore I wanted to set up SoftEther on my MacBook. But unfortunately,There was no proper documentation for that rather than connecting through L2TP.I had to spend few days to figure out a way to setup,so just sharing hoping someone would find this helpful.๐
This is my personal note.
-
Download softether code here
-
unzip
-
cdinto folder -
run
maketo build -
you may need to install
tuntaphere, I wanted this on macOS Monterey. -
sudo ./vpnclient start -
./vpncmd -
Enter 3
-
check -
niccreate vpn_se -
accountcreate cites -
Destination VPN Server Host Name and Port Number:<VPN IP address>:<SoftEther VPN Port> -
Destination Virtual Hub Name: <Hub Name> -
Connecting User Name: <Username of LMS, Moodle, UoM_Wireless, UoM Email> -
Used Virtual Network Adapter Name: <Created virtual interfaceโs name> -
AccountPassword <UoM Username> -
Specify standard or radius:radius -
accountlist -
sudo ifconfigand see virtual network adapter has no ip. -
sudo ipconfig set tap0 DHCPto get a ip -
sudo netstat -rnto see routing table -
sudo route add -net <destination-ip>/<mask> <gateway-ip> -
can get some help from linux guide here but some commands are different, but works fine.
Thanks.