This post has been de-listed

It is no longer included in search results and normal feeds (front page, hot posts, subreddit posts, etc). It remains visible only via the author's post history.

2
port forwarding stopped working with gluetun
Post Body

hi i'm running Mullvad with Gluetun inside a Kubernetes cluster. The first time I set things up, port forwarding worked and I confirmed it via

curl https://am.i.mullvad.net/port/XXXXX  # port number

however, the port somehow got deleted off my account and ever since then, I have never been able to successfully set up port-forwarding again. I have tried with several different port numbers, but always fail the port check API. Is there a way I debug the issue more granularly? The port is in the same city as my exit city. To summarize, VPN works but not port-forwarding.

Configuration Here is the Kubernetes spec for my Gluetun container.

- name: vpn-client
  image: qmcgaw/gluetun:v3.33.0
  securityContext:
    capabilities:
      add:
      - NET_ADMIN
  env:
  - name: TZ
    value: XXXXXXXX
  # https://github.com/qdm12/gluetun/wiki/Mullvad
  - name: VPN_SERVICE_PROVIDER
    value: mullvad
  - name: VPN_TYPE
    value: wireguard
  - name: WIREGUARD_PRIVATE_KEY
    value: XXXXXXXX
  - name: WIREGUARD_ADDRESSES
    value: XXXXXXXX
  # need to make sure server city matches the port city
  - name: SERVER_CITIES
    value: XXXXXXXX
  - name: FIREWALL_VPN_INPUT_PORTS
    value: XXXXXXXX
  readinessProbe:
    exec:
      command:
      - sh
      - -c
      - wget -O - https://am.i.mullvad.net/connected | grep -q "You are connected"
    failureThreshold: 3
    timeoutSeconds: 5
  livenessProbe:
    exec:
      command:
      - sh
      - -c
      - wget -O - https://am.i.mullvad.net/connected | grep -q "You are connected"
    initialDelaySeconds: 20
    failureThreshold: 3
    timeoutSeconds: 5

Author
Account Strength
50%
Account Age
7 years
Verified Email
No
Verified Flair
No
Total Karma
192
Link Karma
183
Comment Karma
9
Profile updated: 4 days ago
Posts updated: 5 months ago

Subreddit

Post Details

We try to extract some basic information from the post title. This is not always successful or accurate, please use your best judgement and compare these values to the post title and body for confirmation.
Posted
1 year ago