S
S
speedvm2022-01-26 14:07:37
openvpn
speedvm, 2022-01-26 14:07:37

How to allow access to a specific IP address only for a specific network?

Good day to all!
There is a linux server with OpenVPN, it is also a gateway for networks 192.168.2.0/24, 192.168.4.0/24, 192.168.10.0/24 and a few more.
Each network on the server on a separate interface. OpenVPN clients connect to the server and crawl across all networks. This is how it should be and it works great.
But now the moment has come when one single client needs to be given VPN access to only ONE network (192.168.4.0/24). The client receives an IP address from the network 10.8.0.0/24, specifically 10.8.0.115.
How can I disable this IP from all networks except 192.168.4.0/24 using iptables?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
S
speedvm, 2022-01-26
@speedvm

iptables -I FORWARD -s 10.8.0.115/32 ! -d 192.168.4.0/24 -j DROP

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question