You are still using topology net30 in your server config file.
It is only used for real old windows clients.
Where each client has his own network (each with 4 ip's)
a better option, and in the future only supported is
topology subnet
Change it in you config file (usually /etc/openvpn/server ...
Search found 138 matches
- Fri Jul 10, 2026 7:07 pm
- Forum: VPN
- Topic: topology net30
- Replies: 1
- Views: 1418
- Mon Jun 01, 2026 7:27 pm
- Forum: Linux
- Topic: debian update not working
- Replies: 1
- Views: 19109
Re: debian update not working
The problem is the key is no longer vallid.
you can add the key from the PHP package base (sury.org)
you can add the key from the PHP package base (sury.org)
Code: Select all
sudo apt-key adv --fetch-keys https://packages.sury.org/php/apt.gpg- Tue Apr 28, 2026 4:44 pm
- Forum: Linux
- Topic: SOLVED: 'unknown': I need something more specific.
- Replies: 2
- Views: 54439
Re: 'unknown': I need something more specific.
After a lot of searching a found the problem.
the command less is used in my script.
Under normal use, under my login in bash it is
/usr/bin/less but is the same in /bin/less, /sbin/less and /usr/sbin/less -> vesion: less 692 (PCRE2 regular expressions)
Works perfect without problem.
But not when ...
the command less is used in my script.
Under normal use, under my login in bash it is
/usr/bin/less but is the same in /bin/less, /sbin/less and /usr/sbin/less -> vesion: less 692 (PCRE2 regular expressions)
Works perfect without problem.
But not when ...
- Wed Apr 22, 2026 6:57 pm
- Forum: Linux
- Topic: SOLVED: 'unknown': I need something more specific.
- Replies: 2
- Views: 54439
Re: 'unknown': I need something more specific.
I found a work around,
put all the output of the script to /dev/null in cron,
so it doesn't send mails.
But this is not exactly what I want.
I want to know the rootcause.
put all the output of the script to /dev/null in cron,
so it doesn't send mails.
Code: Select all
test.sh > /dev/null 2>&1I want to know the rootcause.
- Sun Apr 19, 2026 6:43 pm
- Forum: Linux
- Topic: SOLVED: 'unknown': I need something more specific.
- Replies: 2
- Views: 54439
SOLVED: 'unknown': I need something more specific.
I get the following errors when cron executes scripts
'unknown': I need something more specific.
It is new, since the last update of cronie.
It happens on several script. (But not all)
The version is : cronie (OpenRC) 0.63
'unknown': I need something more specific.
It is new, since the last update of cronie.
It happens on several script. (But not all)
The version is : cronie (OpenRC) 0.63
- Wed Apr 15, 2026 7:02 pm
- Forum: General
- Topic: Opera password
- Replies: 1
- Views: 55787
Re: Opera password
You can turn it off in
opera://password-manager/settings
opera://password-manager/settings
- Tue Oct 14, 2025 7:21 pm
- Forum: Linux
- Topic: system crashes at boot
- Replies: 1
- Views: 143972
Re: system crashes at boot
Sure it is crashing because of disk ?
You can disable mounting the disk in /etc/fstab
Just comment it out with #
or you can add noauto , so it doesn't mount at boot.
like for a cd-rom
# Device Mountpoint FStype Options Dump Pass#
/dev/cd0 /cdrom cd9660 ro,noauto 0 0
Or you can add nofail, so ...
You can disable mounting the disk in /etc/fstab
Just comment it out with #
or you can add noauto , so it doesn't mount at boot.
like for a cd-rom
# Device Mountpoint FStype Options Dump Pass#
/dev/cd0 /cdrom cd9660 ro,noauto 0 0
Or you can add nofail, so ...
- Mon Sep 29, 2025 1:15 pm
- Forum: Linux
- Topic: SOLVED: test disk speed
- Replies: 2
- Views: 127062
Re: test disk speed
You can use:
sudo hdparm -Tt /dev/sda
You should see something like this:
/dev/sda:
Timing cached reads: 15132 MB in 1.99 seconds = 7586.99 MB/sec
Timing buffered disk reads: 330 MB in 3.00 seconds = 109.86 MB/sec
or for M2 SSD:
/dev/nvme0n1p2:
Timing cached reads: 17356 MB in 2.00 seconds ...
sudo hdparm -Tt /dev/sda
You should see something like this:
/dev/sda:
Timing cached reads: 15132 MB in 1.99 seconds = 7586.99 MB/sec
Timing buffered disk reads: 330 MB in 3.00 seconds = 109.86 MB/sec
or for M2 SSD:
/dev/nvme0n1p2:
Timing cached reads: 17356 MB in 2.00 seconds ...
- Wed Sep 10, 2025 7:01 pm
- Forum: Linux
- Topic: swap partition not present
- Replies: 1
- Views: 112793
Re: swap partition not present
You can choose to add a swap-file.
Similar to what windows does.
you create a swap-file, usually in root. But do it on the partition with the most space.
sudo fallocate -l 2G /swapfile
Usually you take 2 times the available ram, 1G ram x 2 = 2G swapfile.
Assign it read/write permissions for ...
Similar to what windows does.
you create a swap-file, usually in root. But do it on the partition with the most space.
sudo fallocate -l 2G /swapfile
Usually you take 2 times the available ram, 1G ram x 2 = 2G swapfile.
Assign it read/write permissions for ...
- Thu Aug 01, 2024 9:04 pm
- Forum: General
- Topic: openvpn Authenticate/Decrypt packet error: packet HMAC authentication failed
- Replies: 1
- Views: 712320
Re: openvpn Authenticate/Decrypt packet error: packet HMAC authentication failed
This usually means you have the wrong ta.key installed on Server or client.
Check
or
Make sure the are the same.
Check
Code: Select all
tls-auth /etc/openvpn/easy-rsa/pki/ta.key 0Code: Select all
<tls-crypt>