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