Forum Discussion

bmohanak_276891's avatar
Apr 13, 2017
Solved

How to identify the difference in the Act/Stdby Configuration on the vCMP guest

Dear F5 Experts.   I need help with identifying the differences between the Active and Standby vCMP guest, Someone accidentally made some changes on the Standby guest, Now I am adding configs to t...
  • Samir_Jha_52506's avatar
    Apr 13, 2017

    You can compare both device file with size, audit log, etc(ls -l bigip.conf).

    Other option is to compare both device file via unix command.

        comm -13 <(sort file1) <(sort file2) > file3
    

    or

        grep -Fxvf file1 file2 > file3
    

    or

        diff file1 file2 | grep "<" | sed 's/^ file3