After reading through the Quick Guide to Configuration Statements, I see:
             state {
                established: [enable|disable]
                new: [enable|disable]
                related: [enable|disable]
                invalid: [enable|disable]
            }

How can I add this to my rule 4 to prevent new connections to the work  
network from the development network?

Would it be:

           rule 4 {
               description: "10.10.0.0/24"
               protocol: "all"
               state {
                new: enable
               }
               action: "drop"
               log: "disable"
               source {
                   network: "10.20.0.0/24"
               }
               destination {
                   network: "10.10.0.0/24"
               }
           }





_______________________________________________
Vyatta-users mailing list
Vyatta-users@mailman.vyatta.com
http://mailman.vyatta.com/mailman/listinfo/vyatta-users

Reply via email to