Displaying 6 results from an estimated 6 matches for "tun_remote".
2016 Jan 14
0
Announce: Portable OpenSSH 7.1p2 released
...arren Tucker, Jason McIntyre, Tim Rice and
Ben Lindstrom.
Disabling Roaming in the Source Code:
=====================================
--- readconf.c	30 Jul 2015 00:01:34 -0000	1.239
+++ readconf.c	13 Jan 2016 23:17:23 -0000
@@ -1648,7 +1648,7 @@ initialize_options(Options * options)
 	options->tun_remote = -1;
 	options->local_command = NULL;
 	options->permit_local_command = -1;
-	options->use_roaming = -1;
+	options->use_roaming = 0;
 	options->visual_host_key = -1;
 	options->ip_qos_interactive = -1;
 	options->ip_qos_bulk = -1;
@@ -1819,8 +1819,7 @@ fill_default_options(Opt...
2013 Mar 22
1
[PATCH] Allow matching HostName against Host entries
...amp;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 (options->tun_local == -1)...
2007 Aug 22
0
Patch to allow checking of v1 keys on remote host.
...9;F':
 			config = optarg;
 			break;
+		case 'u':
+			options.checkey = 1;
+			break;
 		default:
 			usage();
 		}
--- orig/openssh-4.6p1/readconf.c	2007-02-19 06:12:54.000000000 -0500
+++ openssh-4.6p1/readconf.c	2007-05-10 11:31:54.924404248 -0400
@@ -1065,6 +1065,7 @@
 	options->tun_remote = -1;
 	options->local_command = NULL;
 	options->permit_local_command = -1;
+	options->checkey = 0;
 }
 /*
--- orig/openssh-4.6p1/readconf.h	2006-08-04 22:39:40.000000000 -0400
+++ openssh-4.6p1/readconf.h	2007-05-10 11:29:55.636538760 -0400
@@ -120,6 +120,7 @@
 	char	*local_command;...
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
2008 Apr 21
3
FIPS 140-2 OpenSSL(2007) patches
...mp;options->permit_local_command;
   goto parse_flag;
 
+ case oFipsMode:
+  intptr = &options->fips_mode;
+  goto parse_flag;
+
  case oDeprecated:
   debug("%s line %d: Deprecated option \"%s\"",
       filename, linenum, keyword);
@@ -1065,6 +1071,7 @@
  options->tun_remote = -1;
  options->local_command = NULL;
  options->permit_local_command = -1;
+ options->fips_mode = -1;
 }
 
 /*
@@ -1132,9 +1139,9 @@
  /* Selected in ssh_login(). */
  if (options->cipher == -1)
   options->cipher = SSH_CIPHER_NOT_SET;
- /* options->ciphers, default set in mypro...
2014 Nov 18
55
[Bug 2319] New: [PATCH REVIEW] U2F authentication
https://bugzilla.mindrot.org/show_bug.cgi?id=2319
            Bug ID: 2319
           Summary: [PATCH REVIEW] U2F authentication
           Product: Portable OpenSSH
           Version: 6.7p1
          Hardware: All
                OS: All
            Status: NEW
          Severity: enhancement
          Priority: P5
         Component: Miscellaneous
          Assignee: unassigned-bugs at