I have an ssh configuration file as follows
Host default
User git
Hostname github.com
IdentityFile ~/.ssh/id_rsa
Host work
User git
Hostname github.com
IdentityFile ~/.ssh/work
Host para
User git
Hostname github.com
IdentityFile /home/dev/.ssh/para
I do have access for all the github repos and have added public keys
But when I tried to do the following
ssh -T git@default
ssh -T git@para
ssh -T git@work
It throws an error
ssh: Could not resolve hostname: Name or service not known
I am using ubuntu 20.04 in VMware player
How to fix this issue?