I'm trying to figure out what that + sign means in a rule such as this:
-A FORWARD -i tun0+ -j ACCEPT
I'm pretty positive it relates to vpn. I noticed a /dev/net/tun interface and a tun0 in ifconfig, but for the sake of thoroughness, I want to know about that + sign. Anyone know anything?
tun0+, and nottun+? As far as I knowtun0+would only matchtun0anyway, whereastun+would matchtun0,tun1,tun2, … – Gilles Apr 12 '11 at 22:03dev tun0will force creation oftun0device. If you want to dynamically createtundevices and don't care which server uses which device, then usedev tunsotun0,tun1,tun2, ... be created subsequently andtun+in iptables rules will match all of them. – forcefsck Apr 13 '11 at 13:12