Skip to content

Instantly share code, notes, and snippets.

@rohan-molloy
Last active March 27, 2018 04:23
Show Gist options
  • Save rohan-molloy/03710ea034c3d70a79559fb62b8f868a to your computer and use it in GitHub Desktop.
Save rohan-molloy/03710ea034c3d70a79559fb62b8f868a to your computer and use it in GitHub Desktop.
Automatically add connected ssh client to /etc/hosts

Warning: this is intended for WAN hosts who don't usually have concurrent ssh connections

Step one Ensure that an entry for ssh-client.local exists in /etc/hosts:

echo "0.0.0.0 ssh-client.local" >>/etc/hosts

Step two Append the following into /etc/profile

if [  "$SSH_CLIENT" ]; then
	sed -i s/$(grep ssh-client.local /etc/hosts | awk '{print $1}')/"${SSH_CONNECTION%% *}"/ /etc/hosts
	cat /dev/null>/tmp/lastsshclient
	echo SSH.ClientIP=\"${SSH_CLIENT%% *}\" >>/tmp/lastsshclient
	echo SSH.ClientAS=\"$(host -t TXT `tr . ' ' <<< "${SSH_CONNECTION%% *}" | awk '{print $4"."$3"."$2"."$1}'`.origin.asn.cymru.com | tr \" '\n' | tail -n+2)\" >>/tmp/lastsshclient
fi

Step three Log in via SSH and try it! (note values have been changed for privacy)

root@localhost:/# grep ssh-client /etc/hosts
192.0.2.145	ssh-client.local

root@localhost:/# cat /tmp/sshclient
SSH.ClientIP="192.0.2.145"
SSH.ClientAS="0000 | 192.0.2.0/24 | US | arin | 1900-01-01"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment