Fixes #5969 - spelling error fixed (#5970)

This commit is contained in:
Gavin (Saturn XXVIII) 2018-02-09 13:18:57 -08:00 committed by Misty Stanley-Jones
parent aed0b2e2ac
commit cca10d4fb8
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ $ iptables -I DOCKER-USER -i ext_if ! -s 192.168.1.0/24 -j DROP
```
Finally, you can specify a range of IP addresses to accept using `--src-range`
(Remember to also add `-m iprange` wen using `--src-range` or `--dst-range`):
(Remember to also add `-m iprange` when using `--src-range` or `--dst-range`):
```bash
$ iptables -I DOCKER-USER -m iprange -i ext_if ! --src-range 192.168.1.1-192.168.1.3 -j DROP