Somewhere, Something Incredible Is Waiting To Be Known !!!
(Move to ...)
Home
▼
Tuesday, 26 March 2019
Ansible playbook to add and delete static route on paloalto firewall
›
--- - name: modifyRoutes gather_facts: no connection: local hosts: PaloAlto vars: action: StaticRouteAddition ...
Ansible playbook to add and delete static route on fortigate firewall
›
--- - name: modifyRoutes gather_facts: no connection: local hosts: FORTINET vars: action: StaticRouteAddition ...
Ansible playbook to add and delete static route on cisco ASA
›
--- - name: modifyRoutes gather_facts: no connection: local hosts: ASA vars: action: StaticRouteAddition ...
anisible playbook to manage paloalto interface
›
--- - name: PALOALTOInterfaceManagement gather_facts: no connection: local hosts: PALOALTO vars: action: setIP...
ansible playbook to manage fortigate interface
›
--- - name: FORTGATEInterfaceManagement gather_facts: no connection: local hosts: FORTTINET vars: action: enabl...
ansible playbook to mange cisco ASA Interface
›
--- - name: ASAInterfaceManagement gather_facts: no connection: local hosts: ASA vars: action: showVersion1 ...
Friday, 15 March 2019
Perl script to GetSubnetAddressMaskIP ( receives the subnet mask in the format 192.168.1.0/24 and return in the format 192.168.1.0 255.255.255.0)
›
sub GetSubnetAddressMaskIP { my $subnet = trim(<input>); if($subnet =~ m/^(\d\d?\d?)\.(\d\d?\d?)\.(\d\d?\d?)\.(\d...
‹
›
Home
View web version