Help us improve your experience.

Let us know what you think.

Do you have time for a two-minute survey?

 
 

論理システムのファイアウォールフィルターでサポートされていないアクション

表 1 では、 [edit firewall] 階層レベルではサポートされますが、 [edit logical-systems logical-system-name firewall] 階層レベルではサポートされていないファイアウォールフィルターアクションについて説明します。

表 1: 論理システムのファイアウォールフィルターでサポートされていないアクション

ファイアウォールフィルターアクション

説明

論理システムでサポートされていないアクションの終了

logical-system

[edit]
logical-systems {
    ls1 {
        firewall {
            family inet {
                filter foo {
                    term one {
                        from {
                            source-address 10.1.0.0/16;
                        }
                        then {
                            logical-system fred;
                        }
                    }
                }
            }
        }
    }
}

logical-system アクションは fred (ローカル論理システムの外部で定義された論理システム) を参照するため、このアクションはサポートされていません。

論理システムでサポートされていない非終了アクション

ipsec-sa

[edit]
logical-systems {
    ls1 {
        firewall {
            family inet {
                filter foo {
                    term one {
                        from {
                            source-address 10.1.0.0/16;
                        }
                        then {
                            ipsec-sa barney;
                        }
                    }
                }
            }
        }
    }
}

ipsec-sa アクション修飾子は barney (ローカル論理システムの外部で定義されたセキュリティ アソシエーション) を参照するため、このアクションはサポートされていません。

next-hop-group

[edit]
logical-systems {
    ls1 {
        firewall {
            family inet {
                filter foo {
                    term one {
                        from {
                            source-address 10.1.0.0/16;
                        }
                        then {
                            next-hop-group fred;
                        }
                    }
                }
            }
        }
    }
}

next-hop-group アクションは fred ([edit forwarding-options next-hop-group]階層レベルで定義されたオブジェクト) を参照するため、このアクションはサポートされていません。

port-mirror

[edit]
logical-systems {
    ls1 {
        firewall {
            family inet {
                filter foo {
                    term one {
                        from {
                            source-address 10.1.0.0/16;
                        }
                        then {
                            port-mirror;
                        }
                    }
                }
            }
        }
    }
}

port-mirrorアクションは、[edit forwarding-options port-mirroring]階層レベルで定義された設定に依存するため、このアクションはサポートされていません。

sample

[edit]
logical-systems {
    ls1 {
        firewall {
            family inet {
                filter foo {
                    term one {
                        from {
                            source-address 10.1.0.0/16;
                        }
                        then {
                            sample;
                        }
                    }
                }
            }
        }
    }
}

この例では、 sample アクションは、 [edit forwarding-options] 階層で定義されているサンプリング設定によって異なります。したがって、 sample アクションはサポートされていません。

syslog

[edit]
logical-systems {
    ls1 {
        firewall {
            family inet {
                filter icmp-syslog {
                    term icmp-match {
                        from {
                            address {
                                192.168.207.222/32;
                            }
                            protocol icmp;
                        }
                        then {
                            count packets;
                            syslog;
                            accept;
                        }
                    }
                    term default {
                        then accept;
                    }
                }
            }
        }
    }
}

この例では、icmp-syslogフィルターのログを保管するために、firewall機能が使用可能になっているシステム・ログ(system syslog file filename)が少なくとも 1 つ必要です。

このファイアウォール構成は論理システムの外部の構成に依存しているため、 syslog アクション修飾子はサポートされていません。