Help for this page

Select Code to Download


  1. or download this
        my $appendCmd  = "iptablesAdm append";
        $appendCmd    .= " --type=rule";
    ...
        $appendCmd    .= " --protocol=${protocol}"; 
        $appendCmd    .= " --domain=${domain}"; 
        $appendCmd    .= " --persist=yes";
    
  2. or download this
        my $appendCmd  = "iptablesAdm append"
                       . " --type=rule"
    ...
                       . " --protocol=${protocol}" 
                       . " --domain=${domain}"
                       . " --persist=yes";