fix nonsense

This commit is contained in:
ben clark 2021-04-06 22:23:56 +00:00
parent 614180d420
commit 0d1d6aef49
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ Host my_other_server
Host * # applied to all connections
<keyword> <value>
```
as with most things, `*` represents a wildcard (i.e. `192.168.0.*` will match everything in the `192.168.0.0/24`) and `?` matches one character from 0-9 (i.e. `192.168.0.?` will match everything from `192.168.0.0` to `192.168.0.9`). you can read more about it in the ssh_config man page (`man ssh_config`). all possible keywords are also listed in the ssh_config man page.
as with most things, `*` represents a wildcard (i.e. `192.168.0.*` will match everything from `192.168.0.0` to `192.168.0.255`) and `?` matches one character from 0-9 (i.e. `192.168.0.?` will match everything from `192.168.0.0` to `192.168.0.9`). you can read more about it in the ssh_config man page (`man ssh_config`). all possible keywords are also listed in the ssh_config man page.
okay! now, how can we apply this knowledge to something useful? let's have an example.
say you're trying to log in to `cark.website` as `giovanni` on port `24`, you would use this command: