summaryrefslogtreecommitdiffstats
path: root/.ssh/config
blob: 7dc653aa93a1c0d61f567da0c39bc8fc98990ac3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
ForwardAgent no
CheckHostIp yes

# virtual machines
Host 192.168.122.*
	StrictHostKeyChecking no
	UserKnownHostsFile ~/.ssh/virt-known_hosts
	GlobalKnownHostsFile /dev/null

Host *.redhat.com
	GSSAPIAuthentication yes
	PreferredAuthentications gssapi-with-mic
	#PreferredAuthentications keyboard-interactive,password
	StrictHostKeyChecking ask

Host jnpkrn.github.com
	HostName github.com
	PreferredAuthentications publickey
	IdentityFile ~/.ssh/github_jnpkrn-id_rsa
	UserKnownHostsFile /dev/null
	GlobalKnownHostsFile ~/.ssh/github-known_hosts

Host *
	IdentityFile ~/.ssh/id_rsa
	StrictHostKeyChecking yes

Host pkgs.fedoraproject.org
	# this does not correlate with ~/.ssh/fedora-known_hosts
	#HostKeyAlias ...
	IdentityFile ~/.ssh/fedora-id_rsa
	UserKnownHostsFile ~/.ssh/fedora-known_hosts-extra
	GlobalKnownHostsFile ~/.ssh/fedora-known_hosts
	StrictHostKeyChecking ask

Host fedorapeople.org
	HostKeyAlias people03.fedoraproject.org
	IdentityFile ~/.ssh/fedora-id_rsa
	UserKnownHostsFile /dev/null
	GlobalKnownHostsFile ~/.ssh/fedora-known_hosts

Host git.fedorahosted.org
	HostKeyAlias hosted03.fedoraproject.org
	IdentityFile ~/.ssh/fedora-id_rsa
	UserKnownHostsFile /dev/null
	GlobalKnownHostsFile ~/.ssh/fedora-known_hosts