Hello,
i have two proxmox server in two datacenter and i would create a cluster for simply backup and administration...
I succesfully create a cluster with gre tunnel with this procedure...
for example
server1: 11.11.11.11 public ip
server2: 22.22.22.22 public ip
on server1
on server2
i can ping 10.10.10.1 and .2 correctly, so i create a cluster correctly.
But GRE tunnel are nor envrypted, and i would create a GRE + IPSEC tunnel but i don't understand how...
can someone help me?
Thank you in advance
i have two proxmox server in two datacenter and i would create a cluster for simply backup and administration...
I succesfully create a cluster with gre tunnel with this procedure...
for example
server1: 11.11.11.11 public ip
server2: 22.22.22.22 public ip
on server1
Code:
# modprobe ip_gre
# ip tunnel add gre1 mode gre remote 22.22.22.22 local 11.11.11.11 ttl 255
# ip link set gre1 up
# ip addr add 10.10.10.1/24 dev gre1
on server2
Code:
# modprobe ip_gre
# ip tunnel add gre1 mode gre remote 11.11.11.11 local 22.22.22.22 ttl 255
# ip link set gre1 up
# ip addr add 10.10.10.2/24 dev gre1
i can ping 10.10.10.1 and .2 correctly, so i create a cluster correctly.
But GRE tunnel are nor envrypted, and i would create a GRE + IPSEC tunnel but i don't understand how...
can someone help me?
Thank you in advance