Gog

Members
  • Posts

    323
  • Joined

  • Last visited

Everything posted by Gog

  1. To debug my last problem, I ran the openvpn manually mith the same parameters as the delugeVPN init script to see the details of the error message like so: docker exec -it binhex-delugevpn bash /usr/bin/openvpn --cd /config/openvpn --config XXX.ovpn --dev tap0 --remote XXX.XXX.com 1194 --proto tcp --reneg-sec 0 --mute-replay-warnings --auth-nocache --keepalive 10 60
  2. Otherwise I get this error: But this modification was working prior to today's update, so I don't think that's the issue. My provider uses the same method. They include update-resolv script is in the same tarball as all the ovpn files. Here is mine #!/bin/bash # # Parses DHCP options from openvpn to update resolv.conf # To use set as 'up' and 'down' script in your openvpn *.conf: # up /etc/openvpn/update-resolv-conf # down /etc/openvpn/update-resolv-conf # # Used snippets of resolvconf script by Thomas Hood <[email protected]> # and Chris Hanson # Licensed under the GNU GPL. See /usr/share/common-licenses/GPL. # 07/2013 [email protected] Fixed intet name # 05/2006 [email protected] # # Example envs set from openvpn: # foreign_option_1='dhcp-option DNS 193.43.27.132' # foreign_option_2='dhcp-option DNS 193.43.27.133' # foreign_option_3='dhcp-option DOMAIN be.bnc.ch' # foreign_option_4='dhcp-option DOMAIN-SEARCH bnc.local' ## You might need to set the path manually here, i.e. RESOLVCONF=$(which resolvconf) case $script_type in up) for optionname in ${!foreign_option_*} ; do option="${!optionname}" echo $option part1=$(echo "$option" | cut -d " " -f 1) if [ "$part1" == "dhcp-option" ] ; then part2=$(echo "$option" | cut -d " " -f 2) part3=$(echo "$option" | cut -d " " -f 3) if [ "$part2" == "DNS" ] ; then IF_DNS_NAMESERVERS="$IF_DNS_NAMESERVERS $part3" fi if [[ "$part2" == "DOMAIN" || "$part2" == "DOMAIN-SEARCH" ]] ; then IF_DNS_SEARCH="$IF_DNS_SEARCH $part3" fi fi done R="" if [ "$IF_DNS_SEARCH" ]; then R="search " for DS in $IF_DNS_SEARCH ; do R="${R} $DS" done R="${R} " fi for NS in $IF_DNS_NAMESERVERS ; do R="${R}nameserver $NS " done #echo -n "$R" | $RESOLVCONF -x -p -a "${dev}" echo -n "$R" | $RESOLVCONF -a "${dev}.inet" ;; down) $RESOLVCONF -d "${dev}.inet" ;; esac # Workaround / [email protected] # force exit with no errors. Due to an apparent conflict with the Network Manager # $RESOLVCONF sometimes exits with error code 6 even though it has performed the # action correctly and OpenVPN shuts down. exit 0
  3. Upgraded last night and openVPN stopped initializing. The key line in the logs: Options error: Unrecognized option or missing or extra parameter(s) in #####.ovpn:20: script-security (2.4.0) Turns out my provider included this line in the .ovpn file: "script-security 3 system" And "system" is now deprecated. They released new versions of their .ovpn files some time ago with that correction, I just had to find out the hard way...
  4. Je suis francophone et utilisateur unraid de longue date. N'hésite pas a me contacter si la traduction cause probleme Sent from my SGH-I337M using Tapatalk
  5. Bonus points for relevance! Click that link and you'll be able to verify the effectiveness of the plugin... Sent from my SGH-I337M using Tapatalk
  6. This may not be a docker issue. Have you tried the Plex forums for help? Sent from my SGH-I337M using Tapatalk
  7. Never thought to look for something like that, thanks! Sent from my SGH-I337M using Tapatalk
  8. See, because of me your code is better. You should tank me... It works like a charm. I had already the new variable in (I saw yesterday's release and jumped the gun) and a simple upgrade had me up and running. Thanks!
  9. For Plex DVR, go to the plexpass forum, grab the version from the downloadable filenames and entre that value in the version field of the docker. Please don't post the version number here though. Sent from my SGH-I337M using Tapatalk
  10. I believe the web ui password is in web.conf. You might want to move your config folder content to a backup location, reinstall the docker, log in with "deluge", stop the docker and restore everything but the web.conf file. Sorry for the repeat post, but thought I would do it once in case it got lost in the shuffle. Anyone have an idea how I can disable/reset the WebGui password long enough for me to get it set back properly? Have you tried the default password which is "deluge"? If you've changed the password and need to reset it you can always delete the appdata folder and reinstall the container, password should then be set to default. There's probably some config file you can edit to change the password but I've never tried it so don't know which file.
  11. In the docker, I edited /root/iptable.sh /home/nobody/checkip.sh /home/nobody/getvpnip where I changed tun to tap and restarted the docker. VPN connects correctly, tap0 is visible, I can ping to 8.8.8.8 and to my local boxes, webUI works and the torrent download. Gog is a happy camper Would it be possible to add an environment vadiable like VPN_DEVICE_TYPE, set to tun or tap and use that variable in the scripts?
  12. I considered trying this but while researching it I found that: https://openvpn.net/index.php/open-source/faq/75-general/305-what-is-the-difference-between-a-tun-device-and-a-tap-device.html Tap is layer 2 and tun is layer 3. I'll try it later today but I'm sceptical. Where is the iptable config saved in the docker? I could try changing that if the tap->tun change doesn't work. G
  13. Good evening A while ago I configured a VM with deluge and VPN. I used ufw to limit traffic to the vpn interface and it works fine for me but it's still maintenance and disk space wo when I noticed this docker last week, I was eager to try. Without VPN enabled, the webUI works well; with VPN, no webUI. Supervisor logs look OK, no authentication failure but I noticed that this configures the IP tables with tun0 while ibvpn uses tap0. From my limited understanding of IPtables, I think that could prevent traffic from going to/from the vpn but my home subnet is still allowed. Anybody knows? debug logs: 2016-09-24 01:10:40,700 CRIT Set uid to user 0 2016-09-24 01:10:40,700 INFO Included extra file "/etc/supervisor/conf.d/delugevpn.conf" during parsing 2016-09-24 01:10:40,702 INFO supervisord started with pid 19 2016-09-24 01:10:41,704 INFO spawned: 'start-script' with pid 22 2016-09-24 01:10:41,704 INFO spawned: 'webui-script' with pid 23 2016-09-24 01:10:41,705 INFO spawned: 'deluge-script' with pid 24 2016-09-24 01:10:41,706 INFO spawned: 'privoxy-script' with pid 25 2016-09-24 01:10:41,710 DEBG 'privoxy-script' stdout output: [info] VPN is enabled, checking VPN tunnel local ip is valid 2016-09-24 01:10:41,710 INFO success: start-script entered RUNNING state, process has stayed up for > than 0 seconds (startsecs) 2016-09-24 01:10:41,710 INFO success: webui-script entered RUNNING state, process has stayed up for > than 0 seconds (startsecs) 2016-09-24 01:10:41,710 INFO success: deluge-script entered RUNNING state, process has stayed up for > than 0 seconds (startsecs) 2016-09-24 01:10:41,710 INFO success: privoxy-script entered RUNNING state, process has stayed up for > than 0 seconds (startsecs) 2016-09-24 01:10:41,711 DEBG 'start-script' stdout output: [info] VPN is enabled, beginning configuration of VPN 2016-09-24 01:10:41,711 DEBG 'deluge-script' stdout output: [info] deluge config file already exists, skipping copy 2016-09-24 01:10:41,712 DEBG 'deluge-script' stdout output: [info] VPN is enabled, checking VPN tunnel local ip is valid 2016-09-24 01:10:41,718 DEBG 'start-script' stdout output: [info] VPN provider defined as custom [debug] Environment variables defined as follows BASH=/bin/bash BASHOPTS=cmdhist:complete_fullquote:extquote:force_fignore:hostcomplete:interactive_comments:progcomp:promptvars:sourcepath BASH_ALIASES=() BASH_ARGC=() BASH_ARGV=() BASH_CMDS=() 2016-09-24 01:10:41,718 DEBG 'start-script' stdout output: BASH_LINENO=([0]="0") BASH_SOURCE=([0]="/root/start.sh") BASH_VERSINFO=([0]="4" [1]="3" [2]="42" [3]="1" [4]="release" [5]="x86_64-unknown-linux-gnu") BASH_VERSION='4.3.42(1)-release' DEBUG=true DIRSTACK=() ENABLE_PRIVOXY=no EUID=0 GROUPS=() HOME=/home/nobody HOSTNAME=c56305b6b988 HOSTTYPE=x86_64 HOST_OS=unRAID IFS=$' \t\n' LANG=en_GB.UTF-8 LAN_NETWORK=192.168.1.0/24 MACHTYPE=x86_64-unknown-linux-gnu OPTERR=1 OPTIND=1 OSTYPE=linux-gnu PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin PGID=100 PIPESTATUS=([0]="0") PPID=19 PS4='+ ' PUID=99 PWD=/ SHELL=/bin/bash SHELLOPTS=braceexpand:hashall:interactive-comments SHLVL=2 STRONG_CERTS=no SUPERVISOR_ENABLED=1 SUPERVISOR_GROUP_NAME=start-script SUPERVISOR_PROCESS_NAME=start-script TERM=xterm TZ=America/New_York UID=0 VPN_CONFIG=/config/openvpn/ua1.ovpn VPN_ENABLED=yes VPN_PASS=XXXXXXX VPN_PORT=1194 VPN_PROTOCOL=tcp VPN_PROV=custom VPN_REMOTE=ua1.ibvpn.com VPN_USER=XXXXXXX _='[debug] Environment variables defined as follows' [info] VPN config file (ovpn extension) is located at /config/openvpn/ua1.ovpn 2016-09-24 01:10:41,719 DEBG 'start-script' stdout output: [info] Env vars defined via docker -e flags for remote host, port and protocol, writing values to ovpn file... 2016-09-24 01:10:41,725 DEBG 'start-script' stdout output: [debug] Contents of ovpn file /config/openvpn/ua1.ovpn as follows... 2016-09-24 01:10:41,726 DEBG 'start-script' stdout output: auth-user-pass credentials.conf up 'client.up' down 'client.down' link-mtu 1578 dev tap server-poll-timeout 20 client nobind resolv-retry infinite auth-retry nointeract persist-key mute-replay-warnings comp-lzo verb 3 mute 20 ns-cert-type server route-method exe route-delay 2 script-security 3 system reneg-sec 0 <ca> -----BEGIN CERTIFICATE----- MIIDeDCCAuGgAwIBAgIJAMVKgpjMPUfxMA0GCSqGSIb3DQEBBQUAMIGFMQswCQYD VQQGEwJVUzELMAkGA1UECBMCQ0ExFTATBgNVBAcTDFNhbkZyYW5jaXNjbzEVMBMG A1UEChMMRm9ydC1GdW5zdG9uMRgwFgYDVQQDEw9Gb3J0LUZ1bnN0b24gQ0ExITAf BgkqhkiG9w0BCQEWEm1lQG15aG9zdC5teWRvbWFpbjAeFw0xMDA3MjExOTU5MzVa Fw0yMDA3MTgxOTU5MzVaMIGFMQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ0ExFTAT BgNVBAcTDFNhbkZyYW5jaXNjbzEVMBMGA1UEChMMRm9ydC1GdW5zdG9uMRgwFgYD VQQDEw9Gb3J0LUZ1bnN0b24gQ0ExITAfBgkqhkiG9w0BCQEWEm1lQG15aG9zdC5t eWRvbWFpbjCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAz23m3BXY5Asiw8Dx T4F6feqsp+pIx6ivftTniyUCbSAxI1J1s1x75DzxmUpIwPu5xavzgPXgZr8FT81X JGqF9km4AE95iddJawKx0wNgdTo7GximQq9rw0dsQIB5hZZQ9TJwHC3VOnmEic5A OawKOCybMcRs8saLakZOgh7Xc+UCAwEAAaOB7TCB6jAdBgNVHQ4EFgQUeRhE2N4l XwL4H1dbjkZ4ou6fj3AwgboGA1UdIwSBsjCBr4AUeRhE2N4lXwL4H1dbjkZ4ou6f j3ChgYukgYgwgYUxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTEVMBMGA1UEBxMM U2FuRnJhbmNpc2NvMRUwEwYDVQQKEwxGb3J0LUZ1bnN0b24xGDAWBgNVBAMTD0Zv cnQtRnVuc3RvbiBDQTEhMB8GCSqGSIb3DQEJARYSbWVAbXlob3N0Lm15ZG9tYWlu ggkAxUqCmMw9R/EwDAYDVR0TBAUwAwEB/zANBgkqhkiG9w0BAQUFAAOBgQASt0pl WzVseQLTNM8Mlgw4ZnGAv/x2xnijmMqrkE+F7pnaOicGpxgCfMKzjZuJu0TNJqF2 fibE7GhMdomD4dLFgIu8Wb5E7iQ1CSBEOGumRhK8qCsDzjr7WXUdhqA6Xvo+ylU6 DMzy0Wn3NNvfGC+qxOgybYCJwDnVPi0CEDSbzQ== -----END CERTIFICATE----- </ca> 2016-09-24 01:10:41,726 DEBG 'start-script' stdout output: [info] VPN provider remote gateway defined as ua1.ibvpn.com [info] VPN provider remote port defined as 1194 [info] VPN provider remote protocol defined as tcp 2016-09-24 01:10:41,730 DEBG 'start-script' stdout output: [info] VPN provider username defined as XXXXXXX 2016-09-24 01:10:41,732 DEBG 'start-script' stdout output: [warn] Username contains characters which could cause authentication issues, please consider changing this if possible 2016-09-24 01:10:41,734 DEBG 'start-script' stdout output: [info] VPN provider password defined as XXXXXXX 2016-09-24 01:10:41,746 DEBG 'start-script' stdout output: [info] Default route for container is 172.17.0.1 2016-09-24 01:10:41,750 DEBG 'start-script' stdout output: [info] Setting permissions recursively on /config/openvpn... 2016-09-24 01:10:41,756 DEBG 'start-script' stdout output: [info] Adding 192.168.1.0/24 as route via docker eth0 2016-09-24 01:10:41,756 DEBG 'start-script' stdout output: [info] ip route defined as follows... -------------------- 2016-09-24 01:10:41,756 DEBG 'start-script' stdout output: default via 172.17.0.1 dev eth0 172.17.0.0/16 dev eth0 proto kernel scope link src 172.17.0.12 192.168.1.0/24 via 172.17.0.1 dev eth0 2016-09-24 01:10:41,757 DEBG 'start-script' stdout output: -------------------- 2016-09-24 01:10:41,758 DEBG 'start-script' stdout output: [debug] Modules currently loaded for kernel 2016-09-24 01:10:41,759 DEBG 'start-script' stdout output: Module Size Used by xt_nat 1849 16 veth 4665 0 xt_CHECKSUM 1271 1 iptable_mangle 1592 2 ipt_MASQUERADE 1213 20 nf_nat_masquerade_ipv4 1865 1 ipt_MASQUERADE iptable_nat 1831 1 nf_nat_ipv4 4327 1 iptable_nat nf_nat 9852 3 nf_nat_ipv4,xt_nat,nf_nat_masquerade_ipv4 nf_conntrack_ipv4 5810 3 ipt_REJECT 1457 2 nf_reject_ipv4 2419 1 ipt_REJECT ebtable_filter 1839 0 ebtables 14232 1 ebtable_filter iptable_filter 1528 2 ip_tables 9422 3 iptable_filter,iptable_mangle,iptable_nat vhost_net 8037 0 tun 16556 2 vhost_net vhost 13029 1 vhost_net macvtap 9551 1 vhost_net macvlan 11993 1 macvtap md_mod 36275 9 fbcon 33163 70 bitblit 4297 1 fbcon fbcon_rotate 1900 1 bitblit fbcon_ccw 4678 1 fbcon_rotate fbcon_ud 4741 1 fbcon_rotate fbcon_cw 4542 1 fbcon_rotate softcursor 1277 4 fbcon_cw,fbcon_ud,fbcon_ccw,bitblit ast 40712 1 font 7524 1 fbcon drm_kms_helper 75196 1 ast cfbfillrect 3242 1 drm_kms_helper cfbimgblt 1983 1 drm_kms_helper cfbcopyarea 2942 1 drm_kms_helper ttm 60280 1 ast drm 216679 4 ast,ttm,drm_kms_helper x86_pkg_temp_thermal 4669 0 coretemp 5276 0 kvm_intel 142211 0 agpgart 21186 2 drm,ttm syscopyarea 2878 1 drm_kms_helper sysfillrect 3114 1 drm_kms_helper sysimgblt 1983 1 drm_kms_helper fb_sys_fops 1314 1 drm_kms_helper i2c_i801 10759 0 kvm 268324 1 kvm_intel ahci 26003 5 fb 29432 7 fbcon,fbcon_cw,fbcon_ud,drm_kms_helper,softcursor,fbcon_ccw,bitblit fbdev 966 2 fb,fbcon libahci 19067 1 ahci mpt3sas 165336 5 igb 124209 0 ptp 8988 1 igb pps_core 5864 1 ptp i2c_algo_bit 4624 2 ast,igb sata_mv 23743 1 raid_class 3316 1 mpt3sas i2c_core 18064 6 ast,drm,igb,i2c_i801,drm_kms_helper,i2c_algo_bit scsi_transport_sas 21365 1 mpt3sas ipmi_si 36527 0 2016-09-24 01:10:41,760 DEBG 'start-script' stdout output: [info] iptable_mangle support detected, adding fwmark for tables 2016-09-24 01:10:41,779 DEBG 'start-script' stdout output: [info] iptables defined as follows... -------------------- 2016-09-24 01:10:41,779 DEBG 'start-script' stdout output: -P INPUT DROP -P FORWARD ACCEPT -P OUTPUT DROP -A INPUT -i tun0 -j ACCEPT -A INPUT -s 172.17.0.0/16 -d 172.17.0.0/16 -j ACCEPT -A INPUT -i eth0 -p tcp -m tcp --sport 1194 -j ACCEPT -A INPUT -i eth0 -p tcp -m tcp --dport 8112 -j ACCEPT -A INPUT -i eth0 -p tcp -m tcp --sport 8112 -j ACCEPT -A INPUT -s 192.168.1.0/24 -i eth0 -p tcp -m tcp --dport 58846 -j ACCEPT -A INPUT -p udp -m udp --sport 53 -j ACCEPT -A INPUT -p icmp -m icmp --icmp-type 0 -j ACCEPT -A INPUT -i lo -j ACCEPT -A OUTPUT -o tun0 -j ACCEPT -A OUTPUT -s 172.17.0.0/16 -d 172.17.0.0/16 -j ACCEPT -A OUTPUT -o eth0 -p tcp -m tcp --dport 1194 -j ACCEPT -A OUTPUT -o eth0 -p tcp -m tcp --dport 8112 -j ACCEPT -A OUTPUT -o eth0 -p tcp -m tcp --sport 8112 -j ACCEPT -A OUTPUT -d 192.168.1.0/24 -o eth0 -p tcp -m tcp --sport 58846 -j ACCEPT -A OUTPUT -p udp -m udp --dport 53 -j ACCEPT -A OUTPUT -p icmp -m icmp --icmp-type 8 -j ACCEPT -A OUTPUT -o lo -j ACCEPT 2016-09-24 01:10:41,779 DEBG 'start-script' stdout output: -------------------- 2016-09-24 01:10:41,779 DEBG 'start-script' stdout output: [info] nameservers 2016-09-24 01:10:41,780 DEBG 'start-script' stdout output: nameserver 8.8.8.8 nameserver 8.8.4.4 2016-09-24 01:10:41,780 DEBG 'start-script' stdout output: -------------------- [info] Starting OpenVPN... 2016-09-24 01:10:41,782 DEBG 'start-script' stdout output: Sat Sep 24 01:10:41 2016 OpenVPN 2.3.11 x86_64-unknown-linux-gnu [sSL (OpenSSL)] [LZO] [EPOLL] [MH] [iPv6] built on May 12 2016 Sat Sep 24 01:10:41 2016 library versions: OpenSSL 1.0.2h 3 May 2016, LZO 2.09 Sat Sep 24 01:10:41 2016 WARNING: file 'credentials.conf' is group or others accessible 2016-09-24 01:10:41,782 DEBG 'start-script' stdout output: Sat Sep 24 01:10:41 2016 NOTE: the current --script-security setting may allow this configuration to call user-defined scripts 2016-09-24 01:10:41,782 DEBG 'start-script' stdout output: Sat Sep 24 01:10:41 2016 WARNING: normally if you use --mssfix and/or --fragment, you should also set --tun-mtu 1500 (currently it is 1502) 2016-09-24 01:10:41,782 DEBG 'start-script' stdout output: Sat Sep 24 01:10:41 2016 Socket Buffers: R=[87380->87380] S=[65536->65536] 2016-09-24 01:10:41,846 DEBG 'start-script' stdout output: Sat Sep 24 01:10:41 2016 Attempting to establish TCP connection with [AF_INET]91.231.84.93:1194 [nonblock] 2016-09-24 01:10:42,846 DEBG 'start-script' stdout output: Sat Sep 24 01:10:42 2016 TCP connection established with [AF_INET]91.231.84.93:1194 Sat Sep 24 01:10:42 2016 TCPv4_CLIENT link local: [undef] Sat Sep 24 01:10:42 2016 TCPv4_CLIENT link remote: [AF_INET]91.231.84.93:1194 2016-09-24 01:10:43,014 DEBG 'start-script' stdout output: Sat Sep 24 01:10:43 2016 TLS: Initial packet from [AF_INET]91.231.84.93:1194, sid=6987021e b4fea3ee 2016-09-24 01:10:43,559 DEBG 'start-script' stdout output: Sat Sep 24 01:10:43 2016 VERIFY OK: depth=1, C=US, ST=CA, L=SanFrancisco, O=Fort-Funston, CN=Fort-Funston CA, [email protected] 2016-09-24 01:10:43,559 DEBG 'start-script' stdout output: Sat Sep 24 01:10:43 2016 VERIFY OK: nsCertType=SERVER Sat Sep 24 01:10:43 2016 VERIFY OK: depth=0, C=US, ST=CA, L=SanFrancisco, O=Fort-Funston, CN=server, [email protected] 2016-09-24 01:10:44,159 DEBG 'start-script' stdout output: Sat Sep 24 01:10:44 2016 WARNING: 'link-mtu' is used inconsistently, local='link-mtu 1578', remote='link-mtu 1576' Sat Sep 24 01:10:44 2016 WARNING: 'tun-mtu' is used inconsistently, local='tun-mtu 1534', remote='tun-mtu 1532' 2016-09-24 01:10:44,159 DEBG 'start-script' stdout output: Sat Sep 24 01:10:44 2016 Data Channel Encrypt: Cipher 'BF-CBC' initialized with 128 bit key Sat Sep 24 01:10:44 2016 Data Channel Encrypt: Using 160 bit message hash 'SHA1' for HMAC authentication Sat Sep 24 01:10:44 2016 Data Channel Decrypt: Cipher 'BF-CBC' initialized with 128 bit key Sat Sep 24 01:10:44 2016 Data Channel Decrypt: Using 160 bit message hash 'SHA1' for HMAC authentication Sat Sep 24 01:10:44 2016 Control Channel: TLSv1.2, cipher TLSv1/SSLv3 DHE-RSA-AES256-GCM-SHA384, 1024 bit RSA Sat Sep 24 01:10:44 2016 [server] Peer Connection Initiated with [AF_INET]91.231.84.93:1194 2016-09-24 01:10:46,681 DEBG 'start-script' stdout output: Sat Sep 24 01:10:46 2016 SENT CONTROL [server]: 'PUSH_REQUEST' (status=1) 2016-09-24 01:10:47,055 DEBG 'start-script' stdout output: Sat Sep 24 01:10:47 2016 PUSH: Received control message: 'PUSH_REPLY,show-net-up,route-gateway 10.10.20.1,ping 10,ping-restart 60,redirect-gateway def1,dhcp-option DNS 1.2.3.4,ifconfig 10.10.20.2 255.255.255.0' Sat Sep 24 01:10:47 2016 Options error: Unrecognized option or missing parameter(s) in [PUSH-OPTIONS]:1: show-net-up (2.3.11) Sat Sep 24 01:10:47 2016 OPTIONS IMPORT: timers and/or timeouts modified Sat Sep 24 01:10:47 2016 OPTIONS IMPORT: --ifconfig/up options modified Sat Sep 24 01:10:47 2016 OPTIONS IMPORT: route options modified Sat Sep 24 01:10:47 2016 OPTIONS IMPORT: route-related options modified Sat Sep 24 01:10:47 2016 OPTIONS IMPORT: --ip-win32 and/or --dhcp-option options modified 2016-09-24 01:10:47,055 DEBG 'start-script' stdout output: Sat Sep 24 01:10:47 2016 ROUTE_GATEWAY 172.17.0.1/255.255.0.0 IFACE=eth0 HWADDR=02:42:ac:11:00:0c Sat Sep 24 01:10:47 2016 TUN/TAP device tap0 opened Sat Sep 24 01:10:47 2016 TUN/TAP TX queue length set to 100 Sat Sep 24 01:10:47 2016 do_ifconfig, tt->ipv6=0, tt->did_ifconfig_ipv6_setup=0 Sat Sep 24 01:10:47 2016 /usr/bin/ip link set dev tap0 up mtu 1502 2016-09-24 01:10:47,056 DEBG 'start-script' stdout output: Sat Sep 24 01:10:47 2016 /usr/bin/ip addr add dev tap0 10.10.20.2/24 broadcast 10.10.20.255 2016-09-24 01:10:47,056 DEBG 'start-script' stdout output: Sat Sep 24 01:10:47 2016 client.up tap0 1502 1578 10.10.20.2 255.255.255.0 init 2016-09-24 01:10:49,062 DEBG 'start-script' stdout output: Sat Sep 24 01:10:49 2016 /usr/bin/ip route add 91.231.84.93/32 via 172.17.0.1 2016-09-24 01:10:49,062 DEBG 'start-script' stdout output: Sat Sep 24 01:10:49 2016 /usr/bin/ip route add 0.0.0.0/1 via 10.10.20.1 2016-09-24 01:10:49,063 DEBG 'start-script' stdout output: Sat Sep 24 01:10:49 2016 /usr/bin/ip route add 128.0.0.0/1 via 10.10.20.1 2016-09-24 01:10:49,063 DEBG 'start-script' stdout output: Sat Sep 24 01:10:49 2016 Initialization Sequence Completed
  14. I tried to create custom profiles a while back. I came to the conclusion that you can only use the built in profiles with the CLI. Language handling is also annoying this way. I keep French and English main tracks and gave up to automating that part. Sent from my SGH-I337M using Tapatalk
  15. Deleted because I should reread previous page before posting...
  16. It looks like you are backuping in the docker image and its filled up. Can you show a screenshot of your crashplan docker settings and your crashplan application backup destination? Sent from my SGH-I337M using Tapatalk
  17. disabling and enabling VMs in the VM manager settings did the trick. weird...
  18. Hi VM manager is enabled, KVM is running but my xubuntu VM is just gone from the unraid admin pages. The files are still on disk, last modified date is yesterday evening but it's like unraid completely forgot about them. I upgraded unraid and all the plugins recently (days ago, I forget exactly when). I'm on 6.1.9 now. Nothing odd about the upgrade except that I had to reenable VM manager. I know I stopped/started the array yesterday to change the DNS server, my ISP's DNS was playing tricks on me so I switched to google. It must be then that the VM did not come back up but I did not notice. Any idea what could have happened and how I could recover my config? Thanks
  19. Finally nuked the VM. There wasn't much on it and a few other things were bugging me. Starting fresh.
  20. Hi Disclaimer: I've been a linux user for a few decades but I'm no admin by any stretch of the imagination. This is on a Xubuntu VM I built a few months ago. I'm trying to increase the space allocated to the VM. I did the resize like so:"qemu-img resize vdisk1.img +5G" and I modified the partitions with gparted so that I now have more space available in the partition. But if I do df -h, the size of / is still at 8.5GB. There is another 3GB free on that partition. How do I make it usable in "/dev/mapper/xubuntu--vg-root"? Filesystem Size Used Avail Use% Mounted on udev 234M 12K 234M 1% /dev tmpfs 49M 872K 49M 2% /run /dev/mapper/xubuntu--vg-root 8.5G 7.5G 621M 93% / none 4.0K 0 4.0K 0% /sys/fs/cgroup none 5.0M 0 5.0M 0% /run/lock none 245M 200K 245M 1% /run/shm none 100M 40K 100M 1% /run/user /dev/vda1 1.3G 443M 754M 38% /boot lsblk NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT sr0 11:0 1 949M 0 rom vda 253:0 0 15G 0 disk ├─vda1 253:1 0 1.3G 0 part /boot ├─vda2 253:2 0 1K 0 part └─vda5 253:5 0 13.7G 0 part ├─xubuntu--vg-root (dm-0) 252:0 0 8.8G 0 lvm / └─xubuntu--vg-swap_1 (dm-1) 252:1 0 1G 0 lvm [sWAP] What am I missing? Thanks
  21. Hi Bombz I love how PlexPy presents the data. it's only monitoring though. I believe Plex has a beta version out there with bandwidth control but I haven't really looked into it. First step is to get the docker running. See the Wiki here: http://lime-technology.com/wiki/index.php/UnRAID_6/Docker_Management You should be using a cache drive with "cache-only" settings for this but if you run plex you're probably played with this already. Second, you need a way to find the correct docker. I strongly recommend installing the "community applications" plugin here: http://lime-technology.com/forum/index.php?topic=40262.0 Search for plexpy in the "app store" and add the docker. You will need to create a config directory for your new plexPy docker and point plexpy to your plex log directory. It's pretty straightforward once you're in the docker creation page but I can paste a screenshot if you need it. Good luck and enjoy
  22. I had to change IP on my unraid server today and when reinitializing the docker, I get this: root@localhost:# /usr/local/emhttp/plugins/dynamix.docker.manager/scripts/docker run -d --name="plexpy" --net="bridge" -e PUID="99" -e PGID="100" -e TZ="America/New_York" -p 8181:8181/tcp -v "/mnt/cache/cache_only/appdata/plexmediaserver/Library/Application Support/Plex Media Server/Logs/":"/logs":ro -v "/mnt/cache/cache_only/appdata/plexpy/":"/config":rw linuxserver/plexpy 63ff9224a207c2dd8a5e0e0f2bcab0d09ae54c33ce8dfb88acf710596ac3d21d Error response from daemon: Cannot start container 63ff9224a207c2dd8a5e0e0f2bcab0d09ae54c33ce8dfb88acf710596ac3d21d: Error starting userland proxy: listen tcp 192.168.1.74:8181: bind: cannot assign requested address The command failed. 192.168.1.74 is the old IP. I don't think this is specifically a plexpy issue but I'm starting here. I reinstalled the docker, I wiped my config directory, nothing changed. I grepped for that IP in my config directory and in the dockerman directory, no hit. Where is that IP coming from?
  23. Couldn't experiment on this last night, apparently plex watching is a requirement to gift wrapping sessions I get the same ping time, around 0.02 when I use .74 or .111 My plex users are rioting... I give up, I'm switching to .111 and rebuilding. I'll go one "feature" at a time, hopefully I'll be able to pinpoint the trigger if it happens again. thanks for trying.
  24. Hi Peter Yes, it can ping itself. I rebooted the gateway yesterday and the switch and wireless APs this morning, no change root@Tower:/# ping 192.168.1.74 PING 192.168.1.74 (192.168.1.74) 56(84) bytes of data. 64 bytes from 192.168.1.74: icmp_seq=1 ttl=64 time=0.020 ms 64 bytes from 192.168.1.74: icmp_seq=2 ttl=64 time=0.014 ms 64 bytes from 192.168.1.74: icmp_seq=3 ttl=64 time=0.025 ms 64 bytes from 192.168.1.74: icmp_seq=4 ttl=64 time=0.024 ms ^C --- 192.168.1.74 ping statistics --- 4 packets transmitted, 4 received, 0% packet loss, time 2999ms rtt min/avg/max/mdev = 0.014/0.020/0.025/0.007 ms root@Tower:/# ping tower PING Tower (127.0.0.1) 56(84) bytes of data. 64 bytes from Tower (127.0.0.1): icmp_seq=1 ttl=64 time=0.019 ms 64 bytes from Tower (127.0.0.1): icmp_seq=2 ttl=64 time=0.024 ms 64 bytes from Tower (127.0.0.1): icmp_seq=3 ttl=64 time=0.025 ms 64 bytes from Tower (127.0.0.1): icmp_seq=4 ttl=64 time=0.025 ms 64 bytes from Tower (127.0.0.1): icmp_seq=5 ttl=64 time=0.024 ms ^C --- Tower ping statistics --- 5 packets transmitted, 5 received, 0% packet loss, time 3999ms rtt min/avg/max/mdev = 0.019/0.023/0.025/0.004 ms