-
I got it installed on a Debian 10 server vía Ansible method. netstat -tulnpActive Internet connections (only servers) I'm unable to access the api or apidocs using https://157.XXX.XXX.XXX:8443/apidocs (connection timed out) `# curl http://127.0.0.1:8080/apidocs
I can't find why it doesn't allow me to access from outside. I even tried to stop nftables service. Please help |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
hi @WEBudoGT, |
Beta Was this translation helpful? Give feedback.
-
Thanks @WEBudoGT you can add back the port 8443 and rerun playbook with tag or you can just do simple command to solve this immediately: example |
Beta Was this translation helpful? Give feedback.
Thanks @WEBudoGT
Seem like the line of port for firewall has been removed when you edit inventory file.
libresbc/build/ansible/inventories/production/hosts.yml
Line 48 in a92ab6b
you can add back the port 8443 and rerun playbook with tag
-t libre
ansible-playbook playbooks/deployment.yml -i inventories/production -l "<machine-name>" -t "libre"
or you can just do simple command to solve this immediately:
nft add rule inet LIBREFW INBOUND tcp dport 8443 ip saddr <your-ip-address>counter accept
example
nft add rule inet LIBREFW INBOUND tcp dport 8444 ip saddr 1.1.1.1/32 counter accept