blob: e0db8d45b0bf0a749382a6a9ebfe622f1b640073 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
class shorewall::rules::ntp::client {
# open ntp udp port to fetch time
shorewall::rule {'me-net-udp_ntp':
source => '$FW',
destination => 'net',
proto => 'udp',
destinationport => '123',
order => 251,
action => 'ACCEPT';
}
}
|