summaryrefslogtreecommitdiff
path: root/manifests/rules/openvpn.pp
blob: 842e27644ef8952db5e69d1e3be07bc615667074 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# openvpn incoming
class shorewall::rules::openvpn {
  shorewall::rule {
    'net-me-openvpn-udp':
      source          => 'net',
      destination     => '$FW',
      proto           => 'udp',
      destinationport => '1194',
      order           => 240,
      action          => 'ACCEPT';
  }
}