We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68a1997 commit 7f3970bCopy full SHA for 7f3970b
CiscoMigration/CiscoConverter.cs
@@ -1870,6 +1870,14 @@ private void Add_InterfacesAndRoutes()
1870
"cannot create network objects",
1871
ConversionIncidentType.ManualActionRequired));
1872
string networkErrorName = (new CiscoNetwork(subnet.LineId, subnet.Network, subnet.Netmask)).AutoGeneratedNetworkName();
1873
+ foreach (CiscoCommand ciscoCommand in CiscoAllCommands)
1874
+ {
1875
+ if (ciscoCommand.Id == subnet.LineId)
1876
1877
+ ciscoCommand.ConversionIncidentMessage = conversionIncidentMessage;
1878
+ ciscoCommand.ConversionIncidentType = ConversionIncidentType.ManualActionRequired;
1879
+ }
1880
1881
1882
var cpNetworkError = new CheckPoint_Network();
1883
cpNetworkError.Name = networkErrorName;
0 commit comments