Displaying 1 result from an estimated 1 matches for "client_tun1".
Did you mean:
client_tun2
2005 Feb 02
2
Packet Level Load Balance inbound/outbound success with nth and route
...)
DSL #1 at client : 64.20.12.46 (eth1) (64.20.12.45 is gateway)
DSL #2 at client : 64.20.12.50 (eth2) (64.20.12.49 is gateway)
Public IP of server : 66.80.22.30
Public IP Range sent to client : 66.81.23.0/24
the tunnels need to be set up on both the client and the server
--server--
ip tunnel add client_tun1 mode gre remote 66.20.12.46 local 66.80.22.30 ttl 255
ip tunnel add client_tun2 mode gre remote 66.20.12.50 local 66.80.22.30 ttl 255
ip link set client_tun1 up
ip link set client_tun2 up
ip addr add 172.16.0.1/30 dev client_tun1
ip addr add 172.16.0.5/30 dev client_tun2
--client--
ip tunnel add cl...