【SoftetherVPN】商用版でしかできないと思われるRadius認証をできるようにする

src/Cedar/Server.cのreturn ret → return falseへ変更
10902 bool SiIsEnterpriseFunctionsRestrictedOnOpenSource(CEDAR *c) 10903 { 10904 char region[128]; 10905 bool ret = false; 10906 // Validate arguments 10907 if (c == NULL) 10908 { 10909 return false; 10910 } 10911 10912 10913 SiGetCurrentRegion(c, region, sizeof(region)); 10914 10915 if (StrCmpi(region, "JP") == 0 || StrCmpi(region, "CN") == 0) 10916 { 10917 ret = true; 10918 } 10919 10920 return false; 10921 }
Devツールインストール
yum -y install openssl-devel readline-devel ncurses-devel gcc "@Development Tools"
ビルド
./configure make
参考
https://ja.softether.org/5-download/src/2.unix
https://blog.cles.jp/item/9524