Okay, well I'm in AU, so changing to my ISP isn't an option for you; but perhaps another ISP would be happy to help or you can convince them why you need to be off CGNAT?
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu
# for FILE in "$(find /conf/sshd -type f -name '*key')";do ls "${FILE}";echo;done
ls: /conf/sshd/ssh_host_rsa_key
/conf/sshd/ssh_host_ecdsa_key
/conf/sshd/ssh_host_ed25519_key: No such file or directory
# for FILE in $(find /conf/sshd -type f -name '*key');do ls "${FILE}";echo;done
/conf/sshd/ssh_host_rsa_key
/conf/sshd/ssh_host_ecdsa_key
/conf/sshd/ssh_host_ed25519_key
find /conf/sshd -name '*key' -print0|xargs -0r chmod 600
find /conf/sshd -name '*key' -print0|xargs -0r chmod -vv 600