Activity log for bug #1822557

Date Who What changed Old value New value Message
2019-04-01 08:45:27 Lajos Katona bug added bug
2019-04-01 08:45:36 Lajos Katona networking-odl: assignee Lajos Katona (lajos-katona)
2019-04-01 08:46:46 Lajos Katona description In local.conf.example the following line responsible for fetching the host ip: HOST_IP=$(ip route get 8.8.8.8 | awk '{print $NF; exit}') ip route get 8.8.8.8 can produce output like this: $ ip route get 8.8.8.8 8.8.8.8 via 100.109.0.1 dev ens4 src 100.109.0.178 uid 1000 cache Thus awk '{print $NF; exit}' will produce 1000 in this case. One solution for this can be: - to use some other too to fetch the IP of the host, like hostname -I | awk '{print $1}' - As fetching the good ip can be problematic, leave HOST_IP empty, and warn the user of this example file to use the correct IP. In local.conf.example the following line responsible for fetching the host ip: HOST_IP=$(ip route get 8.8.8.8 | awk '{print $NF; exit}') ip route get 8.8.8.8 can produce output like this: $ ip route get 8.8.8.8 8.8.8.8 via 100.109.0.1 dev ens4 src 100.109.0.178 uid 1000     cache Thus awk '{print $NF; exit}' will produce 1000 in this case. One solution for this can be: - to use some other too to fetch the IP of the host, like hostname -I | awk '{print $1}' - As fetching the good ip can be problematic, leave HOST_IP empty, and warn the user of this example file to use the correct IP. $ lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 18.04.2 LTS Release: 18.04 Codename: bionic
2019-04-08 12:57:26 Lajos Katona description In local.conf.example the following line responsible for fetching the host ip: HOST_IP=$(ip route get 8.8.8.8 | awk '{print $NF; exit}') ip route get 8.8.8.8 can produce output like this: $ ip route get 8.8.8.8 8.8.8.8 via 100.109.0.1 dev ens4 src 100.109.0.178 uid 1000     cache Thus awk '{print $NF; exit}' will produce 1000 in this case. One solution for this can be: - to use some other too to fetch the IP of the host, like hostname -I | awk '{print $1}' - As fetching the good ip can be problematic, leave HOST_IP empty, and warn the user of this example file to use the correct IP. $ lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 18.04.2 LTS Release: 18.04 Codename: bionic In local.conf.example the following line responsible for fetching the host ip: HOST_IP=$(ip route get 8.8.8.8 | awk '{print $NF; exit}') ip route get 8.8.8.8 can produce output like this: $ ip route get 8.8.8.8 8.8.8.8 via 100.109.0.1 dev ens4 src 100.109.0.178 uid 1000     cache Thus awk '{print $NF; exit}' will produce 1000 in this case. One solution for this can be: - to use some other tool to fetch the IP of the host, like hostname -I | awk '{print $1}' - As fetching the good ip can be problematic, leave HOST_IP empty, and warn the user of this example file to use the correct IP. $ lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 18.04.2 LTS Release: 18.04 Codename: bionic
2019-04-08 13:22:39 OpenStack Infra networking-odl: status New In Progress
2019-04-12 16:19:04 OpenStack Infra networking-odl: status In Progress Fix Released