summaryrefslogtreecommitdiff
path: root/manifests/rules/out/tor.pp
blob: b4128d0f3f99472929abe154d102d7def4dc9d80 (plain)
1
2
3
4
5
6
7
8
9
10
11
# open outgoing port to connect to the network
class shorewall::rules::out::tor {
  shorewall::rule{'me-net-tor-tcp':
    source          => '$FW',
    destination     => 'net',
    proto           => 'tcp',
    destinationport => '9001',
    order           => 240,
    action          => 'ACCEPT';
  }
}