Home | History | Annotate | Download | only in openssh

Lines Matching defs:host

72    # Thus, host-specific definitions should be at the beginning of the
75 # Host-specific declarations. These may override anything above. A single
76 # host may match multiple declarations; these are processed in the order
79 Host *.ngs.fi ngs.fi
82 Host fake.com
83 HostName another.host.name.real.org
89 Host books.com
93 Host fascist.blob.com
98 Host puukko.hut.fi
102 Host *.fr
105 Host *.su
109 Host vpn.fake.com
114 Host *
215 { "host", oHost },
492 char *arg, *oattrib, *attrib, *cmd, *cp = *condition, *host, *criteria;
506 host = percent_expand(options->hostname,
509 host = xstrdup(host_arg);
511 debug2("checking match for '%s' host %s originally %s",
512 cp, host, original_host);
549 if (strcasecmp(attrib, "host") == 0) {
550 criteria = xstrdup(host);
551 r = match_hostname(host, arg, len) == 1;
579 "h", host,
624 free(host);
745 process_config_line(Options *options, struct passwd *pw, const char *host,
1122 fatal("%.200s line %d: Bad protocol 2 host key algorithms '%s'.",
1194 fatal("Host directive not supported as a command-line "
1202 if (match_pattern(host, arg)) {
1204 debug("%.200s line %d: Skipping Host "
1224 fatal("Host directive not supported as a command-line "
1226 value = match_cfg_line(options, &s, pw, host, original_host,
1529 read_config_file(const char *filename, struct passwd *pw, const char *host,
1554 * on/off by Host specifications.
1561 if (process_config_line(options, pw, host, original_host,
2063 /* XXX - if connecting to a remote socket, max sun len may not match this host */
2236 dump_client_config(Options *o, const char *host)
2241 /* Most interesting options first: user, host, port */
2243 dump_cfg_string(oHostName, host);