728x90

토렌트를 vpn을 결합해서 구동할수 있다.

 

도커 이미지는 haugene/transmission-openvpn

vpn은 이전 구매한 VPNunlimited

 

내가 구매한 VPNunlimited (lift time)

https://www.keepsolid.com/

 

KEEPSOLID Company - Productivity & Security Solutions

KeepSolid provides top-notch ✔️productivity and ✔️privacy solutions used by millions globally 🌍Ensure online security and simplify business and everyday routines with us!

www.keepsolid.com

여기서 VPN 정보 셋팅

셋팅 후 ovpn 설정파일이 다운로드 된다.

dfjkdfjklfdijfff_ca-tr_openvpn.ovpn

 

docker-compose.yml로 transmission-openvpn 구동

version: '2'
services:
 transmission:
  image: haugene/transmission-openvpn
  cap_add:
    - NET_ADMIN
  devices:
    - /dev/net/tun
  restart: always
  ports:
    - "9091:9091"
  volumes:
    - ./data/:/data # where transmission will store the data
    - ./config/:/config # where transmission-home is stored
    - ./openvpn/:/etc/openvpn/custom #다운로드받은 인증서파일 위치
  environment:
    - TZ=Asia/Seoul
    - OPENVPN_PROVIDER=CUSTOM
    - OPENVPN_CONFIG=D8D8B16A-F982-4ED4-A7CD-5A71723A2086_ca-tr_openvpn #다운로드받은 인증서 파일명 확장자(.ovpn)제외
    - OPENVPN_USERNAME=VPN인증서USERNAME
    - OPENVPN_PASSWORD=VPN인증서PASSWORD
    - OPENVPN_OPTS=--inactive 3600 --ping 10 --ping-exit 60
    - LOCAL_NETWORK=192.168.0.0/24
    - TRANSMISSION_RPC_USERNAME=TRANSMISSION유저아이디지정
    - TRANSMISSION_RPC_PASSWORD=TRANSMISSION유저암호지정
    - TRANSMISSION_RPC_AUTHENTICATION_REQUIRED=true

 

실제 vpn으로 transmission이 구동되는지 확인

https://ipleak.net

 

IP/DNS Detect

What is your IP, what is your DNS, check your torrent IP, what informations you send to websites.

ipleak.net

해당 사이트에서 Activate > this Magnet Link 복사

 

https://nordvpn.com/ko/ip-lookup/  에서 해당 아이피 확인

 

728x90

'Server > Application' 카테고리의 다른 글

docker-compose guacamole + tailscale  (0) 2023.12.21
APM scouter-server 및 scouter-paper 설치  (0) 2023.04.06
Zabbix - 오픈 소스 모니터링 (Tomcat)  (0) 2023.04.05
FeatherWiki  (0) 2023.04.03
tiddlyhost - tiddlywiki - FeatherWiki  (0) 2023.04.03

+ Recent posts