SOLVED How to Add AAISP trunk to IncrediblePBX?

sysctl -w net.ipv6.conf.all.disable_ipv6=0
sysctl -w net.ipv6.conf.default.disable_ipv6=0

create /etc/sysctl.d/99-ipv6.conf with
net.ipv6.conf.all.disable_ipv6 = 0
net.ipv6.conf.default.disable_ipv6 = 0
net.ipv6.conf.lo.disable_ipv6 = 0
run this to make it stick
sysctl --system

You will have to configure the interface for it but how you do it will be determined by which network management is being used. It seems /etc/network/interfaces is being used on my Debian 13 install for IPBX so you do...also check you interface name....this is using enp1s0 because that's what mine is.
cat >> /etc/network/interfaces << 'EOF'
iface enp1s0 inet6 auto
EOF
Then do
ifdown enp1s0 ; ifup enp1s0 &
 

Members online

Forum statistics

Threads
26,712
Messages
174,575
Members
20,281
Latest member
Primordialooze
Get 3CX - Absolutely Free!

Link up your team and customers Phone System Live Chat Video Conferencing

Hosted or Self-managed. Up to 10 users free forever. No credit card. Try risk free.

3CX
A 3CX Account with that email already exists. You will be redirected to the Customer Portal to sign in or reset your password if you've forgotten it.
Back
Top