Remove duplicate firewall rule for tun0
This commit is contained in:
@@ -4,7 +4,6 @@ import (
|
||||
"context"
|
||||
"fmt"
|
||||
|
||||
"github.com/qdm12/private-internet-access-docker/internal/constants"
|
||||
"github.com/qdm12/private-internet-access-docker/internal/models"
|
||||
)
|
||||
|
||||
@@ -32,11 +31,6 @@ func (c *configurator) SetVPNConnections(ctx context.Context, connections []mode
|
||||
return fmt.Errorf("cannot set VPN connections through firewall: %w", err)
|
||||
}
|
||||
|
||||
// TODO remove elsewhere?
|
||||
if err := c.acceptOutputThroughInterface(ctx, string(constants.TUN), false); err != nil {
|
||||
return fmt.Errorf("cannot allow traffic through tunnel: %w", err)
|
||||
}
|
||||
|
||||
c.removeConnections(ctx, connectionsToRemove, defaultInterface)
|
||||
if err := c.addConnections(ctx, connectionsToAdd, defaultInterface); err != nil {
|
||||
return fmt.Errorf("cannot set VPN connections through firewall: %w", err)
|
||||
|
||||
Reference in New Issue
Block a user