1# Copyright (c) 2001 by Sun Microsystems, Inc. 2# All rights reserved. 3# 4# ident "%Z%%M% %I% %E% SMI" 5# 6# This file provides defaults for ssh(1). 7# The values can be changed in per-user configuration files $HOME/.ssh/config 8# or on the command line of ssh(1). 9 10# Configuration data is parsed as follows: 11# 1. command line options 12# 2. user-specific file 13# 3. system-wide file /etc/ssh/ssh_config 14# 15# Any configuration value is only changed the first time it is set. 16# host-specific definitions should be at the beginning of the 17# configuration file, and defaults at the end. 18 19# Example (matches compiled in defaults): 20# 21# Host * 22# ForwardAgent no 23# ForwardX11 no 24# PubkeyAuthentication yes 25# PasswordAuthentication yes 26# FallBackToRsh no 27# UseRsh no 28# BatchMode no 29# CheckHostIP yes 30# StrictHostKeyChecking ask 31# EscapeChar ~ 32