]> git.ipfire.org Git - ipfire-2.x.git/commitdiff
ovpnmain.cgi: Fixes bug#13548 - imported N2N client connections get disabled instead...
authorAdolf Belka <adolf.belka@ipfire.org>
Thu, 22 Feb 2024 12:43:38 +0000 (13:43 +0100)
committerMichael Tremer <michael.tremer@ipfire.org>
Sun, 3 Mar 2024 10:08:29 +0000 (10:08 +0000)
- When bug#11408 was fixed it was missed that key 41 has disabled inserted into it when
   uploading into the N2N client. This replaced the no-pass entry for all N2N connections
   resulting in the ovpnmain.cgi not being able to show the status correctly as the code
   looks for pass or no-pass.
- The disabled entry has been present for a very long time and is not utilised anywhere
   in the code.
- This fix ensures that key 41 in the uploaded N2N connection has no-pass entered
- Tested out and confirmed in my vm testbed.

Fixes: Bug#13548
Tested-by: Adolf Belka <adolf.belka@ipfire.org>
Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
html/cgi-bin/ovpnmain.cgi

index 98900b277ff6ee2a2381dc73c45470d018835e5e..c92d0237d2d1372656d0d6a71d9b9ee5bc663c9a 100755 (executable)
@@ -3472,7 +3472,7 @@ foreach my $dkey (keys %confighash) {
        $confighash{$key}[31] = $n2ntunmtu[1];
        $confighash{$key}[39] = $n2nauth[1];
        $confighash{$key}[40] = $n2ncipher[1];
-       $confighash{$key}[41] = 'disabled';
+       $confighash{$key}[41] = 'no-pass';
 
   &General::writehasharray("${General::swroot}/ovpn/ovpnconfig", \%confighash);