Sign inSign up

openeuler/strongswan

Sponsored OSS

By openeuler

Updated about 18 hours ago

Image
2

6.9K

openeuler/strongswan repository overview

Quick reference

strongSwan | openEuler

Current strongSwan images are built on the openEuler. This repository is free to use and exempted from per-user rate limits.

strongSwan is an OpenSource IPsec-based VPN solution.

Read more on strongSwan Documentation.

The tag of each strongSwan docker image is consist of the version of strongSwan and the version of basic image. The details are as follows

TagCurrentlyArchitectures
6.1.0-oe2403sp4strongswan 6.1.0 on openEuler 24.03-LTS-SP4amd64, arm64
6.0.3-oe2403sp4strongswan 6.0.3 on openEuler 24.03-LTS-SP4amd64, arm64
6.0.3-oe2403sp2strongswan 6.0.3 on openEuler 24.03-LTS-SP2amd64, arm64
6.0.2-oe2403sp2strongswan 6.0.2 on openEuler 24.03-LTS-SP2amd64, arm64
6.0.1-oe2403sp1strongSwan 6.0.1 on openEuler 24.03-LTS-SP1amd64, arm64

Usage

In this usage, users can select the corresponding {Tag} based on their requirements.

  • Pull the openeuler/strongswan image from docker

    docker pull openeuler/strongswan:{Tag}
    
  • Run with an interactive shell

    You can also start the container with an interactive shell to use strongSwan.

    docker run -it --rm --privileged openeuler/strongswan:{Tag} bash
    

    Note: The --privileged flag is required to allow strongSwan to create and manage network interfaces inside the container.

  • Create your VPN configuration file

    Create or edit /usr/local/etc/swanctl/swanctl.conf with the following content(replace IPs and secret as needed):

    connections {
      myvpn {
        local_addrs  = 192.0.2.1
        remote_addrs = 198.51.100.1
    
        local {
          auth = psk
          id = 192.0.2.1
        }
        remote {
          auth = psk
          id = 198.51.100.1
        }
    
        children {
          net {
            local_ts  = 0.0.0.0/0
            remote_ts = 0.0.0.0/0
          }
        }
    
        version = 2
        proposals = aes256-sha256-modp2048
      }
    }
    
    secrets {
      ike-myvpn {
        id-1 = 192.0.2.1
        id-2 = 198.51.100.1
        secret = "mysecret"
      }
    }
    
  • Start the strongSwan IKEv2 daemon(charon)

    In the container, run charon in the background with debugging enabled:

    /usr/local/libexec/ipsec/charon --debug-dmn 2 --debug-ike 3 &
    
    • --debug-dm 2: Sets daemon debug level to info.
    • --debug-ike 3: Sets IKE protocol debug level to detailed.
  • Load the configuration

    Run:

    swanctl --load-all
    

    Expected output:

    ......
    successfully loaded 1 connections, 0 unloaded
    

Question and answering

If you have any questions or want to use some special features, please submit an issue or a pull request on openeuler-docker-images.

Tag summary

Content type

Image

Digest

sha256:7cf59f44c

Size

290.8 MB

Last updated

about 18 hours ago

docker pull openeuler/strongswan

This week's pulls

Pulls:

8

Last week