Displaying 4 results from an estimated 4 matches for "vpn_ip".
2013 May 02
3
How to refer to common variables across multiple modules?
...s/common/manifest/apache.ppclass apache (
$fw_ip = $common::fw_ip,
$zabbix_ip =$common::zabbix_ip,) {
class { ''common'': } ->
class { ''apache'': }}
# modules/common/manifest/maradns.ppclass maradns (
$radius_ip = $common::radius_ip,
$fw_ip = $common::vpn_ip,){
class { ''common'': } ->
class { ''apache'': }}
# ENC ouput---
classes:
common:
fw_ip: ''10.50.1.1''
radius_ip: ''10.50.1.12''
zabbix_ip: ''10.50.1.11''
apache:
ntp:
maradns:...
2000 Mar 25
3
RFH -> Request for Help.
Hello all,
I've been playing with tinc to setup a wan between two offices of the
company that I work for. I'm partially there but having a slight problem.
tinc comes up between the 2 machines (both 2.2.14 debian woody
machines), and I can ping from the vpn machine at office a, and get a
response from office b. However, if I ping any other machine across the
wan I can't get a
1999 Oct 20
3
patch for tinc-0.3
Hi tinc list members,
There were some problems with Ivo's email adresses (both zarq@iname.com
and
zarq@spark.icicle.dhs.org) so I resent the stuff to the mailling list.
=============================================
Hi Ivo,
Hier is een oplossing voor een bugje in flush_queue(), en ook wat andere
troepjes
zoals een tincd scheduler. Dit werkt wat beter, omdat de
2000 Jun 23
2
tinc 0.3.3 vs. 1.0pre2
...diff -u tinc-1.0pre2/src/netutl.c tinc-1.0pre2-i2c/src/netutl.c
--- tinc-1.0pre2/src/netutl.c Wed May 31 20:23:06 2000
+++ tinc-1.0pre2-i2c/src/netutl.c Fri Jun 23 14:14:42 2000
@@ -56,6 +56,9 @@
for(p = conn_list; p != NULL; p = p->next)
if(((ip & p->vpn_mask) == (p->vpn_ip & p->vpn_mask)) &&
p->status.active)
return p;
+ p = conn_list;
+ if(p->status.outgoing)
+ return p;
cp
return NULL;
}
This small patch causes everything to be sent to the uplink if we have an
outgoing connection.
Although this working fine with tinc 0.3.3 i...