vlan or ipip, having trouble setting it up.

Hi there i want to setup ipip or vlan between two mikrotik r433 routers. Im currectly using routing.

Which one is the best? I want to make network private from ospf and certian ip ranges on the network.

One router 1 i have setup gateway as 172.16.0.200
The distination network on router 2 is 192.168.4.0/24

router1
eth1 = 172.16.0.0/24
wlan1 = 10.0.0.1/30

router2
eth1 = 192.168.4.1/24
wlan1 = 10.0.0.2/30

I dont know if i should use vlan or ipip. And i only get to the part were the one ipip interface can ping the other, or where the one vlan interface can ping the other. Do i still need to setup routing and to what ip address? I usually add this to router 2

/ip route add dst-address=0.0.0.0/0 gateway=10.0.0.1

If anyone can help me from there then i would appreciate it.
PS: should i use vlan or ipip

use vlan. it does not have encapsulation overhead

yes, you need routing if you add new subnets. what exactly is not working?

Hi thanx for replying. I managed to get the internet working. This what i did.

Router1

ip address add address=1.1.1.1/24 interface=vlan1



ip route add dst-address-192.168.4.0/24 gateway=1.1.1.2

router2

ip address add address=1.1.1.2/24 interface=vlan1



ip route add dst-address-0.0.0.0/0 gateway=1.1.1.1

When i add the following line then internet works but i cannot ping other ips on the same wan. I get TTL expired in transit. The code is.. “ip route rule add src-address=192.168.4.0/24 table=KKT”

But if i add routing table=KKT then internet does not work but i can ping other ip’s
The code is… “ip route rule add src-address=192.168.4.0/24 routing-mark=KKT
table=KKT”

The reason why i want to use vlan=====

I have two networks, private and business.
I want to put business on its own route and private on its own route. They should not be able to ping each other or be able to see each other.