nginx禁止某些ip访问网站

看博客的访问日志经常会发现有人对博客发起恶意访问

比如`python`爬虫

`ddos`之类的

我们可以在`nginx`中设置

```
http {

...

deny 58.251.80.45;
deny 58.251.80.62;
deny 157.255.192.118;
allow all;

...

}
```

禁止`ip访问`,

>deny 192.168.2.1

禁止`ip段访问`,我们知道`ip`有4位组成

封`ip段后三位`

>deny 192.0.0.0/8

封`ip段后两位`

>deny 192.168.0.0/16

封`ip段后一位`

>deny 192.168.2.0/24

    A+
发布日期:2020年12月01日  所属分类:未分类

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: