Renato
Renato
Thank you Martin! Is there a way to create a log or a warning when that happens? The worse part is to identify conflicting objects. Can I suggest a file...
Hi Martin, Thank you for your time and partially solving issue. I just tested, for object host issue is solved. Its detecting/warning dup with checkpoint object. Can it also be...
Worked! I replaced: def hostmask2netmask(self,hostmask): mask_bytes = hostmask.split('.',3) mask_bytes = [str(int(b) ^ 255) for b in mask_bytes] return '.'.join(mask_bytes) with: def hostmask2netmask(self,hostmask): return hostmask now result is normal: CiscoNet(name=N_1.5.0.8-29,ipAddr=1.5.0.8/255.255.255.248,desc=,alias=) ACLRule(name=FromInside,src=N_1.5.0.8-29,dst=any,port=any,action=deny,pol=My_Policy,inst=My_Firewall,disabled=False,desc=)...
I tried to find when to use wildcard or netmask. All references to wildcard are old some of then more then 10 years. Maybe this was the old way to...
Yes, i'm receiving the following error: ~~~~~~~~~~~~~~~~~~~~ Validation error in field '' of element #1 at object 'same_name2' @ 'Services' --> The referenced object 'any' from table 'globals' does not...
Hi Martin, I think I found my answer on config.py: WARN_PREFIX = '#[-] ' MSG_PREFIX = '#[+] ' NEW_NET_PREFIX = 'N_' NEW_HOST_PREFIX = 'H_' NEW_RANGE_PREFIX = 'R_' NEW_GROUP_PREFIX = 'G_'...
Thanks! cheers
Hi Mike, Thanks for your reply. Your script output are few commands to apply on the command line. Instead of those commands, output would be new configuration file without the...