1 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
2 |
DENIED
|
moderate
|
App\Entity\Entry {#2419
+user: Proxies\__CG__\App\Entity\User {#1970 …}
+magazine: App\Entity\Magazine {#265
+icon: Proxies\__CG__\App\Entity\Image {#246 …}
+name: "piracy@lemmy.dbzer0.com"
+title: "piracy"
+description: """
##### ⚓ Community devoted to in-depth debate on topics concerning digital piracy, ethical problems, and legal advancements.\n
\n
---\n
\n
### Rules • [Full Version](https://rentry.co/piracy-rules)\n
\n
**1**. Posts must be related to the discussion of digital piracy\n
\n
**2**. Don’t request invites, trade, sell, or self-promote\n
\n
**3**. Don’t request or link to specific pirated titles, including DMs\n
\n
**4**. Don’t submit low-quality posts, be entitled, or harass others\n
\n
**5**. Don’t post questions already answered. READ THE [WIKI](https://lemmy.dbzer0.com/post/10901)\n
\n
---\n
\n
[](https://lemmy.dbzer0.com/post/10901)\n
---------------------------------------------------------------------------\n
\n
### Loot, Pillage, & Plunder\n
\n
- [📜 Megathread](https://rentry.co/megathread)\n
- [🪶 FAQ](https://rentry.co/piracy-faq)\n
- [🪶 ISP Complaints](https://rentry.co/piracy-isp-complaints)\n
- [🪶 Rules](https://rentry.co/piracy-rules)\n
\n
---\n
\n
💰 Please help cover server costs.\n
\n
[](https://ko-fi.com/dbzer0)[](https://liberapay.com/db0/)\n
\n
---
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 866
+entryCommentCount: 20194
+postCount: 7
+postCommentCount: 149
+isAdult: false
+customCss: null
+lastActive: DateTime @1729581369 {#275
date: 2024-10-22 09:16:09.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#237 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#233 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#222 …}
+entries: Doctrine\ORM\PersistentCollection {#180 …}
+posts: Doctrine\ORM\PersistentCollection {#138 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#200 …}
+bans: Doctrine\ORM\PersistentCollection {#117 …}
+reports: Doctrine\ORM\PersistentCollection {#103 …}
+badges: Doctrine\ORM\PersistentCollection {#81 …}
+logs: Doctrine\ORM\PersistentCollection {#71 …}
+awards: Doctrine\ORM\PersistentCollection {#1346 …}
+categories: Doctrine\ORM\PersistentCollection {#1823 …}
-id: 51
+apId: "piracy@lemmy.dbzer0.com"
+apProfileId: "https://lemmy.dbzer0.com/c/piracy"
+apPublicUrl: "https://lemmy.dbzer0.com/c/piracy"
+apFollowersUrl: "https://lemmy.dbzer0.com/c/piracy/followers"
+apInboxUrl: "https://lemmy.dbzer0.com/inbox"
+apDomain: "lemmy.dbzer0.com"
+apPreferredUsername: "piracy"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1708748229 {#269
date: 2024-02-24 05:17:09.0 +01:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1697197339 {#271
date: 2023-10-13 13:42:19.0 +02:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1915 …}
+slug: "checking-for-ip-leaks-using-Docker-Gluetun-and-qBittorrent"
+title: "checking for ip leaks using Docker, Gluetun and qBittorrent"
+url: null
+body: """
Hej everyone.\n
\n
Until now I’ve used a linux install and vpn software (airvpn and eddie) when sailing the high seas. While this works well enough, there is always room for improvement.\n
\n
I am in the process of setting up a docker stack which so far contains gluetun/airvpn and qbittorrent. Here is my compose file:\n
\n
```\n
\n
<span style="color:#323232;">version: "3"\n
</span><span style="color:#323232;">services:\n
</span><span style="color:#323232;"> gluetun:\n
</span><span style="color:#323232;"> image: qmcgaw/gluetun\n
</span><span style="color:#323232;"> container_name: gluetun\n
</span><span style="color:#323232;"> cap_add:\n
</span><span style="color:#323232;"> - NET_ADMIN\n
</span><span style="color:#323232;"> volumes:\n
</span><span style="color:#323232;"> - /appdata/gluetun:/gluetun\n
</span><span style="color:#323232;"> environment:\n
</span><span style="color:#323232;"> - VPN_SERVICE_PROVIDER=airvpn\n
</span><span style="color:#323232;"> - VPN_TYPE=wireguard\n
</span><span style="color:#323232;"> - WIREGUARD_PRIVATE_KEY=\n
</span><span style="color:#323232;"> - WIREGUARD_PRESHARED_KEY=\n
</span><span style="color:#323232;"> - WIREGUARD_ADDRESSES=10.188.90.221/32,fd7d:76ee:e68f:a993:63b2:6cc0:fe82:614b/128\n
</span><span style="color:#323232;"> - SERVER_COUNTRIES=\n
</span><span style="color:#323232;"> - FIREWALL_VPN_INPUT_PORTS=\n
</span><span style="color:#323232;"> ports:\n
</span><span style="color:#323232;"> - 8070:8070/tcp\n
</span><span style="color:#323232;"> - 60858:60858/tcp\n
</span><span style="color:#323232;"> - 60858:60858/udp\n
</span><span style="color:#323232;"> restart: unless-stopped\n
</span><span style="color:#323232;">\n
</span><span style="color:#323232;"> qbittorrent: \n
</span><span style="color:#323232;"> image: lscr.io/linuxserver/qbittorrent:latest\n
</span><span style="color:#323232;"> container_name: qbittorrent \n
</span><span style="color:#323232;"> network_mode: "service:gluetun" \n
</span><span style="color:#323232;"> environment: \n
</span><span style="color:#323232;"> - PUID=1000\n
</span><span style="color:#323232;"> - PGID=100\n
</span><span style="color:#323232;"> - TZ=Europe/Berlin\n
</span><span style="color:#323232;"> - WEBUI_PORT=8070 \n
</span><span style="color:#323232;"> volumes: \n
</span><span style="color:#323232;"> - /appdata/qbittorrent/config/:/config \n
</span><span style="color:#323232;"> - /data/videos/downloads:/downloads\n
</span><span style="color:#323232;"> depends_on:\n
</span><span style="color:#323232;"> - gluetun\n
</span><span style="color:#323232;"> restart: always\n
</span>\n
```\n
\n
My first problem was related to the ip adress. For some reason, when I use an IPV6 adress, I got this error in gluetun:\n
\n
```\n
\n
<span style="color:#323232;">2023-10-06T17:30:42Z ERROR VPN settings: Wireguard settings: interface address is IPv6 but IPv6 is not supported: address fd7d:76ee:e68f:a993:63b2:6cc0:fe82:614b/128\n
</span>\n
```\n
\n
Well, I removed that IPV6 and now everything works. Does anyone have a fix? :)\n
\n
Now for the *important* part. I tested the setup with a linux iso and to my surprise - everything works. When I used ipleak.net or other websites, these websites only detect the ip from my vpn. Great.\n
\n
**Do I need to take any other precautions?** I also bound the network interface tun0 in the qbit webui, just to be sure. When I stop the gluetun container, the webui stops working (as it should, but it is hard to check, if the download also stops). I’m just a bit paranoid because I don’t want to pay coin when downloading all the isos my heart desires.\n
\n
Thank you so much for any input!
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 0
+favouriteCount: 1
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1696613913 {#2414
date: 2023-10-06 19:38:33.0 +02:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#1884 …}
+votes: Doctrine\ORM\PersistentCollection {#1973 …}
+reports: Doctrine\ORM\PersistentCollection {#1959 …}
+favourites: Doctrine\ORM\PersistentCollection {#1927 …}
+notifications: Doctrine\ORM\PersistentCollection {#2442 …}
+badges: Doctrine\ORM\PersistentCollection {#2440 …}
+children: []
-id: 5679
-titleTs: "'check':1 'docker':6 'gluetun':7 'ip':3 'leak':4 'qbittorr':9 'use':5"
-bodyTs: "'-06':173 '-10':172 '/32':89 '/appdata/gluetun':70 '/appdata/qbittorrent/config':138 '/config':139 '/data/videos/downloads':140 '/downloads':141 '/gluetun':71 '/linuxserver/qbittorrent:latest':119 '10.188.90.221':88 '100':131 '1000':129 '2023':171 '3':57 '30':175 '42z':176 '60858':107,109 '60858/tcp':108 '60858/udp':110 '614b/128':97,199 '63b2':94,196 '6cc0':95,197 '76ee':91,193 '8070':105,136 '8070/tcp':106 'a993':93,195 'add':66 'address':87,183,191 'admin':68 'adress':155,164 'airvpn':14,76 'also':259,295 'alway':29,146 'anyon':210 'bit':301 'bound':260 'cap':65 'check':291 'coin':310 'compos':54 'contain':47,62,120,278 'countri':99 'depend':142 'desir':318 'detect':243 'docker':42 'download':294,312 'e68f':92,194 'eddi':16 'enough':26 'environ':72,127 'error':168,177 'europe/berlin':133 'everyon':2 'everyth':207,231 'far':46 'fd7d':90,192 'fe82':96,198 'file':55 'firewal':100 'first':148 'fix':213 'gluetun':59,64,126,144,170,277 'gluetun/airvpn':48 'got':166 'great':249 'hard':289 'heart':317 'hej':1 'high':20 'imag':60,116 'import':217 'improv':32 'input':102,325 'instal':10 'interfac':182,263 'ip':154,245 'ipleak.net':236 'ipv6':163,185,187,204 'iso':226,315 'key':82,85 'linux':9,225 'lscr.io':118 'lscr.io/linuxserver/qbittorrent:latest':117 'm':298 'mode':124 'much':322 'name':63,121 'need':252 'net':67 'network':123,262 'paranoid':302 'part':218 'pay':309 'pgid':130 'port':103,104,135 'precaut':257 'preshar':84 'privat':81 'problem':149 'process':37 'provid':75 'puid':128 'qbit':267 'qbittorr':50,115,122 'qmcgaw/gluetun':61 'reason':158 'relat':151 'remov':202 'restart':111,145 'room':30 'sail':18 'sea':21 'server':98 'servic':58,74,125 'set':39,179,181 'setup':222 'softwar':13 'stack':43 'stop':114,275,281,296 'support':190 'sure':272 'surpris':230 't17':174 'take':254 'test':220 'thank':319 'tun0':264 'type':78 'tz':132 'unless':113 'unless-stop':112 'use':7,161,235 've':6 'version':56 'volum':69,137 'vpn':12,73,77,101,178,248 'want':307 'websit':239,241 'webui':134,268,280 'well':25,200 'wireguard':79,80,83,86,180 'work':24,208,232,282"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1696613913
+visibility: "visible "
+apId: "https://feddit.de/post/4246785"
+editedAt: null
+createdAt: DateTimeImmutable @1696613913 {#1793
date: 2023-10-06 19:38:33.0 +02:00
}
} |
|
Show voter details
|
3 |
DENIED
|
edit
|
App\Entity\Entry {#2419
+user: Proxies\__CG__\App\Entity\User {#1970 …}
+magazine: App\Entity\Magazine {#265
+icon: Proxies\__CG__\App\Entity\Image {#246 …}
+name: "piracy@lemmy.dbzer0.com"
+title: "piracy"
+description: """
##### ⚓ Community devoted to in-depth debate on topics concerning digital piracy, ethical problems, and legal advancements.\n
\n
---\n
\n
### Rules • [Full Version](https://rentry.co/piracy-rules)\n
\n
**1**. Posts must be related to the discussion of digital piracy\n
\n
**2**. Don’t request invites, trade, sell, or self-promote\n
\n
**3**. Don’t request or link to specific pirated titles, including DMs\n
\n
**4**. Don’t submit low-quality posts, be entitled, or harass others\n
\n
**5**. Don’t post questions already answered. READ THE [WIKI](https://lemmy.dbzer0.com/post/10901)\n
\n
---\n
\n
[](https://lemmy.dbzer0.com/post/10901)\n
---------------------------------------------------------------------------\n
\n
### Loot, Pillage, & Plunder\n
\n
- [📜 Megathread](https://rentry.co/megathread)\n
- [🪶 FAQ](https://rentry.co/piracy-faq)\n
- [🪶 ISP Complaints](https://rentry.co/piracy-isp-complaints)\n
- [🪶 Rules](https://rentry.co/piracy-rules)\n
\n
---\n
\n
💰 Please help cover server costs.\n
\n
[](https://ko-fi.com/dbzer0)[](https://liberapay.com/db0/)\n
\n
---
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 866
+entryCommentCount: 20194
+postCount: 7
+postCommentCount: 149
+isAdult: false
+customCss: null
+lastActive: DateTime @1729581369 {#275
date: 2024-10-22 09:16:09.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#237 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#233 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#222 …}
+entries: Doctrine\ORM\PersistentCollection {#180 …}
+posts: Doctrine\ORM\PersistentCollection {#138 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#200 …}
+bans: Doctrine\ORM\PersistentCollection {#117 …}
+reports: Doctrine\ORM\PersistentCollection {#103 …}
+badges: Doctrine\ORM\PersistentCollection {#81 …}
+logs: Doctrine\ORM\PersistentCollection {#71 …}
+awards: Doctrine\ORM\PersistentCollection {#1346 …}
+categories: Doctrine\ORM\PersistentCollection {#1823 …}
-id: 51
+apId: "piracy@lemmy.dbzer0.com"
+apProfileId: "https://lemmy.dbzer0.com/c/piracy"
+apPublicUrl: "https://lemmy.dbzer0.com/c/piracy"
+apFollowersUrl: "https://lemmy.dbzer0.com/c/piracy/followers"
+apInboxUrl: "https://lemmy.dbzer0.com/inbox"
+apDomain: "lemmy.dbzer0.com"
+apPreferredUsername: "piracy"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1708748229 {#269
date: 2024-02-24 05:17:09.0 +01:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1697197339 {#271
date: 2023-10-13 13:42:19.0 +02:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1915 …}
+slug: "checking-for-ip-leaks-using-Docker-Gluetun-and-qBittorrent"
+title: "checking for ip leaks using Docker, Gluetun and qBittorrent"
+url: null
+body: """
Hej everyone.\n
\n
Until now I’ve used a linux install and vpn software (airvpn and eddie) when sailing the high seas. While this works well enough, there is always room for improvement.\n
\n
I am in the process of setting up a docker stack which so far contains gluetun/airvpn and qbittorrent. Here is my compose file:\n
\n
```\n
\n
<span style="color:#323232;">version: "3"\n
</span><span style="color:#323232;">services:\n
</span><span style="color:#323232;"> gluetun:\n
</span><span style="color:#323232;"> image: qmcgaw/gluetun\n
</span><span style="color:#323232;"> container_name: gluetun\n
</span><span style="color:#323232;"> cap_add:\n
</span><span style="color:#323232;"> - NET_ADMIN\n
</span><span style="color:#323232;"> volumes:\n
</span><span style="color:#323232;"> - /appdata/gluetun:/gluetun\n
</span><span style="color:#323232;"> environment:\n
</span><span style="color:#323232;"> - VPN_SERVICE_PROVIDER=airvpn\n
</span><span style="color:#323232;"> - VPN_TYPE=wireguard\n
</span><span style="color:#323232;"> - WIREGUARD_PRIVATE_KEY=\n
</span><span style="color:#323232;"> - WIREGUARD_PRESHARED_KEY=\n
</span><span style="color:#323232;"> - WIREGUARD_ADDRESSES=10.188.90.221/32,fd7d:76ee:e68f:a993:63b2:6cc0:fe82:614b/128\n
</span><span style="color:#323232;"> - SERVER_COUNTRIES=\n
</span><span style="color:#323232;"> - FIREWALL_VPN_INPUT_PORTS=\n
</span><span style="color:#323232;"> ports:\n
</span><span style="color:#323232;"> - 8070:8070/tcp\n
</span><span style="color:#323232;"> - 60858:60858/tcp\n
</span><span style="color:#323232;"> - 60858:60858/udp\n
</span><span style="color:#323232;"> restart: unless-stopped\n
</span><span style="color:#323232;">\n
</span><span style="color:#323232;"> qbittorrent: \n
</span><span style="color:#323232;"> image: lscr.io/linuxserver/qbittorrent:latest\n
</span><span style="color:#323232;"> container_name: qbittorrent \n
</span><span style="color:#323232;"> network_mode: "service:gluetun" \n
</span><span style="color:#323232;"> environment: \n
</span><span style="color:#323232;"> - PUID=1000\n
</span><span style="color:#323232;"> - PGID=100\n
</span><span style="color:#323232;"> - TZ=Europe/Berlin\n
</span><span style="color:#323232;"> - WEBUI_PORT=8070 \n
</span><span style="color:#323232;"> volumes: \n
</span><span style="color:#323232;"> - /appdata/qbittorrent/config/:/config \n
</span><span style="color:#323232;"> - /data/videos/downloads:/downloads\n
</span><span style="color:#323232;"> depends_on:\n
</span><span style="color:#323232;"> - gluetun\n
</span><span style="color:#323232;"> restart: always\n
</span>\n
```\n
\n
My first problem was related to the ip adress. For some reason, when I use an IPV6 adress, I got this error in gluetun:\n
\n
```\n
\n
<span style="color:#323232;">2023-10-06T17:30:42Z ERROR VPN settings: Wireguard settings: interface address is IPv6 but IPv6 is not supported: address fd7d:76ee:e68f:a993:63b2:6cc0:fe82:614b/128\n
</span>\n
```\n
\n
Well, I removed that IPV6 and now everything works. Does anyone have a fix? :)\n
\n
Now for the *important* part. I tested the setup with a linux iso and to my surprise - everything works. When I used ipleak.net or other websites, these websites only detect the ip from my vpn. Great.\n
\n
**Do I need to take any other precautions?** I also bound the network interface tun0 in the qbit webui, just to be sure. When I stop the gluetun container, the webui stops working (as it should, but it is hard to check, if the download also stops). I’m just a bit paranoid because I don’t want to pay coin when downloading all the isos my heart desires.\n
\n
Thank you so much for any input!
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 0
+favouriteCount: 1
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1696613913 {#2414
date: 2023-10-06 19:38:33.0 +02:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#1884 …}
+votes: Doctrine\ORM\PersistentCollection {#1973 …}
+reports: Doctrine\ORM\PersistentCollection {#1959 …}
+favourites: Doctrine\ORM\PersistentCollection {#1927 …}
+notifications: Doctrine\ORM\PersistentCollection {#2442 …}
+badges: Doctrine\ORM\PersistentCollection {#2440 …}
+children: []
-id: 5679
-titleTs: "'check':1 'docker':6 'gluetun':7 'ip':3 'leak':4 'qbittorr':9 'use':5"
-bodyTs: "'-06':173 '-10':172 '/32':89 '/appdata/gluetun':70 '/appdata/qbittorrent/config':138 '/config':139 '/data/videos/downloads':140 '/downloads':141 '/gluetun':71 '/linuxserver/qbittorrent:latest':119 '10.188.90.221':88 '100':131 '1000':129 '2023':171 '3':57 '30':175 '42z':176 '60858':107,109 '60858/tcp':108 '60858/udp':110 '614b/128':97,199 '63b2':94,196 '6cc0':95,197 '76ee':91,193 '8070':105,136 '8070/tcp':106 'a993':93,195 'add':66 'address':87,183,191 'admin':68 'adress':155,164 'airvpn':14,76 'also':259,295 'alway':29,146 'anyon':210 'bit':301 'bound':260 'cap':65 'check':291 'coin':310 'compos':54 'contain':47,62,120,278 'countri':99 'depend':142 'desir':318 'detect':243 'docker':42 'download':294,312 'e68f':92,194 'eddi':16 'enough':26 'environ':72,127 'error':168,177 'europe/berlin':133 'everyon':2 'everyth':207,231 'far':46 'fd7d':90,192 'fe82':96,198 'file':55 'firewal':100 'first':148 'fix':213 'gluetun':59,64,126,144,170,277 'gluetun/airvpn':48 'got':166 'great':249 'hard':289 'heart':317 'hej':1 'high':20 'imag':60,116 'import':217 'improv':32 'input':102,325 'instal':10 'interfac':182,263 'ip':154,245 'ipleak.net':236 'ipv6':163,185,187,204 'iso':226,315 'key':82,85 'linux':9,225 'lscr.io':118 'lscr.io/linuxserver/qbittorrent:latest':117 'm':298 'mode':124 'much':322 'name':63,121 'need':252 'net':67 'network':123,262 'paranoid':302 'part':218 'pay':309 'pgid':130 'port':103,104,135 'precaut':257 'preshar':84 'privat':81 'problem':149 'process':37 'provid':75 'puid':128 'qbit':267 'qbittorr':50,115,122 'qmcgaw/gluetun':61 'reason':158 'relat':151 'remov':202 'restart':111,145 'room':30 'sail':18 'sea':21 'server':98 'servic':58,74,125 'set':39,179,181 'setup':222 'softwar':13 'stack':43 'stop':114,275,281,296 'support':190 'sure':272 'surpris':230 't17':174 'take':254 'test':220 'thank':319 'tun0':264 'type':78 'tz':132 'unless':113 'unless-stop':112 'use':7,161,235 've':6 'version':56 'volum':69,137 'vpn':12,73,77,101,178,248 'want':307 'websit':239,241 'webui':134,268,280 'well':25,200 'wireguard':79,80,83,86,180 'work':24,208,232,282"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1696613913
+visibility: "visible "
+apId: "https://feddit.de/post/4246785"
+editedAt: null
+createdAt: DateTimeImmutable @1696613913 {#1793
date: 2023-10-06 19:38:33.0 +02:00
}
} |
|
Show voter details
|
4 |
DENIED
|
moderate
|
App\Entity\Entry {#2419
+user: Proxies\__CG__\App\Entity\User {#1970 …}
+magazine: App\Entity\Magazine {#265
+icon: Proxies\__CG__\App\Entity\Image {#246 …}
+name: "piracy@lemmy.dbzer0.com"
+title: "piracy"
+description: """
##### ⚓ Community devoted to in-depth debate on topics concerning digital piracy, ethical problems, and legal advancements.\n
\n
---\n
\n
### Rules • [Full Version](https://rentry.co/piracy-rules)\n
\n
**1**. Posts must be related to the discussion of digital piracy\n
\n
**2**. Don’t request invites, trade, sell, or self-promote\n
\n
**3**. Don’t request or link to specific pirated titles, including DMs\n
\n
**4**. Don’t submit low-quality posts, be entitled, or harass others\n
\n
**5**. Don’t post questions already answered. READ THE [WIKI](https://lemmy.dbzer0.com/post/10901)\n
\n
---\n
\n
[](https://lemmy.dbzer0.com/post/10901)\n
---------------------------------------------------------------------------\n
\n
### Loot, Pillage, & Plunder\n
\n
- [📜 Megathread](https://rentry.co/megathread)\n
- [🪶 FAQ](https://rentry.co/piracy-faq)\n
- [🪶 ISP Complaints](https://rentry.co/piracy-isp-complaints)\n
- [🪶 Rules](https://rentry.co/piracy-rules)\n
\n
---\n
\n
💰 Please help cover server costs.\n
\n
[](https://ko-fi.com/dbzer0)[](https://liberapay.com/db0/)\n
\n
---
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 866
+entryCommentCount: 20194
+postCount: 7
+postCommentCount: 149
+isAdult: false
+customCss: null
+lastActive: DateTime @1729581369 {#275
date: 2024-10-22 09:16:09.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#237 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#233 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#222 …}
+entries: Doctrine\ORM\PersistentCollection {#180 …}
+posts: Doctrine\ORM\PersistentCollection {#138 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#200 …}
+bans: Doctrine\ORM\PersistentCollection {#117 …}
+reports: Doctrine\ORM\PersistentCollection {#103 …}
+badges: Doctrine\ORM\PersistentCollection {#81 …}
+logs: Doctrine\ORM\PersistentCollection {#71 …}
+awards: Doctrine\ORM\PersistentCollection {#1346 …}
+categories: Doctrine\ORM\PersistentCollection {#1823 …}
-id: 51
+apId: "piracy@lemmy.dbzer0.com"
+apProfileId: "https://lemmy.dbzer0.com/c/piracy"
+apPublicUrl: "https://lemmy.dbzer0.com/c/piracy"
+apFollowersUrl: "https://lemmy.dbzer0.com/c/piracy/followers"
+apInboxUrl: "https://lemmy.dbzer0.com/inbox"
+apDomain: "lemmy.dbzer0.com"
+apPreferredUsername: "piracy"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1708748229 {#269
date: 2024-02-24 05:17:09.0 +01:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1697197339 {#271
date: 2023-10-13 13:42:19.0 +02:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1915 …}
+slug: "checking-for-ip-leaks-using-Docker-Gluetun-and-qBittorrent"
+title: "checking for ip leaks using Docker, Gluetun and qBittorrent"
+url: null
+body: """
Hej everyone.\n
\n
Until now I’ve used a linux install and vpn software (airvpn and eddie) when sailing the high seas. While this works well enough, there is always room for improvement.\n
\n
I am in the process of setting up a docker stack which so far contains gluetun/airvpn and qbittorrent. Here is my compose file:\n
\n
```\n
\n
<span style="color:#323232;">version: "3"\n
</span><span style="color:#323232;">services:\n
</span><span style="color:#323232;"> gluetun:\n
</span><span style="color:#323232;"> image: qmcgaw/gluetun\n
</span><span style="color:#323232;"> container_name: gluetun\n
</span><span style="color:#323232;"> cap_add:\n
</span><span style="color:#323232;"> - NET_ADMIN\n
</span><span style="color:#323232;"> volumes:\n
</span><span style="color:#323232;"> - /appdata/gluetun:/gluetun\n
</span><span style="color:#323232;"> environment:\n
</span><span style="color:#323232;"> - VPN_SERVICE_PROVIDER=airvpn\n
</span><span style="color:#323232;"> - VPN_TYPE=wireguard\n
</span><span style="color:#323232;"> - WIREGUARD_PRIVATE_KEY=\n
</span><span style="color:#323232;"> - WIREGUARD_PRESHARED_KEY=\n
</span><span style="color:#323232;"> - WIREGUARD_ADDRESSES=10.188.90.221/32,fd7d:76ee:e68f:a993:63b2:6cc0:fe82:614b/128\n
</span><span style="color:#323232;"> - SERVER_COUNTRIES=\n
</span><span style="color:#323232;"> - FIREWALL_VPN_INPUT_PORTS=\n
</span><span style="color:#323232;"> ports:\n
</span><span style="color:#323232;"> - 8070:8070/tcp\n
</span><span style="color:#323232;"> - 60858:60858/tcp\n
</span><span style="color:#323232;"> - 60858:60858/udp\n
</span><span style="color:#323232;"> restart: unless-stopped\n
</span><span style="color:#323232;">\n
</span><span style="color:#323232;"> qbittorrent: \n
</span><span style="color:#323232;"> image: lscr.io/linuxserver/qbittorrent:latest\n
</span><span style="color:#323232;"> container_name: qbittorrent \n
</span><span style="color:#323232;"> network_mode: "service:gluetun" \n
</span><span style="color:#323232;"> environment: \n
</span><span style="color:#323232;"> - PUID=1000\n
</span><span style="color:#323232;"> - PGID=100\n
</span><span style="color:#323232;"> - TZ=Europe/Berlin\n
</span><span style="color:#323232;"> - WEBUI_PORT=8070 \n
</span><span style="color:#323232;"> volumes: \n
</span><span style="color:#323232;"> - /appdata/qbittorrent/config/:/config \n
</span><span style="color:#323232;"> - /data/videos/downloads:/downloads\n
</span><span style="color:#323232;"> depends_on:\n
</span><span style="color:#323232;"> - gluetun\n
</span><span style="color:#323232;"> restart: always\n
</span>\n
```\n
\n
My first problem was related to the ip adress. For some reason, when I use an IPV6 adress, I got this error in gluetun:\n
\n
```\n
\n
<span style="color:#323232;">2023-10-06T17:30:42Z ERROR VPN settings: Wireguard settings: interface address is IPv6 but IPv6 is not supported: address fd7d:76ee:e68f:a993:63b2:6cc0:fe82:614b/128\n
</span>\n
```\n
\n
Well, I removed that IPV6 and now everything works. Does anyone have a fix? :)\n
\n
Now for the *important* part. I tested the setup with a linux iso and to my surprise - everything works. When I used ipleak.net or other websites, these websites only detect the ip from my vpn. Great.\n
\n
**Do I need to take any other precautions?** I also bound the network interface tun0 in the qbit webui, just to be sure. When I stop the gluetun container, the webui stops working (as it should, but it is hard to check, if the download also stops). I’m just a bit paranoid because I don’t want to pay coin when downloading all the isos my heart desires.\n
\n
Thank you so much for any input!
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 0
+favouriteCount: 1
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1696613913 {#2414
date: 2023-10-06 19:38:33.0 +02:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#1884 …}
+votes: Doctrine\ORM\PersistentCollection {#1973 …}
+reports: Doctrine\ORM\PersistentCollection {#1959 …}
+favourites: Doctrine\ORM\PersistentCollection {#1927 …}
+notifications: Doctrine\ORM\PersistentCollection {#2442 …}
+badges: Doctrine\ORM\PersistentCollection {#2440 …}
+children: []
-id: 5679
-titleTs: "'check':1 'docker':6 'gluetun':7 'ip':3 'leak':4 'qbittorr':9 'use':5"
-bodyTs: "'-06':173 '-10':172 '/32':89 '/appdata/gluetun':70 '/appdata/qbittorrent/config':138 '/config':139 '/data/videos/downloads':140 '/downloads':141 '/gluetun':71 '/linuxserver/qbittorrent:latest':119 '10.188.90.221':88 '100':131 '1000':129 '2023':171 '3':57 '30':175 '42z':176 '60858':107,109 '60858/tcp':108 '60858/udp':110 '614b/128':97,199 '63b2':94,196 '6cc0':95,197 '76ee':91,193 '8070':105,136 '8070/tcp':106 'a993':93,195 'add':66 'address':87,183,191 'admin':68 'adress':155,164 'airvpn':14,76 'also':259,295 'alway':29,146 'anyon':210 'bit':301 'bound':260 'cap':65 'check':291 'coin':310 'compos':54 'contain':47,62,120,278 'countri':99 'depend':142 'desir':318 'detect':243 'docker':42 'download':294,312 'e68f':92,194 'eddi':16 'enough':26 'environ':72,127 'error':168,177 'europe/berlin':133 'everyon':2 'everyth':207,231 'far':46 'fd7d':90,192 'fe82':96,198 'file':55 'firewal':100 'first':148 'fix':213 'gluetun':59,64,126,144,170,277 'gluetun/airvpn':48 'got':166 'great':249 'hard':289 'heart':317 'hej':1 'high':20 'imag':60,116 'import':217 'improv':32 'input':102,325 'instal':10 'interfac':182,263 'ip':154,245 'ipleak.net':236 'ipv6':163,185,187,204 'iso':226,315 'key':82,85 'linux':9,225 'lscr.io':118 'lscr.io/linuxserver/qbittorrent:latest':117 'm':298 'mode':124 'much':322 'name':63,121 'need':252 'net':67 'network':123,262 'paranoid':302 'part':218 'pay':309 'pgid':130 'port':103,104,135 'precaut':257 'preshar':84 'privat':81 'problem':149 'process':37 'provid':75 'puid':128 'qbit':267 'qbittorr':50,115,122 'qmcgaw/gluetun':61 'reason':158 'relat':151 'remov':202 'restart':111,145 'room':30 'sail':18 'sea':21 'server':98 'servic':58,74,125 'set':39,179,181 'setup':222 'softwar':13 'stack':43 'stop':114,275,281,296 'support':190 'sure':272 'surpris':230 't17':174 'take':254 'test':220 'thank':319 'tun0':264 'type':78 'tz':132 'unless':113 'unless-stop':112 'use':7,161,235 've':6 'version':56 'volum':69,137 'vpn':12,73,77,101,178,248 'want':307 'websit':239,241 'webui':134,268,280 'well':25,200 'wireguard':79,80,83,86,180 'work':24,208,232,282"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1696613913
+visibility: "visible "
+apId: "https://feddit.de/post/4246785"
+editedAt: null
+createdAt: DateTimeImmutable @1696613913 {#1793
date: 2023-10-06 19:38:33.0 +02:00
}
} |
|
Show voter details
|
5 |
DENIED
|
edit
|
App\Entity\Magazine {#265
+icon: Proxies\__CG__\App\Entity\Image {#246 …}
+name: "piracy@lemmy.dbzer0.com"
+title: "piracy"
+description: """
##### ⚓ Community devoted to in-depth debate on topics concerning digital piracy, ethical problems, and legal advancements.\n
\n
---\n
\n
### Rules • [Full Version](https://rentry.co/piracy-rules)\n
\n
**1**. Posts must be related to the discussion of digital piracy\n
\n
**2**. Don’t request invites, trade, sell, or self-promote\n
\n
**3**. Don’t request or link to specific pirated titles, including DMs\n
\n
**4**. Don’t submit low-quality posts, be entitled, or harass others\n
\n
**5**. Don’t post questions already answered. READ THE [WIKI](https://lemmy.dbzer0.com/post/10901)\n
\n
---\n
\n
[](https://lemmy.dbzer0.com/post/10901)\n
---------------------------------------------------------------------------\n
\n
### Loot, Pillage, & Plunder\n
\n
- [📜 Megathread](https://rentry.co/megathread)\n
- [🪶 FAQ](https://rentry.co/piracy-faq)\n
- [🪶 ISP Complaints](https://rentry.co/piracy-isp-complaints)\n
- [🪶 Rules](https://rentry.co/piracy-rules)\n
\n
---\n
\n
💰 Please help cover server costs.\n
\n
[](https://ko-fi.com/dbzer0)[](https://liberapay.com/db0/)\n
\n
---
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 866
+entryCommentCount: 20194
+postCount: 7
+postCommentCount: 149
+isAdult: false
+customCss: null
+lastActive: DateTime @1729581369 {#275
date: 2024-10-22 09:16:09.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#237 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#233 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#222 …}
+entries: Doctrine\ORM\PersistentCollection {#180 …}
+posts: Doctrine\ORM\PersistentCollection {#138 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#200 …}
+bans: Doctrine\ORM\PersistentCollection {#117 …}
+reports: Doctrine\ORM\PersistentCollection {#103 …}
+badges: Doctrine\ORM\PersistentCollection {#81 …}
+logs: Doctrine\ORM\PersistentCollection {#71 …}
+awards: Doctrine\ORM\PersistentCollection {#1346 …}
+categories: Doctrine\ORM\PersistentCollection {#1823 …}
-id: 51
+apId: "piracy@lemmy.dbzer0.com"
+apProfileId: "https://lemmy.dbzer0.com/c/piracy"
+apPublicUrl: "https://lemmy.dbzer0.com/c/piracy"
+apFollowersUrl: "https://lemmy.dbzer0.com/c/piracy/followers"
+apInboxUrl: "https://lemmy.dbzer0.com/inbox"
+apDomain: "lemmy.dbzer0.com"
+apPreferredUsername: "piracy"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1708748229 {#269
date: 2024-02-24 05:17:09.0 +01:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1697197339 {#271
date: 2023-10-13 13:42:19.0 +02:00
}
} |
|
Show voter details
|