Displaying 2 results from an estimated 2 matches for "fw_ip".
Did you mean:
gw_ip
2013 May 02
3
How to refer to common variables across multiple modules?
...pproach to create a ''common''
class where these variables are defined and then reference them from each
module and create a class dependancy as below. We are using a custom ENC
which outputs the class parameters.
# modules/common/manifest/init.ppclass common (
$radius_ip,
$fw_ip,
$zabbix_ip,) {}
# modules/common/manifest/apache.ppclass apache (
$fw_ip = $common::fw_ip,
$zabbix_ip =$common::zabbix_ip,) {
class { ''common'': } ->
class { ''apache'': }}
# modules/common/manifest/maradns.ppclass maradns (
$radius_ip = $common::rad...
2005 Nov 11
3
passive FTP trafic control
Hi All
How to classify packets belonging to a FTP session?
Port 21 session is easy. but what about data transfers? Their port numbers
(both) are above 1024.
I was thinking about ip_conntrack_ftp. Something like:
iptables -A FORWARD -p tcp --sport 1024: --dport 1024: \
-m state --state ESTABLISHED,RELATED -j CLASSIFY --set-class X:Y
But what if I also have ip_conntrack_irc, for instance.