You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ShowMessage("Unspecified ASA version.\nCannot find ASA version for the selected configuration.\nThe configuration may not parse correctly.",MessageTypes.Warning);
ShowMessage("Unsupported ASA version ("+vendorParser.Version+").\nThis tool supports ASA 8.3 and above configuration files.\nThe configuration may not parse correctly.",MessageTypes.Warning);
ShowMessage("Unspecified NGFW version.\nCannot find version for the selected configuration.\nThe configuration may not parse correctly.",MessageTypes.Warning);
ShowMessage("Unsupported version ("+vendorParser.Version+").\nThis tool supports NGFW 6.4 and above configuration files.\nThe configuration may not parse correctly.",MessageTypes.Warning);
ShowMessage("Unspecified SRX version.\nCannot find SRX version for the selected configuration.\nThe configuration may not parse correctly.",MessageTypes.Warning);
ShowMessage("Unsupported SRX version ("+vendorParser.Version+").\nThis tool supports SRX 12.1 and above configuration files.\nThe configuration may not parse correctly.",MessageTypes.Warning);
ShowMessage("Unspecified FortiGate version.\nCannot find FortiGate version for the selected configuration.\nThe configuration may not parse correctly.",MessageTypes.Warning);
593
604
return;
594
605
}
595
606
elseif(vendorParser.MajorVersion<5)
596
607
{
608
+
EnableWindow();
597
609
ShowMessage("Unsupported FortiGate version ("+vendorParser.Version+").\nThis tool supports FortiGate 5.x and above configuration files.\nThe configuration may not parse correctly.",MessageTypes.Warning);
598
610
return;
599
611
}
600
612
break;
601
613
caseVendor.PaloAlto:
602
614
if(string.IsNullOrEmpty(vendorParser.Version))
603
615
{
616
+
EnableWindow();
604
617
ShowMessage("Unspecified PaloAlto version.\nCannot find PaloAlto PAN-OS version for the selected configuration.\nThe configuration may not parse correctly.",MessageTypes.Warning);
605
618
return;
606
619
}
607
620
elseif(vendorParser.MajorVersion<7)
608
621
{
622
+
EnableWindow();
609
623
ShowMessage("Unsupported PaloAlto version ("+vendorParser.Version+").\nThis tool supports PaloAlto PAN-OS 7.x and above configuration files.\nThe configuration may not parse correctly.",MessageTypes.Warning);
610
624
return;
611
625
}
612
626
break;
613
627
caseVendor.PaloAltoPanorama:
614
628
if(string.IsNullOrEmpty(vendorParser.Version))
615
629
{
630
+
EnableWindow();
616
631
ShowMessage("Unspecified PaloAlto version.\nCannot find PaloAlto Panorama version for the selected configuration.\nThe configuration may not parse correctly.",MessageTypes.Warning);
617
632
return;
618
633
}
619
634
elseif(vendorParser.MajorVersion<7)
620
635
{
636
+
EnableWindow();
621
637
ShowMessage("Unsupported PaloAlto version ("+vendorParser.Version+").\nThis tool supports PaloAlto Panorama 7.x and above configuration files.\nThe configuration may not parse correctly.",MessageTypes.Warning);
0 commit comments