From: Etienne Dechamps Date: Sat, 13 Jul 2013 22:34:42 +0000 (+0100) Subject: Fix combination of Mode = router and DeviceType = tap on Linux. X-Git-Tag: release-1.0.22~4 X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=commitdiff_plain;h=48e513a5a972c18431c593f06ddcee9be4369c77;hp=48e513a5a972c18431c593f06ddcee9be4369c77 Fix combination of Mode = router and DeviceType = tap on Linux. I believe I have found a bug in tinc on Linux when it is used with Mode = router and DeviceType = tap. This combination is useful because it allows global broadcast packets to be used in router mode. However, when tinc receives a packet in this situation, it needs to make sure its destination MAC address matches the address of the TAP adapter, which is typically not the case since the sending node doesn't know the MAC address of the recipient. Unfortunately, this is not the case on Linux, which breaks connectivity. ---