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: 逻辑系统中防火墙过滤器不支持的操作

防火墙过滤器操作

示例

Description

逻辑系统中不支持的终止操作

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;
                    }
                }
            }
        }
    }
}

在此示例中,必须至少有一个系统日志(system syslog file filename)firewall启用了用于存储过滤器日志的工具icmp-syslog

由于此防火墙配置依赖于逻辑系统外部的配置, syslog 因此不支持操作修饰符。