On 2021-12-22 lad bma wrote: > Suppose I have > > mynetworks = 88.103.239.195 88.103.239.2 > > As you can see these IP addresses are in C classs IP address list. > > How can I use a slash notation so that I can use only one address? > I tried something like 88.103.239.195/24 but it does not work, if my > address is 88.103.239.2
You need to specify the network address for that network: mynetworks = 88.103.239.0/24 Regards Ansgar Wiechers -- "Abstractions save us time working, but they don't save us time learning." --Joel Spolsky