search for: punch

Displaying 20 results from an estimated 528 matches for "punch".

Did you mean: bunch
2013 Aug 04
1
UDP hole punching and invitations
Hi, I read about the invitation protocol that will be introduced in 1.1pre8. Is there any mechanism of UDP hole punching to establish a VPN behind NAT? Cheers, Nik -- Diese Nachricht wurde von meinem Android-Mobiltelefon mit K-9 Mail gesendet. -------------- n?chster Teil -------------- Ein Dateianhang mit HTML-Daten wurde abgetrennt... URL: <http://www.tinc-vpn.org/pipermail/tinc/attachments/20130804/a714cc8...
2018 Aug 02
2
Re: [PATCH 1/3] file: Avoid unsupported fallocate() calls
...upporting ZERO_RANGE (e.g. NFS 4.2) or > block device on kernel < 4.9, we used to call fallocate() for every > zero, fail with EOPNOTSUPP, and fallback to manual zeroing. When > trimming, we used to try unsupported fallocate() on every call. > > Change file handle to remember if punching holes or zeroing range are > supported, and avoid unsupported calls. > > - can_trim changed to report the actual capability once we tried to > punch a hole. I don't think this is useful yet. The documentation states that filters (or the nbdkit engine itself) are free to cac...
2018 May 15
2
Node to Node UDP Tunnels HOWTO?
...UDP "probe" > packets to the destination node. These probes serve three purposes at > the same time: (1) they enable tinc to determine if the destination > node is reachable over UDP; (2) if it is, they enable tinc to > determine the PMTU; and (3) they de facto act as NAT hole punchers > (because both nodes will be sending probes to each over at the same > time using the same ports). Ah! I'm noticing that configuring static ports on the NAT in front of a tinc node with a public IP seems to make a difference to the number of other tinc nodes that can then establish d...
2005 Sep 16
1
column-binary data
I have a number of datasets that are multipunch column-binary format. Does anyone have any advice on how to read this into R? Thanks. David
2018 Aug 02
0
[PATCH 1/3] file: Avoid unsupported fallocate() calls
...using file systems not supporting ZERO_RANGE (e.g. NFS 4.2) or block device on kernel < 4.9, we used to call fallocate() for every zero, fail with EOPNOTSUPP, and fallback to manual zeroing. When trimming, we used to try unsupported fallocate() on every call. Change file handle to remember if punching holes or zeroing range are supported, and avoid unsupported calls. - can_trim changed to report the actual capability once we tried to punch a hole. I don't think this is useful yet. - zero changed to: 1. If we can punch hole and may trim, try PUNCH_HOLE 2. If we can zero range, try...
2014 Jul 10
2
UC Cemtos 7 : Systemd alternatives ?
Wasn't there a TV series in the 1960s about a US soldier who got made up to general thanks to the accidental over punching of paper tape? Regards, Martin, >-----Original Message----- >From: centos-bounces at centos.org [mailto:centos-bounces at centos.org] On >Behalf Of Always Learning >Sent: 10 July 2014 11:43 >To: CentOS mailing list >Subject: Re: [CentOS] Cemtos 7 : Systemd alternatives ? &gt...
2018 Aug 02
10
[PATCH 0/3] file: Zero for block devices and older file systems
This is the second version to support efficient zero for block devices on older kernels (e.g. RHEL 7.5), and file systems that do not support yet FALLOC_FS_ZERO_RANGE (e.g. NFS 4.2). Changes since v1: - Split to smaller patches - Skip linux only includes on other systems - Skip code using BLKZEROOUT if the macro is not defined - Try BLKZEROOUT only if the offset and count are aligned to device
2018 Aug 02
0
Re: [PATCH 1/3] file: Avoid unsupported fallocate() calls
...g. NFS 4.2) or > > block device on kernel < 4.9, we used to call fallocate() for every > > zero, fail with EOPNOTSUPP, and fallback to manual zeroing. When > > trimming, we used to try unsupported fallocate() on every call. > > > > Change file handle to remember if punching holes or zeroing range are > > supported, and avoid unsupported calls. > > > > - can_trim changed to report the actual capability once we tried to > > punch a hole. I don't think this is useful yet. > > The documentation states that filters (or the nbdkit eng...
2018 Apr 13
2
Relaying some UDP traffic through tinc?
...d a port to > the Windows desktop and use that, but it seems a bit longwinded. Or I > could do the tinc-over-tinc, I guess, but I'm a bit concerned about > latency. > tinc is fully capable of traversing NATs automatically and transparently; it implements techniques such as UDP hole punching that are specifically designed to do just that. The only requirement is that you have *some* nodes on your graph that are not subject to NATs. In your case that would be your linux boxes. If you add your laptop and Windows machine to that graph by establishing tinc connections between them and...
2018 Aug 02
1
Re: [PATCH 2/3] file: Support zero without ZERO_RANGE
On Thu, Aug 02, 2018 at 10:05:28PM +0300, Nir Soffer wrote: > File systems not supporting FALLOC_FL_ZERO_RANGE yet fall back to manual > zeroing. > > We can avoid this by combining two fallocate calls: > > fallocate(FALLOC_FL_PUNHCH_HOLE) "PUNCH" > fallocate(0) > +#ifdef FALLOC_FL_PUNCH_HOLE > + /* If we can punch hole but may not trim, we can combine punching hole and > + fallocate to zero a range. This is expected to be more efficient than > + writing zeros manually. */ Although we can fix this befor...
2012 Nov 08
0
[PATCH] Btrfs: set hole punching time properly
Even if the hole punching is executed, the modification time of the file is not updated. So, current time is set to inode. Signed-off-by: Tsutomu Itoh <t-itoh@jp.fujitsu.com> --- fs/btrfs/file.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/fs/btrfs/file.c b/fs/btrfs/file.c index 110d3cb..15fecc1 100644...
2015 Nov 03
26
[Bug 11588] New: missing option: preallocate for all files except for sparse
https://bugzilla.samba.org/show_bug.cgi?id=11588 Bug ID: 11588 Summary: missing option: preallocate for all files except for sparse Product: rsync Version: 3.1.2 Hardware: x64 OS: Linux Status: NEW Severity: enhancement Priority: P5 Component: core
2018 Aug 19
1
Re: [PATCH v3 1/4] file: Avoid unsupported fallocate() calls
...upporting ZERO_RANGE (e.g. NFS 4.2) or > block device on kernel < 4.9, we used to call fallocate() for every > zero, fail with EOPNOTSUPP, and fallback to manual zeroing. When > trimming, we used to try unsupported fallocate() on every call. > > Change file handle to remember if punching holes or zeroing range are > supported, and avoid unsupported calls. > > - zero changed to: > 1. If we can punch hole and may trim, try PUNCH_HOLE > 2. If we can zero range, try ZERO_RANGE > 3. Fall back to manual writing > > - trim changed to: > 1. If we can...
2003 Dec 18
12
Headless Linux system for Asterisk
Because of space limitations and because of the location of the punch-down blocks, my * server is located on the shelf in a coat closet. Sadly, there is not enough space (or ventilation) for the monitor and keyboard. This will all change when we move to new quarters, but... Does anyone have experience running Linux/Asterisk without a monitor? What, if any, are...
2005 Jan 14
5
Remote Voicemail Retrieval...
...N work line etc. I'm aware that I can forward VM to email or use a web interface but that is not always practical. Other than doing an IVR type arrangement or a phone number dedicated to VM access is there a way to do this? On my old POTS line I used to be able to call my line and simply punch "*" during unavailable message playback to go to the equivalent of voicemailmain(). Is there a way to do this in *? Thanks!
2011 Mar 31
3
[PATCH 1/3] VFS/ioctl: Add punching-hole support to ioctl().
We're currently support two paths from VFS to preallocate unwritten extents(from FS_IOC_RESVSP, or fallocate()), likewise, behavior of punching-hole should be treated as the same, this patch tries to teach file_ioctl() to handle FS_IOC_UNRESVSP, underlying filesystem like ocfs2 is wise enough to do the rest of work;-) Signed-off-by: Tristan Ye <tristan.ye at oracle.com> --- fs/ioctl.c | 10 +++++++--- include/linux...
2011 Mar 31
3
[PATCH 1/3] VFS/ioctl: Add punching-hole support to ioctl().
We're currently support two paths from VFS to preallocate unwritten extents(from FS_IOC_RESVSP, or fallocate()), likewise, behavior of punching-hole should be treated as the same, this patch tries to teach file_ioctl() to handle FS_IOC_UNRESVSP, underlying filesystem like ocfs2 is wise enough to do the rest of work;-) Signed-off-by: Tristan Ye <tristan.ye at oracle.com> --- fs/ioctl.c | 10 +++++++--- include/linux...
2014 Jun 01
1
Tips punching through tight firewalls
Any tips or guidance on improving the probability of being able to connect to a Tinc daemon. I am currently on a guest wifi at a hospital for my in-laws family. Wanting to pass time and be semi productive, I tried to VPN back to my private networks but it appears the default port Tinc users is blocked. Here is what I know about their firewall:
2015 Nov 11
4
UPnP support in tinc
Hi Guus, Unfortunately, I often notice that even with the advanced UDP hole punching mechanisms that tinc uses, I still come across cases on my network where two nodes behind NATs cannot talk to each other because one of the nodes is behind a "strict" NAT that won't use consistent source ports for UDP packets that are sent to different destination addresses. More...
2004 Jun 28
2
Adit 600 - Getting Dial Tone
...es on the adit and I get green lights on both the T1 card and the T1 interface on the adit (so they seem to be happy at that link level). I configured the T1 interface in the asterisk box to do 'fxsls' signaling on all 24 channels. Couple questions: 1. Should I be getting dial tone on my punch down block yet? I can tell the handset it getting power when I touch it to the correct places on the punch down block, but no dial tone. Does asterisk need to be aware of these channels before dial tone will be heard? 2. Did I configure the digium card correctly? Does it need to be setup as fxo...