When attempting to use ssh, trying to access my Router's login from the LAN side, I am getting the following inexplicable errors:
Attempting connection ...
/etc/ssh/ssh_config: line 70: Bad configuration option: denyusers
/etc/ssh/ssh_config: line 71: Bad configuration option: denygroups
/etc/ssh/ssh_config: line 77: Bad configuration option: allowusers
/etc/ssh/ssh_config: line 78: Bad configuration option: allowgroups
/etc/ssh/ssh_config: terminating, 6 bad configuration options
My /etc/ssh/ssh_config file contains the following entries:
### Group 1 - Restrictive
DenyUsers root
DenyGroups root
### Group 2 - Permissive
AllowUsers myuser
AllowGroups myuser
According to various references, the above entries are valid, yet ssh is flagging those as "Bad configuration".
Does anybody know why?