BUG? OVZ 7 + CentOS 8 + iptables v1.8.4 (nf_tables) [message #53659] |
Thu, 09 July 2020 01:19  |
andre
Messages: 34 Registered: January 2008
|
Member |
From: *virtua.com.br
|
|
It looks like as iptables is multiplying its rules at OVZ7+CentOS8
Steps bellow:
First, we confirm that there are no references to chain TEST
# iptables-save | grep -c TEST
# Warning: iptables-legacy tables present, use iptables-legacy-save to see them
0
Next, we create a chain TEST, a basic rule and at the end we count the number of references to it
# iptables -N TEST ; iptables -A TEST -j ACCEPT ; iptables-save | grep -c TEST
# Warning: iptables-legacy tables present, use iptables-legacy-save to see them
31
31 referentes. Shouldn't there be just 2? (chain creation + rule?)
Let's check which references are those:
# iptables-save
# Generated by iptables-save v1.8.4 on Wed Jul 8 22:11:17 2020
*filter
:INPUT ACCEPT [3859:241253]
:FORWARD ACCEPT [0:0]
:OUTPUT ACCEPT [830:110277]
:TEST - [0:0]
-A TEST -j ACCEPT
-A TEST -j ACCEPT
-A TEST -j ACCEPT
-A TEST -j ACCEPT
COMMIT
# Completed on Wed Jul 8 22:11:17 2020
# Generated by iptables-save v1.8.4 on Wed Jul 8 22:11:17 2020
*raw
:PREROUTING ACCEPT [117105:12625485]
:OUTPUT ACCEPT [120335:94805945]
-A TEST -j ACCEPT
-A TEST -j ACCEPT
COMMIT
# Completed on Wed Jul 8 22:11:17 2020
# Generated by iptables-save v1.8.4 on Wed Jul 8 22:11:17 2020
*mangle
:PREROUTING ACCEPT [117100:12624568]
:INPUT ACCEPT [117100:12624568]
:FORWARD ACCEPT [0:0]
:OUTPUT ACCEPT [120331:94804518]
:POSTROUTING ACCEPT [120331:94804518]
-A TEST -j ACCEPT
-A TEST -j ACCEPT
-A TEST -j ACCEPT
-A TEST -j ACCEPT
-A TEST -j ACCEPT
COMMIT
# Completed on Wed Jul 8 22:11:17 2020
# Generated by iptables-save v1.8.4 on Wed Jul 8 22:11:17 2020
*nat
:PREROUTING ACCEPT [0:0]
:INPUT ACCEPT [0:0]
:POSTROUTING ACCEPT [0:0]
:OUTPUT ACCEPT [0:0]
-A TEST -j ACCEPT
-A TEST -j ACCEPT
-A TEST -j ACCEPT
-A TEST -j ACCEPT
COMMIT
# Completed on Wed Jul 8 22:11:17 2020
# Warning: iptables-legacy tables present, use iptables-legacy-save to see them
|
|
|
|
|
|
|
|
Re: BUG? OVZ 7 + CentOS 8 + iptables v1.8.4 (nf_tables) [message #53719 is a reply to message #53659] |
Thu, 03 December 2020 20:07   |
HHawk
Messages: 22 Registered: September 2017 Location: Europe
|
Junior Member |
From: *dynamic.caiway.nl
|
|
Yeah, exactly. I also emailed OpenVZ and Virtuozzo. And Virtuozzo responded quite quickly and logged in etc on the server I freshly created for their testing...
They appeared to be doing / testing stuff, but then they said I needed a Virtuozzo license. So I guess they don't really care even though OpenVZ 7 shares Virtuozzo 7 stuff.
Oh well. Maybe they will fix it. Hopefully sooner than later.
//edit
@Khorenko: maybe you can investigate this issue?
[Updated on: Thu, 03 December 2020 20:18] Report message to a moderator
|
|
|
Re: BUG? OVZ 7 + CentOS 8 + iptables v1.8.4 (nf_tables) [message #53720 is a reply to message #53659] |
Wed, 09 December 2020 12:10  |
HHawk
Messages: 22 Registered: September 2017 Location: Europe
|
Junior Member |
From: *cable.dynamic.v4.ziggo.nl
|
|
Good news, after sending Virtuozzo (and OpenVZ) another email, I got a confirmation this issue and a fix will be applied in a future release.
I will quote their reply in here for everyone interested:
The case has been analyzed further, and submitted to the Development Team as internal issue with id #PSBM-105903; the issue will be investigated further on their side and the fix, once found, will considered to be included in one of the next product updates.
I am setting the status of this support ticket to "resolved" in recognition of the fact that Support Engineers have completed our portion of the work on this case.
Thank you for reporting an issue in our software.
So let's hope for a fix soon that we can use iptables without issues on e.g. CentOS 8.x + DirectAdmin.
|
|
|