steini84

Community Developer
  • Posts

    434
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by steini84

  1. Hey guys

     

    I always had slow data rebuild and parity checks and just thought it was normal. Now I had a drive redball and according to the wiki it's probably a bad cable, smart checks are OK. I replaced the cable and now i'm doing a rebuild on the drive with 2477 minutes left @12MB/S.

     

    I have 9 data drives (mostly 2tb wd green), a cache drive and a 2tb parity drive.

    On the motherboard (ms-7125) i have 8 sata connections + a SIL sata card

    3gb ddr memory

    Powersuppy - Antec EA 500. 500w - +3.3V@24A, +5V@24A, +12V1@17A, +12V2@17A, [email protected], [email protected] - 5v 3,3v max load 130w +12v1 +12v2 max load 408w.

     

    Here is my syslog http://pastebin.com/hDK3Tybf and hopefully you guys can give me advice on what to upgrade/tweak :)

     

    Thanks

  2. Lets think about a scenario where a user would only want to tunnel two addresses through a tunnel. Everything else would go through the normal internet connection.

     

    Lets take an example where we only want to tunnel xbmc.org and lime-technology.com through the vpn.

     

    We would use your addon to connect to the vpn and we can see that our ip address changed. That is because our normal ip route is through the tunnel and in this scenario we don't want that.

     

    ip route delete "0.0.0.0/1"
    ip route delete "128.0.0.0/1"
    

     

    Now the ip address has changed back to the normal ISP ip address and nothing goes through the vpn.

     

    Now we need to find out the ip addresses of xbmc and lime-technology and we can just use ping:

    ping xbmc.org
    PING xbmc.org (205.251.128.242) 56(84) bytes of data.
    
    ping lime-technology.com
    PING lime-technology.com (216.119.154.106)
    

    Now that we have the ip addresses we can add them to the whitelist:

    (I like to replace the last part of the ip address with .0/24 to make sure i get all of the sites ip range)

     

    #           Destination           VPN tunnel (check address at the right bottom of "ip route show")               
    ip route add 205.251.128.0/24 via 10.200.4.1 dev tun0
    ip route add 216.119.154.0/24 via 10.200.4.1 dev tun0

     

    Now you can test using

    tracepath xbmc.org 
    tracepath google.com

    You can see that xbmc.org goes through the vpn but google goes through the router and ISP.

     

    These changes need to be typed in again if you disconnect/reconnect

     

  3. I'm interested in something similar. I'd like to only route traffic on certain ports through the vpn and have all other traffic go through the default ISP gateway. Is that possible?

     

    Found a solution:

    First i have to delete the default route:

    ip route delete "0.0.0.0/1"
    ip route delete "128.0.0.0/1"

     

    Then I can add the addresses that should go through the vpn tunnel:

    ip route add <Ip address> via <Ip address of vpn gateway> dev tun0

     

    It would be a really cool feature to add in the vpn plugin. I picture a advanced tap where it would say: "Route only specific ip addresses" and then a textbox where you could type in all the ip addresses ;)

  4. Hey guys

     

    I would like to be able to use a openvpn client on my unraid box but only route specific traffic through it. Everything would go through the normal network accept a short list of addresses that would go through the vpn connection.

     

    First off, is that possible? Does anyone have any guidelines for me how I could make this happen in Unraid?

     

    Secondly i was wondering about security. If i would leave the vpn connected am I compromising the security of the box? Could I be sharing my unraid web console etc with other users on the vpn (bought subscription)?

     

    [EDIT] Solved: see this thread http://lime-technology.com/forum/index.php?topic=19439.msg205060#msg205060

  5. The issue with cp has to do with timestamps iirc. I had this problem and it would only scan if i restarted cp. I also read that deleting some files and updating could fix this so I got the latest development from git and copied my settings to that one. Fixed that for me. Not sure if the devel has some fixes over the master branch, but at least this works for me now.

  6. Thank you so much for the answer, only saw your answer yesterday.

     

    I tried installing the utf-8 package and including export LANG=en_US.UTF-8 in the subsonic startup script but that did not do the trick.

     

    I´m using this guide:http://lime-technology.com/forum/index.php?action=printpage;topic=4700.0

     

    I will try again when i get back from work and will post if i get any results.

  7. Hey guys

     

    First off i would like to thank you all for the well written guides which have made my unraid server almost perfect.

     

    However i am always running into problems when it comes to non-US letters like ÁÆÞÖ. For example i cannot transfer files/folders containing these letters over sftp and the names are corrupt. Also i have noticed that subsonic leaves folders containing the letters out of the library.

     

    When i use Filezilla and force utf-8 i can read the names of the files and folders correctly, but transfer fails because it cannot find the folder when it wants to transfer.

     

    I have been reading about changing the whole server over to utf-8 by changing the locale, but i have not had any success in that.... and quite frankly dont know if that would solve my problems or create new ones.

     

    Do you guys have any ideas what i could do in the situation?