Przyklad tunelu ipip od strony DAWCY :P Dajemy komus IP 195.205.84.81 Koniec tunelu u nas 195.205.84.82 IP zewnetrzne ludzika po drugiej stronie tunelu 81.15.141.90 Nasze IP 195.205.84.133 # (2.2.x) ipchains -I forward -s 195.205.84.81 -d 0.0.0.0/0 -j ACCEPT -b # (2.4.x) iptables -A FORWARD -s 195.205.84.81/32 -d 0/0 -j ACCEPT iptables -A FORWARD -s 0/0 -d 195.205.84.81/32 -j ACCEPT echo 1 >/proc/sys/net/ipv4/ip_forward ifconfig tunl2 down ip tunnel del tunl2 ip tunnel add mode ipip remote 81.15.141.90 local 195.205.84.133 ifconfig tunl2 195.205.84.82 pointopoint 195.205.84.81 netmask 255.255.255.255 up