What is wrong with my SSH config?
HiWhen I try ssh'ing to another host I get the following errors:
hexagon:/home/msh# ssh locahost
/etc/ssh/ssh_config: line 33: Bad configuration option: PermitRootLogin
/etc/ssh/ssh_config: line 34: Bad configuration option: IgnoreRhosts
/etc/ssh/ssh_config: line 35: Bad configuration option: X11Forwarding
/etc/ssh/ssh_config: terminating, 3 bad configuration options
my ssh_config looks lige this:
# Site-wide defaults for various options
# Host *
# ForwardAgent no
# ForwardX11 no
# RhostsAuthentication no
# RhostsRSAAuthentication no
# RSAAuthentication yes
# PasswordAuthentication yes
# BatchMode no
# CheckHostIP yes
# StrictHostKeyChecking ask
# IdentityFile ~/.ssh/identity
# IdentityFile ~/.ssh/id_rsa
# IdentityFile ~/.ssh/id_dsa
# Port 22
Protocol 2
PermitRootLogin no
IgnoreRhosts yes
X11Forwarding no
RhostsAuthentication no
RhostsRSAAuthentication no
# PermitEmptyPasswords no
# Cipher 3des
# Ciphers aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour,aes192-cbc,aes256-cbc
# EscapeChar ~
What could be wrong?