Versions Compared

Key

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

...

  1. Cloning code

    Code Block
    mkdir odu_high
    cd odu_high
    git clone "https://<user>@gerritgerrit.o-ran-sc.org/r/a/o-du/l2"


  2. Compilation of O-DU

    Code Block
    cd odu_high/l2/build/odu
    make clean_odu odu MACHINE=BIT64 MODE=FDD


  3. Compilation of CU Stub

    Code Block
    cd odu_high/l2/build/odu
    make clean_cu cu_stub NODE=TEST_STUB MACHINE=BIT64 MODE=FDD


  4. Compilation of RIC Stub


    Code Block
    cd odu_high/l2/build/odu
    make clean_ric ric_stub NODE=TEST_STUB MACHINE=BIT64 MODE=FDD


  5. Execution - Assign IP addresses

    Code Block
    ifconfig <interface name>:ODU “192.168.130.81”
    ifconfig <interface name>:CU_STUB “192.168.130.82”
    ifconfig <interface name>:RIC_STUB “192.168.130.80”


  6. Running CU Stub

    Code Block
    cd odu_high/l2/bin/cu_stub
    ./cu_stub


  7. Running RIC Stub

    Code Block
    cd odu_high/l2/bin/ric_stub
    ./ric_stub


  8. Running O-DU

    Code Block
    cd odu_high/l2/bin/odu
    ./odu

    Note:

    1. Each of the above binaries must be run in separate terminals
    2. CU Stub and RIC Stub images must be run before O-DU image. 

...