Ufuktan Yıldırım
Ufuktan Yıldırım
This issue needs more attention. I tried different config and it seems working for know. I have doubts about its strictness. ```python *filter :INPUT DROP [0:0] :FORWARD ACCEPT [0:0] :OUTPUT...
@omexlu 1. Create a file at `/etc/iptables/rules.v4` and write your iptables commands in it. Commands above can be example for you. 2. Create another file at `/etc/systemd/system/iptables-openvpn.service`. Write those in...
@omexlu You can compare [content of the service file created by script](https://github.com/angristan/openvpn-install/blob/b840f56f3e937878ade53bd35a9d506f42cdfc77/openvpn-install.sh#L1001-L1014) before overwrite it. You can see repository script uses two shell script, one to load rules at system...
@omexlu I don't have any expertise with IPv6 rules for OpenVPN. Are you sure you are using the `eth0` interface of the server for SSH connection. If you are not...
@omexlu Then it could be better to delete `-i eth0` part until you are sure.
This problem occurs nearly every time when executing the script in a machine just launched. And this makes harder to use this script with Terraform and other orchestration/provisioning tools. Because...
This is not about the OS image. All linux dists have cron tasks that may run any time and sometimes they can conflict with each other. There is undeniable possibility...
@randomshell That was right after reboot and recurred for multiple times. I don't think there is significant waiting between booting the system and running the script because of automation. Seems...
I was testing the bcrypt/base64 and discovered the issue with paddings. If anyone there is not convinced yet by the existence of problem. Take a look to spec of base64:...
Correct operation should calculate number of equals as `(4 - len(src)) % 4` ``` number of bytes in the decoded string -> number of equals to add 0 -> 0...