Displaying 3 results from an estimated 3 matches for "conn2".
Did you mean:
conn
2017 Jun 29
1
imapc making too any connections
...server whenever you make a new mailbox.
So client does:
A001 login username password
A002 create subfolder
Previously, dovecot would just send the create command to the backend, but now does (including connection IDs):
[conn1] 9 CREATE "subfolder"
[conn1] 10 EXAMINE "INBOX"
[conn2] 12 LOGIN "username" "password"
[conn2] 11 SELECT "subfolder"
The new EXAMINE Command is a bit weird, but the secondary connection is a complete waste. I also haven't seen any other action on it yet, but it's kept around. If you make more mailboxes, every time...
2015 Jan 12
1
SIMPLE TINC template example
...your VPN:
sh ./templatewriter.sh LAN LOSI101 8540 255.255.255.0 0.0.0.0 10.99.0.11
10.98.0.11 ConnectTo=LOSI102 ConnectTo= ConnectTo=
**PUT MORE ENTRIES HERE FOR MORE COMPLEX VPN setups
######Templatewriter.sh
#!/bin/bash
SDIR=$1
NODENAME=$2
PORT=$3
MASK=$4
LISTIP=$5
OPNIP=$6
VPNIP=$7
CONN1=$8
CONN2=$9
CONN3=${10}
#READING IN THE RSA AND 25519 KEYS CAUSES ALL SORTS OF HEADACHES WITH SED
#JUST KEEP THEM IN THE TEMPLATES AS IS
#RSAKEY=$(cat "/tinc/rsa_key.pub")
#ED25519KEY=$(cat "/tinc/ed25519_key.pub")
echo "-------------TEMPLATE WRITER VARIABLES-----------"
echo...
2009 Jun 10
6
Shorewall + IPsec Tunnel
...SERVER
(DMZ)
I have two VPN connections with two different subnets to the other end. The
two of then are correctly established.
One of my doubts is how to configure the hosts, tunnels and zones stuff
linking to the VPN server on DMZ. I have this files from now:
shorewall 1
zones:
xxx
conn1 ipv4
conn2 ipv4
tunnels:
ipsec net 200.xxx.xxx.xxx
hosts:
conn1 eth0:192.168.102.0/24,200.xxx.xxx.xxx ipsec
conn2 eth0:10.201.136.0/21,200.xxx.xxx.xxx ipsec
policy:
conn1 $FW ACCEPT info
conn2 $FW ACCEPT info
$FW conn1 ACCEPT info
$FW conn2 ACCEPT info
dmz conn1 ACCEPT info
dmz conn2 ACCEPT...