Hello,
I have a few questions about the IPIP tunnel... is it possible to establish a connection between more interfaces/virtual interfaces?
Example:
I have two PCs with multiple public IPs and virtual interfaces on both of them like
eth0: publicip_1
eht0:0 publicip_2
eth0:1 publicip_3
.
.
.
What I need is to use the publicips of the one server on another to send out traffic..
I was able to get it to work successfully between the eth0<->eth0 interfaces but when I use virtual interface to connect the IPIP tunnel like eth0:0<->eth0:0 then the servers cannot ping themself on the this tunnel ips...
Is there limitation in this that IPIP tunnel doesnt work when the remote public IP is on virtual interface?
Thank You in advance
bellow is configuration of the IPIP tunnel I use
Code:
DEVICE=tun0
TYPE=IPIP
ONBOOT=yes
MY_INNER_IPADDR=192.168.2.2
PEER_OUTER_IPADDR=publicip_server1
PEER_INNER_IPADDR=192.168.1.2
BOOTPROTO=none
DEVICE=tun0
TYPE=IPIP
ONBOOT=yes
MY_INNER_IPADDR=192.168.1.2
PEER_OUTER_IPADDR=publicip_server2
PEER_INNER_IPADDR=192.168.2.2
BOOTPROTO=none
if the publicip_server1 and publicip_server2 are assigned to eth0 interface on both servers then the tunnel is established and everything works... when I change this IP to IP of eth0:0 interface then I cannot ping the other PC in the tunnel.