Skip to content

ACO DCO mixed configuration

Wataru Ishida edited this page Sep 20, 2018 · 2 revisions

From OOPTOS v0.7.0, libtai-mux is used to support ACO/DCO mixed configuration.

By default, all PIU slots is configured to use libtai-nel.so which is used for ACO PIU.

root@localhost:~# cat /etc/tai/mux/static.json
{
    "1": "libtai-nel.so",
    "2": "libtai-nel.so",
    "3": "libtai-nel.so",
    "4": "libtai-nel.so",
    "5": "libtai-nel.so",
    "6": "libtai-nel.so",
    "7": "libtai-nel.so",
    "8": "libtai-nel.so"
}

To use DCO PIU, you need to update transyncd container image to contain DCO libtai.so and modify /etc/tai/mux/static.json.

Refer to this for updating transyncd container image.

Following configuration works with ACO PIU inserted for slot 1-4, DCO PIU inserted for slot 5-8,

$ cat /etc/tai/mux/static.json
{
    "1": "libtai-nel.so",
    "2": "libtai-nel.so",
    "3": "libtai-nel.so",
    "4": "libtai-nel.so",
    "5": "libtai-ac200.so",
    "6": "libtai-ac200.so",
    "7": "libtai-ac200.so",
    "8": "libtai-ac200.so"
}

To apply the changes, you need to restart oopt system by

$ oopt reboot
Clone this wiki locally