Question : Modifing the configuration of a PIX 515 with Fail-over license

I have two PIX 515  one of them has a fail-over license.

I have made a lot of changes to the primary PIX , including IP address changes while the secondary was offline.

Now, when I turn the fail-over unit back on  there is a message on the Console

that says that I am running a fail-over license and therefore my access will be terminated.

(so I can't configure from the console or remotely via ssh)

How can I resynchronize the secondary PIX with the primary?

Thank you

Pierre

Answer : Modifing the configuration of a PIX 515 with Fail-over license

got it:

in the hidden depths of the protected painters:

type
  TmagiccxPCStandardPainter = class(TcxPCStandardPainter) end;

procedure TfrmSumGraphs.pcSUMDatabasesMouseDown(Sender: TObject;
  Button: TMouseButton; Shift: TShiftState; X, Y: Integer);
var
  n: Integer;
  tab: tcxTabSheet;
  R: TRect;
  pt: TPoint;
begin
  n := pcSUMDatabases.IndexOfTabAt(X, Y);
  if (n <> -1) then
  begin
    tab := pcSUMDatabases.Pages[n];
    TmagiccxPCStandardPainter(pcSUMDatabases.Painter).StandardPainterPrepareOutTabImageAndTextData(tab.TabIndex);
    R := TmagiccxPCStandardPainter(pcSUMDatabases.Painter).FOutTabImageAndTextData.TabImageRect;
    if PtInRect(R, Point(X, Y)) then ShowMessage('It''s on the image !!!!');
  end;
end;
Random Solutions  
 
programming4us programming4us