On 22.01.24 12:01, Peter Davis wrote:
On Monday, January 22nd, 2024 at 10:41 AM, Jochen Bern
wrote:
On 20.01.24 07:24, Peter Davis wrote:
When someone connects to this server with OpenVPN and uses the Internet, then
all his\her Internet connections are tunneled through Tor.
I want to know wh
>On Monday, January 22nd, 2024 at 10:41 AM, Jochen Bern
>wrote:
> On 20.01.24 07:24, Peter Davis wrote:
>
> > On Friday, January 19th, 2024 at 5:04 PM, Jochen Bern jochen.b...@binect.de
> > wrote:
> >
> > > On 19.01.24 13:59, Peter Davis via Openvpn-users wrote:
> > >
> > > > I want to tunn
On 20.01.24 07:24, Peter Davis wrote:
On Friday, January 19th, 2024 at 5:04 PM, Jochen Bern
wrote:
On 19.01.24 13:59, Peter Davis via Openvpn-users wrote:
I want to tunnel OpenVPN on Tor and I found the following iptables rules:
# export OVPN=tun0
# IPTABLES -A INPUT -i $OVPN -s 10.8.0.0/24
>On Friday, January 19th, 2024 at 5:04 PM, Jochen Bern
>wrote:
> On 19.01.24 13:59, Peter Davis via Openvpn-users wrote:
>
> > I want to tunnel OpenVPN on Tor and I found the following iptables rules:
> >
> > # export OVPN=tun0
> > # IPTABLES -A INPUT -i $OVPN -s 10.8.0.0/24 -m state --state
On 19.01.24 13:59, Peter Davis via Openvpn-users wrote:
I want to tunnel OpenVPN on Tor and I found the following iptables rules:
# export OVPN=tun0
# IPTABLES -A INPUT -i $OVPN -s 10.8.0.0/24 -m state --state NEW -j ACCEPT
# IPTABLES -t nat -A PREROUTING -i $OVPN -p udp --dport 53 -s 10.8.0.0/2
Hello,
To set up a normal OpenVPN server, I use the following iptables rules:
# IF_MAIN=enp0s3
# IF_TUNNEL=tun0
# YOUR_OPENVPN_SUBNET=10.8.0.0/16
# iptables -I INPUT -p udp --dport 1194 -j ACCEPT
# iptables -A FORWARD -i $IF_MAIN -o $IF_TUNNEL -m state --state
ESTABLISHED,RELATED -j ACCEPT
# ipta