From owner-freebsd-hackers@freebsd.org Sat May 21 14:16:53 2016 Return-Path: Delivered-To: freebsd-hackers@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2B2E0B45F3A for ; Sat, 21 May 2016 14:16:53 +0000 (UTC) (envelope-from wojtek@puchar.net) Received: from puchar.net (puchar.net [194.1.144.90]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "puchar.net", Issuer "puchar.net" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 99EEE1EAC; Sat, 21 May 2016 14:16:52 +0000 (UTC) (envelope-from wojtek@puchar.net) Received: Received: from 127.0.0.1 (localhost [127.0.0.1]) by puchar.net (8.15.2/8.14.9) with ESMTPS id u4LEGnaB091454 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Sat, 21 May 2016 16:16:50 +0200 (CEST) (envelope-from wojtek@puchar.net) Received: from laptop.wojtek.intra (localhost [127.0.0.1]) by laptop.wojtek.intra (8.14.9/8.14.9) with ESMTP id u4LEGmYb024578; Sat, 21 May 2016 16:16:48 +0200 (CEST) (envelope-from wojtek@puchar.net) Received: from localhost (wojtek@localhost) by laptop.wojtek.intra (8.14.9/8.14.9/Submit) with ESMTP id u4LEGh9D024575; Sat, 21 May 2016 16:16:43 +0200 (CEST) (envelope-from wojtek@puchar.net) X-Authentication-Warning: laptop.wojtek.intra: wojtek owned process doing -bs Date: Sat, 21 May 2016 16:16:43 +0200 (CEST) From: Wojciech Puchar X-X-Sender: wojtek@laptop.wojtek.intra To: Allan Jude cc: freebsd-hackers@freebsd.org Subject: Re: arp proxy question In-Reply-To: <57406CB2.6000804@freebsd.org> Message-ID: References: <57406CB2.6000804@freebsd.org> User-Agent: Alpine 2.20 (BSF 67 2015-01-07) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.4.3 (puchar.net [10.0.1.1]); Sat, 21 May 2016 16:16:50 +0200 (CEST) X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 May 2016 14:16:53 -0000 On Sat, 21 May 2016, Allan Jude wrote: > On 2016-05-21 09:19, Wojciech Puchar wrote: >> i added pub entry in ARP table >> >> ? (XX.YY.ZZ.92) at d4:ae:52:bb:82:4f on bge0 permanent published [ethernet] >> >> (normal server addresses are .90 and .91) >> >> and run vtun tunnel to other computer from this server tunneling this >> .92 address there. >> >> tunnel works fine >> >> tun2: flags=8051 metric 0 mtu 1500 >> options=80000 >> inet XX.YY.ZZ.90 --> XX.YY.ZZ.92 netmask 0xffffffff >> Opened by PID 81626 >> >> >> the result is as below: >> >> # ping XX.YY.ZZ.92 >> PING XX.YY.ZZ.92 (XX.YY.ZZ.92): 56 data bytes >> 36 bytes from XX.YY.ZZ.92: Destination Host Unreachable >> Vr HL TOS Len ID Flg off TTL Pro cks Src Dst >> 4 5 00 0054 ee9c 0 0000 40 01 e752 XX.YY.ZZ.90 XX.YY.ZZ.92 >> >> 64 bytes from XX.YY.ZZ.92: icmp_seq=1 ttl=64 time=10.788 ms >> 64 bytes from XX.YY.ZZ.92: icmp_seq=2 ttl=64 time=12.254 ms >> >> except this above everything is OK. >> >> what i do wrong? >> _______________________________________________ >> freebsd-hackers@freebsd.org mailing list >> https://lists.freebsd.org/mailman/listinfo/freebsd-hackers >> To unsubscribe, send any mail to "freebsd-hackers-unsubscribe@freebsd.org" > > Do you have the arp proxy sysctl enabled? > > sysctl net.link.ether.inet.proxyall=1 > changed and no effect.