mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-13 03:03:15 +00:00
5b063c8581
establish an L2TP VPN connection to its external IP address from the Windows XP box on your LAN, l2tpd(8) will reply (UDP) from its local IP address, and not external IP address. Implement the new global option "address" to aid in overcoming this problem. Also helps in environments with complex NAT configurations. Bump PORTREVISION. Approved by: sobomax
29 lines
1013 B
C
29 lines
1013 B
C
|
|
$FreeBSD$
|
|
|
|
--- file.h.orig Wed Apr 10 23:09:33 2002
|
|
+++ file.h Wed Apr 16 16:07:19 2003
|
|
@@ -49,10 +49,10 @@
|
|
#define SENSE_ALLOW -1
|
|
#define SENSE_DENY 0
|
|
|
|
-#define DEFAULT_AUTH_FILE "/etc/l2tp/l2tp-secrets"
|
|
-#define ALT_DEFAULT_AUTH_FILE "/etc/l2tpd/l2tp-secrets"
|
|
-#define DEFAULT_CONFIG_FILE "/etc/l2tp/l2tpd.conf"
|
|
-#define ALT_DEFAULT_CONFIG_FILE "/etc/l2tpd/l2tpd.conf"
|
|
+#define DEFAULT_AUTH_FILE (PREFIX "/etc/l2tp/l2tp-secrets")
|
|
+#define ALT_DEFAULT_AUTH_FILE (PREFIX "/etc/l2tpd/l2tp-secrets")
|
|
+#define DEFAULT_CONFIG_FILE (PREFIX "/etc/l2tp/l2tpd.conf")
|
|
+#define ALT_DEFAULT_CONFIG_FILE (PREFIX "/etc/l2tpd/l2tpd.conf")
|
|
#define DEFAULT_PID_FILE "/var/run/l2tpd.pid"
|
|
|
|
/* Definition of an LNS */
|
|
@@ -130,6 +130,7 @@
|
|
|
|
struct global
|
|
{
|
|
+ struct in_addr addr; /* Address to listen on */
|
|
int port; /* Port number to listen to */
|
|
char authfile[STRLEN]; /* File containing authentication info */
|
|
char altauthfile[STRLEN]; /* File containing authentication info */
|