class firewall::mpd { # MPD http stream shorewall::rule { 'mpd-http-stream': source => 'net', destination => '$FW', proto => 'tcp', destinationport => '8000', order => 200, action => 'ACCEPT'; } # MPD client access shorewall::rule { 'mpd-daemon': source => 'net', destination => '$FW', proto => 'tcp', destinationport => '6600', order => 200, action => 'ACCEPT'; } }