search for: tun_local

Displaying 4 results from an estimated 4 matches for "tun_local".

Did you mean: t_local
2013 Mar 22
1
[PATCH] Allow matching HostName against Host entries
...case oTunnel: intptr = &options->tun_open; arg = strdelim(&s); @@ -1207,6 +1214,7 @@ options->control_persist = -1; options->control_persist_timeout = 0; options->hash_known_hosts = -1; + options->match_host_name = -1; options->tun_open = -1; options->tun_local = -1; options->tun_remote = -1; @@ -1345,6 +1353,8 @@ } if (options->hash_known_hosts == -1) options->hash_known_hosts = 0; + if (options->match_host_name == -1) + options->match_host_name = 0; if (options->tun_open == -1) options->tun_open = SSH_TUNMODE_NO; if...
2006 Aug 25
2
RFC: non-root ssh tun access
...nssh-4.3p2.orig/ssh.c openssh-4.3p2/ssh.c --- openssh-4.3p2.orig/ssh.c 2005-12-31 00:33:37.000000000 -0500 +++ openssh-4.3p2/ssh.c 2006-08-25 08:32:57.000000000 -0400 @@ -1073,8 +1073,13 @@ int fd; debug("Requesting tun."); +#if defined(SSH_TUN_LINUX) + if ((fd = tun_open(options.tun_local, + options.tun_open, original_real_uid)) >= 0) { +#else if ((fd = tun_open(options.tun_local, options.tun_open)) >= 0) { +#endif c = channel_new("tun", SSH_CHANNEL_OPENING, fd, fd, -1, CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, "tun&...
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 Jul 08
4
Feature request: "SetupCommand" invoked before connecting
Hi, (I'm not subscribed to the list, so please CC me on reply.) I'd like to request adding a feature to OpenSSH: Task: ~~~~~ It is quite sometime useful to invoke a program prior to connecting to an ssh server. The most common use case will probably be port knocking. That is a small program sends certain packets to a server and the server reacts to this by unlocking the ssh port, which