Hi,
I too faced the same issue. I solved it using the following way
1. Make sure there is no other interface active in your namespace that is connecting to the router.
Do the following
bash$ ip route
and see how many interfaces are currently active and willing to connect
to the same network. If you see more than one. Change your network such
a way that there is just one interface eth1 in your case.
2 Your interface got swapped. Just do the following
1. In server cfg change from
interfaces : ["dummy", "eth1"]
to
interfaces : [
"eth1"
, "dummy"]
2.
In client cfg side
interfaces : [
"eth1"
, "dummy"]
to
interfaces : ["dummy", "eth1"]
3. Add some garbage ip and gateway in the configuration file if your interface order is
interfaces : ["dummy", "eth1"]
eg:
interfaces : ["dummy", "eth1"]
- ip : 192.168.12.78
default_gw : 192.168.12.65
- ip : 192.168.12.78
default_gw : 192.168.12.65
Even though first interface is dummy it will still look for some values.
4. You can remove --astf-server-only and --astf-client-mask 0x1 from your command its ok if you dont use this and use dummy.
Regards,
Bidhov Bizar