Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

bash1

firewall {
   all-ping enable
   group {
       network-group GOOD-NETWORKS {
           network 192.168.2.0/24
       }
   }
   name FROM-INTRANET {
       default-action accept
       description "From the Intranet"
       rule 10 {
           action accept
           description "Authorized Networks"
           protocol all
           source {
               group {
                   network-group GOOD-NETWORKS
               }
           }
       }
    }
}

interfaces {
   ethernet eth1 {
       address dhcp
       description OUTSIDE
       duplex auto
       firewall {
           out {
               name FROM-INTERNET
           }
       }
   }
}
Comment

PREVIOUS NEXT
Code Example
Python :: django view - mixins and GenericAPIView (list or create - GET, POST) 
Python :: ROS subscribes to image type video frames (Python) through topic Publishing 
Python :: ax bar different colors 
Python :: ttk.frame 
Python :: qlcdnumber set value 
Python :: opensource ip tracker python 
Python :: python mysqldb sockets 
Python :: python decouple default value 
Python :: xampp python 
Python :: Accessing range() with index value 
Python :: server localhost for shar file 
Python :: for loop for calendar day selection using selenium python 
Python :: combination in python without itertools 
Python :: wpapi 
Python :: deque popleft in python 
Python :: empty list 
Python :: how to add start menu in python 
Python :: Wtforms: How to generate blank value using select fields with dynamic choice values 
Python :: typing effect in python 
Python :: python without creating pyc 
Python :: ring For in Loop 
Python :: store image in django postprocessimage in django storage 
Python :: Python cut down OS path to certain part 
Python :: void setup and void loop 
Python :: how to download feature engine in spyder console 
Python :: python durchschnitt liste 
Python :: ticklabels are not centered heatmap 
Python :: pico 8 pset 
Python :: Shelve Data Storage 
Python :: reading json without using relative path in django 
ADD CONTENT
Topic
Content
Source link
Name
7+1 =