I have a problem in configuring the forwarding table in Linux.
We call IP tables for routing table in layer 3, MAC tables for forwarding table in layer 2.
Now I want to add an entry in forwarding table. I know the tool route command can be used to add routing entry in routing table like:
#[root]# route add -net 192.168.10.0 netmask 255.255.255.0 dev eth0
So, is there a tool like 'route' can let me add entry in forwarding table like:
#[root]# 'command name' add 01:02:03:04:05:06 dev eth1
All I required is how to bind the destination MAC address to a fixed network interface?!