I am needing to set up IPtables to accept traffic on many internal IP's. Is there a wildcard I can use for part of the ip address? For example: 192.168..
Or would there a better alternative?
|
|
|
iptables does not know wildcards but used the CIDR method. F.e: -s 192.168.0.0/24 will cover all the hosts from 192.168.0.1 to 192.168.0.254. You can find more info about CIDR here |
|||
|
|
|
Not really a wildcard, you can match IP Adresses by subnets: 192.168.0.0/16 192.168.1.0/24 192.168.2.0/25 Another way is to use ipranges like this: iptables -A INPUT --destination-port 80 -m iprange --src-range From_IP-To_IP -j ACCEPT There is a second module for --dest-range as well. |
|||
|
|
|
No wildcard per se, but you can specify a CIDR netmask:
The above would be the CIDR equivalent of the example you gave. |
|||
|
|
|
Unrelatedly, please consider working on your accept-rate. |
|||
|
|