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