By default, SSH Secure Shell does not impose any login
restrictions in addition to those provided by the operating
system. However, you can restrict connections based on host,
user name, or group.
-
AllowHosts/DenyHosts Login is allowed/denied from hosts whose name matches one of
the specified patterns.
Example 1. Listing complete hostnames.
AllowHosts localhost, foobar\.com, friendly\.org
This allows connections only from specified hosts.
Example 2. Using patterns with hostnames.
AllowHosts h..s.\..*
This pattern matches, for example, house.foobar.com,
house.com, but not house1.com. Note that you
have to input the string "\." when you want to
specify a literal dot.
Example 3. Using patterns with IP-addresses.
AllowHosts ([[:digit:]]{1\,3}\.){3}[[:digit:]]{1\,3}
This pattern matches any IP address (xxx.xxx.xxx.xxx).
However, some host's hostname could also match this pattern.
Example 4 Using \i.
AllowHosts "\i192.*\.3"
When \i is used in the beginning of a pattern,
only the host IP addresses are used. The above pattern matches,
for example, 192.0.0.3.
-
AllowSHosts/DenySHosts
The .shosts, .rhosts,
/etc/shosts.equiv and /etc/hosts.equiv
entries are honored only for hosts whose name matches one of
the specified patterns. It is recommended to use these keywords
with host-based authentication.
-
AllowUsers/DenyUsers Login is allowed/denied as users whose name matches one of the specified patterns.
Example 1 Using complete user names
DenyUsers devil@evil\.org,warezdude,1337
This denies login as devil when the connection is
coming from evil.org. It also denies login (from all
addresses) as warezdude and as user whose UID is
1337.
Example 2 Using patterns with user names
AllowUsers "sj*,s[:digit:]+,s(jl|amza)"
This pattern matches, for example, sjj, sjjj,
s1, s123, and samza but not
s1x or slj.
Example 3 Using \i.
AllowUsers "sjl@\i192.*\.3"
This would allow login as user sjl from only those
hosts whose IP address matches the specified pattern.
-
AllowGroups/DenyGroups Login is allowed/denied when one of the groups the user belongs
to matches one of the specified patterns.
Example 1
AllowGroups root,staff,users