Open fw to test source
This commit is contained in:
parent
25c7b772c7
commit
b1aa8a8fb8
|
@ -1,4 +1,15 @@
|
||||||
class matrix::lb (
|
class matrix::lb (
|
||||||
) {
|
) {
|
||||||
$ips = lookup('sourceips', undef, undef, undef)
|
$ips = lookup('sourceips', undef, undef, undef)
|
||||||
|
$ips.each | String $ip | {
|
||||||
|
if $::facts['sunet_nftables_enabled'] == 'yes' {
|
||||||
|
sunet::nftables::allow { "nft_testip${ip}":
|
||||||
|
port => 8443,
|
||||||
|
from => $ip,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
notify { 'test':
|
||||||
|
message => "Test test test ${ip}",
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue