Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
resource r0{
    net{
        protocol A;
        verify-alg crc32;
        sndbuf-size 1G; # max buffer size is 1 / 8 of physical ram
        on-congestion pull-ahead;
        congestion-fill 950M;
    }
    
    floating 10.20.210.4:7788 {                                                #// VIP 사용
        options {
            svc-autostart no;                                                      #// SDR 구성간 Active,Standby에 적용 필수 옵션, 리소스 자동 시작 no
        }

        device e minor 2;
        disk e;
        meta-disk "\\\\?\\Volume{d4006597-e3d1-4685-a91b-b23a669499f4}\\";     #// 양서버에서 동시 접속이 가능한 스토리지 (RAW) 볼륨
        node-id 0;
    }
    
    floating 10.20.210.3:7788 {                                                #// DR IP 사용
        options {
            svc-autostart yes;                                                      # // SDR 구성간 DR 은 리소스 자동시작 yes
        }

        device e minor 2;
        disk e;
        meta-disk "\\\\?\\Volume{58f21aac-2b90-464e-9cea-42a25846fd56}\\";     #// 내장 혹은 스토리지 (RAW 상태) 볼륨
        node-id 1;
    }
}

...