혹시 말도 안되는 소리라도 이해 부탁 드립니다.
아뢰 처럼 터널링이 된 상태입니다.
--A linux
인터넷 --- eth0 172.16.100.1
ip tunnel add tunB mode gre remote 192.168.100.1 local 172.16.100.1 ttl 255
ip link set tunB up
ip addr add 10.0.1.1 dev tunB
ip route add 10.0.2.0/24 dev tunB
--B linux
인터넷 --- eth0 192.168.100.1
ip tunnel add tunA mode gre remote 172.16.100.1 local 192.168.100.1 ttl 255
ip link set tunA up
ip addr add 10.0.2.1 dev tunA
ip route add 10.0.1.0/24 dev tunA