X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=doc%2Fsample-config%2Ftinc-up;h=739afd818c444051319e2df4bcd8fd35bdb50ba4;hp=f515e51dacc79bdc113ec84730c3027c622d721a;hb=1dcbdf48eb4a642e4d70a9e67aaca78deacf352d;hpb=8d307c2fbf2c20eb53909f74c81e03db838fb55e diff --git a/doc/sample-config/tinc-up b/doc/sample-config/tinc-up index f515e51d..739afd81 100644 --- a/doc/sample-config/tinc-up +++ b/doc/sample-config/tinc-up @@ -2,13 +2,17 @@ # This file sets up the tap device. # It gives you the freedom to do anything you want with it. # Use the correct name for the tap device: -# For ethertap this is tap0, tap1, tap2 etcetera, -# but for the universal tun/tap device use $NETNAME. +# For the Linux tun/tap device $INTERFACE is set to the right name, +# but for ethertap and FreeBSD this is tap0, tap1, tap2 etcetera, +# for Solaris and OpenBSD it is tun0, tun1, etcetera. -# Set hardware ethernet address (required!) -ifconfig tap1 hw ether fe:fd:0:0:0:0 +# Set hardware ethernet address, needed on Linux when in router mode +ifconfig $INTERFACE hw ether fe:fd:0:0:0:0 # Give it the right ip and netmask. Remember, the subnet of the # tap device must be larger than that of the individual Subnets # as defined in the host configuration file! -ifconfig tap1 192.168.1.1 netmask 255.255.0.0 -arp +ifconfig $INTERFACE 192.168.1.1 netmask 255.255.0.0 + +# Disable ARP, needed on Linux when in router mode +ifconfig $INTERFACE -arp