Junos OS

last person joined: yesterday 

Ask questions and share experiences about Junos OS.
  • 1.  Warning: configuration block ignored: unsupported platform

    Posted 06-24-2009 07:43
    I have just upgraded my J2320 from 9.4 to 9.5
    Now NAT has stopped working.
    After some investiagation I found the following errors,
    Via J-Web the config is all ok no errors...
    but via CLI I get this message,
     
     
    from-zone trust to-zone untrust {
                policy Ping {
                    match {
                        source-address Local_Addresses;
                        destination-address any;
                        application [ junos-ping junos-icmp-all junos-icmp-ping ];
                    }
                    then {
                        permit {
                            ##
                            ## Warning: configuration block ignored: unsupported platform (jsr2320)
                            ##
                            source-nat {
                                interface;
                            }
                        }
                        log {
                            session-init;
                            session-close;


  • 2.  RE: Warning: configuration block ignored: unsupported platform
    Best Answer

    Posted 06-24-2009 13:18

    Nating has moved to security nat, in a separate rulebase!

     

    try set security nat source ? And it becomes clear quickly.

     

    like this:  ( security nat hierachy)

      

    source {
        rule-set outbound_interface {
            from zone trust;
            to zone untrust;
            rule r1 {
                match {
                    source-address 0.0.0.0/0;
                    destination-address 0.0.0.0/0;
                }
                then {
                    source-nat interface;
                }
            }
        }