New mgmt_cli method:
#mgmt_cli add network –batch IPs-ListFile.csv -r true
Excel sheet file format with column headings:
name,subnet,subnet-mask
Old DBEdit Method:
foreach($ip in Get-Content ip1.txt){
Write-Host “create host_plain BlkIP_$ip”
Write-Host “modify network_objects BlkIP_$ip ipaddr $ip”
Write-Host “addelement network_objects Blocked_IP1 ” network_objects:BlkIP_$ip”
Write-Host “update network_objects Blocked_IP1”
}