You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a rule is created with source, for example
'006 accept HTTPS 443':
chain: 'INPUT'
state: "NEW"
dport: '443'
proto: tcp
source: some_ip
action: accept
Then source is removed:
'006 accept HTTPS 443':
chain: 'INPUT'
state: "NEW"
dport: '443'
proto: tcp
action: accept
The rule is not changed in iptables. It still holds the source and the module doesn't know the change.
Expected Behavior
Remove the source or destination in iptables when they are removed from puppet code.
Environment
puppet 7.33
Ubuntu 22.04
The text was updated successfully, but these errors were encountered:
Describe the Bug
When a rule is created with source, for example
'006 accept HTTPS 443':
chain: 'INPUT'
state: "NEW"
dport: '443'
proto: tcp
source: some_ip
action: accept
Then source is removed:
'006 accept HTTPS 443':
chain: 'INPUT'
state: "NEW"
dport: '443'
proto: tcp
action: accept
The rule is not changed in iptables. It still holds the source and the module doesn't know the change.
Expected Behavior
Remove the source or destination in iptables when they are removed from puppet code.
Environment
The text was updated successfully, but these errors were encountered: