Skip to content

Commit

Permalink
v4.36-9754-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
dnobori committed Jun 7, 2021
1 parent ec3d052 commit ddc99f0
Show file tree
Hide file tree
Showing 92 changed files with 5,265 additions and 146 deletions.
11 changes: 7 additions & 4 deletions WARNING.TXT
Original file line number Diff line number Diff line change
Expand Up @@ -398,10 +398,13 @@ identify that the source of the communication has initiated from the VPN Gate
Service's hosting computer's IP address. However, for safety, any packets
which destinations are within 192.168.0.0/255.255.0.0, 172.16.0.0/255.240.0.0
or 10.0.0.0/255.0.0.0 will be blocked by the "VPNGATE" Virtual Hub in order to
protect your local network. Therefore, if you run VPN Gate Service on your
corporate network or private network, it is safe because anonymous VPN Client
users will not be permitted to access such private networks. VPN Gate Service
also serves as relay for accessing to the VPN Gate Directory Server.
protect your local network. Any packets which destinations are within
169.254.0.0/16, 224.0.0.0/4 or 100.64.0.0/10 will also be blocked for just in
case. These packet filters except DNS, ICMP and ARP packets. Therefore, if you
run VPN Gate Service on your corporate network or private network, it is safe
because anonymous VPN Client users will not be permitted to access such
private networks. VPN Gate Service also serves as relay for accessing to the
VPN Gate Directory Server.
In order to make VPN Gate Service familiar with firewalls and NATs, it opens
an UDP port by using the NAT Traversal function which is described on the
section 1.2. It also opens and listens on some TCP ports, and some TCP and UDP
Expand Down
9 changes: 8 additions & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,13 @@ OpenBSD)
;;
esac

NOBITS=""
case "`uname -m`" in
aarch*|arm*|arm*)
NOBITS="_nobits"
;;
esac

CPU=""
case "`uname -m`" in
x86_64|amd64|aarch64|arm64|armv8*|mips64|ppc64|sparc64|alpha|ia64)
Expand Down Expand Up @@ -107,6 +114,6 @@ i?86|x86pc|i86pc|armv4*|armv5*|armv6*|armv7*)
;;
esac

cp src/makefiles/${OS}_${CPU}.mak Makefile
cp src/makefiles/${OS}_${CPU}${NOBITS}.mak Makefile

echo "The Makefile is generated. Run 'make' to build SoftEther VPN."
2 changes: 1 addition & 1 deletion src/BuildFiles/Library/OpenSSL_Build_ID.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
crosslib_win32_191020_02
crosslib_win32_210601_01
Loading

0 comments on commit ddc99f0

Please sign in to comment.