Displaying 20 results from an estimated 200 matches similar to: "<net/if_tap.h> on FreeBSD"
2014 Jan 23
1
Call for testing: OpenSSH-6.5
Hi
When NetBSD added strnvis they swapped around the argument order.
On OpenBSD:
int strnvis(char *, const char *, size_t, int)
On NetBSD:
int strnvis(char *, size_t, const char *, int);
Don't ask me why.
On Thu, Jan 23, 2014 at 12:56:48PM +1100, Darren Tucker wrote:
> On Thu, Jan 23, 2014 at 12:13 PM, Hisashi T Fujinaka <htodd at twofifty.com> wrote:
> > #1
2006 Feb 22
1
warning about net/if_tap.h & login_cap.h
Hi
I've encountered this:
configure: WARNING: net/if_tap.h: present but cannot be compiled
configure: WARNING: net/if_tap.h: check for missing prerequisite headers?
configure: WARNING: net/if_tap.h: see the Autoconf documentation
configure: WARNING: net/if_tap.h: section "Present But Cannot Be Compiled"
configure: WARNING: net/if_tap.h: proceeding with the
2016 Jul 23
2
Call for testing: OpenSSH 7.3
On Sat, Jul 23, 2016 at 2:30 PM, Hisashi T Fujinaka <htodd at twofifty.com> wrote:
[...]
>> Could you try commenting out the HAVE_REALLOCARRAY line in config.h
>> make clean, make and rerun the test?
>
> That works. Weird how I need that on -current but not on -7.
Looks like reallocarray was added after 7: it's in
2017 Oct 10
3
tunnel device name acquisition?
Numerous how-tos all over the Internet show how one would set up
a tunnel using ssh, e.g.:
ssh -f -o Tunnel=ethernet <server_ip> true
I was wondering if there's a way to subsequently acquire the names
of the local and remote tun/tap interfaces (e.g., using the default
"-w any:any") for subsequent automatic tunnel configuration, e.g.:
ip link set $TapDev up
ip link set
2009 Apr 08
3
libedit not found on SUse 11.1
Included below is a diff between the output from configure on a 64 bit
SUse 11.1 (doesn't find libedit) and a 64 bit Suse 10.3 (does find
libedit) for otherwise identical setups.
1. How can I get the output set up to look at conftest.c?
2. I added a set -x to configure above LIBEDIT_MSG=no
3. ./configure --with-ldflags="-L/usr/lib64" --with-cflags="-ggdb3
2006 Mar 10
0
tun with darwin/macos x
hi,
the following patch adds ssh tun support for Darwin/MacOS X (layer 2+3).
I tested it with Darwin 8.0.1 x86 and MacOS X 10.4 Tiger PPC, I would
like to see any tests from MacOS X users.
It requires an external tun/tap driver, see below.
reyk
--- README.platform.orig 2006-02-13 20:22:04.000000000 -0800
+++ README.platform 2006-02-13 20:21:45.000000000 -0800
@@ -30,6 +30,18 @@ gcc,
2016 Apr 27
2
[Announcement] Tinc version 1.1pre12 released
On Wed, Apr 27, 2016 at 05:26:36PM +0800, hshh wrote:
> >> It is broken on FreeBSD tun.
> >>
> >> tcpdump on tun,
> >> 09:05:07.458988 IP0 bad-hlen 0
It's indeed broken. As a workaround, can you try to change Device to
/dev/tap10? You might have to run "kldload if_tap.ko" before starting
tinc.
--
Met vriendelijke groet / with kind regards,
2006 May 03
1
BUG: opens all interfaces.
Summary: the newish fourth forwarding argument does not correctly
specify the interface on the remote machine for a tunnel in -R
On OpenSSH_4.3p2 OpenSSL 0.9.7g 11 Apr 2005,
on Kanotix 2.9 kernel 2.6.16.2
and Cygwin 1.5.19(0.150/4/2)
and (old) FreeBSD 4.6-RELEASE
sshd_config file:
AllowTcpForwarding yes
GatewayPorts yes
Set up a forwarding tunnel:
From a Kanotix box inside my firewall:
2006 Mar 16
1
OpenSSH Configure Output
Per instructions in configure output (if you want all the configure
output, I shall be happy to send it):
PC% grep -n WARN Config.log
42:configure: WARNING: net/if_tap.h: present but cannot be compiled
43:configure: WARNING: net/if_tap.h: check for missing prerequisite headers?
44:configure: WARNING: net/if_tap.h: see the Autoconf documentation
45:configure: WARNING: net/if_tap.h:
2017 Mar 21
12
[PATCH net-next 0/8] vhost-net rx batching
Hi all:
This series tries to implement rx batching for vhost-net. This is done
by batching the dequeuing from skb_array which was exported by
underlayer socket and pass the sbk back through msg_control to finish
userspace copying.
Tests shows at most 19% improvment on rx pps.
Please review.
Thanks
Jason Wang (8):
ptr_ring: introduce batch dequeuing
skb_array: introduce batch dequeuing
2017 Mar 21
12
[PATCH net-next 0/8] vhost-net rx batching
Hi all:
This series tries to implement rx batching for vhost-net. This is done
by batching the dequeuing from skb_array which was exported by
underlayer socket and pass the sbk back through msg_control to finish
userspace copying.
Tests shows at most 19% improvment on rx pps.
Please review.
Thanks
Jason Wang (8):
ptr_ring: introduce batch dequeuing
skb_array: introduce batch dequeuing
2012 May 09
1
warning from configuring openssh-6.0p1
When running "configure" for openssh-6.0p1 , I got the following output from
"configure":
configure: WARNING: linux/filter.h: present but cannot be compiled
configure: WARNING: linux/filter.h: check for missing prerequisite
headers?
configure: WARNING: linux/filter.h: see the Autoconf documentation
configure: WARNING: linux/filter.h: section "Present But Cannot
2006 Apr 23
0
Configuration Warnings OpenSSH 4.3p2
I don't know enough about this to know if these warnings mean that
I can't build it or not.
Also, since I'm e-mailing anyway, how can I tell what options were
compiled into my exiting ssh:
My system is freeBSD 4.11.
PC% ssh -V
OpenSSH_3.5p1 FreeBSD-20030924, SSH protocols 1.5/2.0, OpenSSL 0x0090704f
PC%
so that I can do the same thing with the newer version. I don't
want to
2017 Mar 22
2
[PATCH net-next 7/8] vhost_net: try batch dequing from skb array
On Tue, Mar 21, 2017 at 12:04:46PM +0800, Jason Wang wrote:
> We used to dequeue one skb during recvmsg() from skb_array, this could
> be inefficient because of the bad cache utilization and spinlock
> touching for each packet. This patch tries to batch them by calling
> batch dequeuing helpers explicitly on the exported skb array and pass
> the skb back through msg_control for
2017 Mar 22
2
[PATCH net-next 7/8] vhost_net: try batch dequing from skb array
On Tue, Mar 21, 2017 at 12:04:46PM +0800, Jason Wang wrote:
> We used to dequeue one skb during recvmsg() from skb_array, this could
> be inefficient because of the bad cache utilization and spinlock
> touching for each packet. This patch tries to batch them by calling
> batch dequeuing helpers explicitly on the exported skb array and pass
> the skb back through msg_control for
2017 Jul 02
13
[Bug 2735] New: Wrong address family handling for tun devices
https://bugzilla.mindrot.org/show_bug.cgi?id=2735
Bug ID: 2735
Summary: Wrong address family handling for tun devices
Product: Portable OpenSSH
Version: 7.5p1
Hardware: Other
OS: Other
Status: NEW
Severity: normal
Priority: P5
Component: ssh
Assignee: unassigned-bugs at
2017 Mar 23
0
[PATCH net-next 7/8] vhost_net: try batch dequing from skb array
On 2017?03?22? 22:16, Michael S. Tsirkin wrote:
> On Tue, Mar 21, 2017 at 12:04:46PM +0800, Jason Wang wrote:
>> We used to dequeue one skb during recvmsg() from skb_array, this could
>> be inefficient because of the bad cache utilization and spinlock
>> touching for each packet. This patch tries to batch them by calling
>> batch dequeuing helpers explicitly on the
2016 Apr 27
0
[Announcement] Tinc version 1.1pre12 released
There is something wrong while routing ipv6 on tap, I prefer to use tun.
Will you fix it soon?
On Wed, Apr 27, 2016 at 5:48 PM, Guus Sliepen <guus at tinc-vpn.org> wrote:
> On Wed, Apr 27, 2016 at 05:26:36PM +0800, hshh wrote:
>
>> >> It is broken on FreeBSD tun.
>> >>
>> >> tcpdump on tun,
>> >> 09:05:07.458988 IP0 bad-hlen 0
>
>
2005 Jun 25
1
Tinc on FreeBSD
Hi,
I can't manage to create the tun/tap device under FreeBSD. Tinc is compiled
and starts to run, but exits with the "Could not open '/dev/tap0': No such
file or directory".
Can someone help me out?
Thanks,
Estevao Cruz
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2016 Apr 27
2
[Announcement] Tinc version 1.1pre12 released
On Wed, Apr 27, 2016 at 05:15:57PM +0800, hshh wrote:
> >Updated support for BSD tun/tap devices.
> It is broken on FreeBSD tun.
>
> tcpdump on tun,
> 09:05:07.458988 IP0 bad-hlen 0
Can you show me your tinc.conf and tinc-up script? Also, which version
of FreeBSD are you using?
--
Met vriendelijke groet / with kind regards,
Guus Sliepen <guus at tinc-vpn.org>