iptables: Unknown error 18446744073709551615

When trying to run an OpenVPN Server and you receive the following error:

iptables: Unknown error 18446744073709551615

Here is a work around for the above error.

Run this inside your OpenVZ Container.

iptables -t nat -A POSTROUTING -s 10.8.0.0/24 -o venet0 -j SNAT --to-source SERVER_IP_HERE
/etc/init.d/iptables save
/etc/init.d/iptables restart

(Replace SERVER_IP_HERE with your servers IP address)

Then the error should no longer persist.

Byla tato odpověď nápomocná?

 Tisknout tento článek

Také čtěte

PHP Security: Limit Resources Used By Script

How do I control and put limits on php scripts such as maximum execution time of each script and...

Linux: Check For Memory Leaks In Programs

How do I check my C programs under Linux operating systems for memory leaks? How do I debug and...

Linux RAM Disk: Creating A Filesystem In RAM

Software RAM disks use the normal RAM in main memory as if it were a partition on a hard drive...

nginx: Send Custom HTTP Headers

How do I send or set arbitrary HTTP headers using nginx web server? You need to use add_header...

CentOS / Redhat: Install nginx As Reverse Proxy Load Balancer

nginx is a Web and Reverse proxy server. Nginx used in front of Apache Web servers. All...