summaryrefslogtreecommitdiff
path: root/puppet/modules/shorewall/manifests/rules/ntp/server.pp
blob: ed0968db0cdb3cac6cd5b671b2da74e19bd7f07a (plain)
1
2
3
4
5
6
7
8
9
10
class shorewall::rules::ntp::server {
    shorewall::rule {'net-me-udp_ntp':
        source          => 'net',
        destination     => '$FW',
        proto           => 'udp',
        destinationport => '123',
        order           => 241, 
        action          => 'ACCEPT';
    }
}