Category: Mikael’s thoughts

Liv om livet i hvalsø som det udarter sig hen ad vejen

  • Haro LT Pro 24″ Cruiser specs

    Haro LT Pro 24″ Cruiser specs

    The 2014 Haro Race LT Pro 24″ cruiser bike features a

    • 7005 series aluminum frame with triple-butted top and downtubes, integrated headtube
    • 1-1/8″ chromoly fork, Haro alloy frontload stem
    • 5.25″ chromoly bars
    • micro knurled grips
    • alloy V-brake and lever
    • 175mm chromoly 3-pc cranks with sealed Euro BB
    • 40T alloy sprocket, 3/8″ sealed cassette hub with 18T cog
    • 3/8″ sealed front hub
    • 36H Alienation PBR 24″ rims
    • 24×1.75″ Kenda Konversion tires
    • Haro Pivotal seat and alloy platform pedals.

    21.75″ Toptube. (23.3 lbs)

  • Equallogic sizing – No Lefthand work here

    Equallogic sizing – No Lefthand work here

    In my current role within Dell I do pick up a lot of info about customer systems. Usually I get involved when performance is lagging and customers are complaining. From there I have to educate both the customer and the Dell force, in how to size a Equallogic array properly.

    Denmark being a small country, most of the Equallogic installations are in the 2-3 arrays size, and due to the customer size it is not easy to add extra arrays as we want. So getting the sizing right from the beginning is cruzial. After we got the hybrid arrays in the Equallogic range, they are properly the most sold type right after the NL-SAS based ones.

    So down to SMB sizing of Equallogic; From a Compellent perspective, and a rule of thumb from those systems, we need to get the SSD layer sized properly and not oversubscribe the NL-SAS based PSxxxxE arrays. Compellent uses 20% of all performance should come from Tier-3 (Typical NL-SAS), and all writes should be efficiently handled by Tier-1 (Write-Inensive SSD’s). From my point of view, we can transfer those rules easily to Equallogic sizing.

    Equallogic
    3 array system

     

     

     

    • The top system in this picture is a PS6110XV with 24x300GB 15K drives in Raid-10
    • The middle system is a PS6110X with 24x600GB 10K drives in raid-10.
    • Last system is a PS4110E with 12x2TB 7.2K drives in raid-50.

    As You might notice 62% of all space is on the PS4110E, and with Equallogic capacity loadbalancing kickin in, it means 62% of every volume resides on the slowest drives. In this case we have 38% of volumes on somewhat fast drives, and with a normal read-write ratio of 70/30 this should be fairly ok. Only comment here was to have 15K drives on 2 arrays and 600GB drives, which should add up to 40% of the combined storage. This customer, did choose to separate the volumes, so some of them only reside on the XV + the E array. For these volumes the capacity loadbalancing was way off, with a 13% of volume space on the XV and 87% on the E. No wonder this costumer complained about performance issues.

    Back to sizing with hybrids: In many cases we have sold the popular PS6210XS with 9TB capacity, together with a PS4110E with 2TB or larger drives. In this scenario we have roughly 40% on the XS, about 20% of this space is on the SSD’s. This also translates into approx 2TB SSD capacity for a 25TB system, which is way under the rules stated at the beginning.

    So get a proper 25TB Equallogic system with more than 10.000 iops, we will need to use the following

    • A PS6210XS with 18TB capacity, it has 7*800GB SSD, and 17×1.2TB 10K drives.
    • A PS4110E with 12x1TB disks, in a RAID-50, this gives us a little more than 7TB space.

    This would means that 4TB SSD space can be used automatically as Tier-1, rest of the 10K drives in the XS array is considered as Tier-2, and the remaining space on the E array is tier-3. And Tier-3 space is only approx 30% of the total capacity.

    So what about those large 2,3,4TB drives ? Never place them in the same pool as a hybrid, your capacity scaling will be way off. But create a separate low-performance pool for the volumes that do not need more performance than the NL-SAS drives provide.

    If your unsure which volumes can be placed in which pools, do consider running a Dpack performance gathering tool, together with you Dell presales people. It can be obtained from here; Dell Dpack

     

     

  • KACE K3000 and SSL – part.2

    KACE K3000 and SSL – part.2

    Unfortunately I had to re-evaluate my SSL config for the SSL-chain on the Kace K3000 virtual appliance.
    But what I found was i neat script that created the right key + certificate and intermediate certificate.
    Use this for your own convinience.
    ———-snip——————-
    # SHA512 testcase — all 3 layers.
    #
    LEN=${LEN:-2048}

    # create a root.
    openssl req -new -x509 -nodes -out ca.crt -keyout ca.key -subj /CN=DaRoot -newkey rsa:$LEN -sha512 || exit 1

    # create an intermediate & sign
    openssl req -new -nodes -out ca-int.req -keyout ca-int.key -subj /CN=Zintermediate -newkey rsa:$LEN -sha512 || exit 1
    openssl x509 -req -in ca-int.req -CAkey ca.key -CA ca.crt -days 20 -set_serial $RANDOM -sha512 -out ca-int.crt || exit 1

    # chain
    #
    cat ca.crt ca-int.crt > ca-all.crt

    for who in 192.168.1.45
    do
    # create a request
    openssl req -new -out $who.req -keyout $who.key -nodes -newkey rsa:$LEN -subj /CN=$who/emailAddress=$mikael_jensen@dell.com || exit 1

    # sign the request
    openssl x509 -req -in $who.req -CAkey ca-int.key -CA ca-int.crt -days 10 -set_serial $RANDOM -sha512 -out $who.crt || exit 1

    # create some convenience formats
    #
    openssl x509 -in $who.crt -out $who.der -outform DER || exit 1
    openssl pkcs12 -export -out $who.p12 -in $who.crt -inkey $who.key -chain -CAfile ca-all.crt -password pass:$PASS || exit 1
    done

    ——————-snip done——————-

    Use this as a script on a *nix machine with openssl package installed. I did it on a Fedora 20 laptop.

  • KACE K3000 and SSL Certificates

    KACE K3000 and SSL Certificates

    Are you trying to create the SSL key certificate chain for the superb KACE K3000 ?
    Use this short guide. Disclaimer; I found most of it on the web, but has made some alterations to handle the 2014+ security.

    openssl genrsa -des3 -out ca.key 4096
    openssl req -new -x509 -days 1825 -key ca.key -out ca.crt
    openssl x509 -in ca.crt -out ca.pem
    openssl genrsa -des3 -out ca-int_encrypted.key 4096
    openssl rsa -in ca-int_encrypted.key -out ca-int.key
    openssl req -new -key ca-int.key -out ca-int.csr -subj “/CN=ca-int@acme.com”
    openssl x509 -req -days 1825 -in ca-int.csr -CA ca.crt -CAkey ca.key -set_serial 01 -out ca-int.crt

    openssl genrsa -des3 -out server_encrypted.key 4096
    openssl rsa -in server_encrypted.key -out server.key
    openssl req -new -key server.key -out server.csr -subj “/CN=server@acme.com”
    openssl x509 -req -days 1825 -in server.csr -CA ca-int.crt -CAkey ca-int.key -set_serial 01 -out server.crt

    Remember to replace server@acme.com and ca-int@acme.com with your fully qualified servername. This worked for me for creating a KACE demo environment with K1000 + K2000 + K3000 chained together.

  • Nytårsforsæt 2014

    Nytårsforsæt 2014

    Det må nu være på tide at afsløre nytårsforsættene for 2014. De sidste to år har jeg kørt efter antal kilometer i bevægelse, og det lykkedes i 2013 at overgå mit mål med 37%.

    • 25000 højdemeter på cykel, dette er kun stigninger der tælles efter detaljer i Garmin Connect. Dette forsæt er konservativt da jeg må tage højde for at indendørs spinningtimer ikke giver noget højde overhovedet.
    • 20 stk +100 km ture. Disse bliver jo nok taget i weekenderne og primært på raceren. Men skulle der snige en enkelt tur ind på MTB’en så tæller den også med

    Dette var det hele. Det skulle være til at opnå målene for 2014 :-)Skriv dine mål for 2014 herunder og send til mig, de vil ikke blive offentliggjort

    [contact-form subject='[Miguel%26#039;s strøtanker’][contact-field label=’Name’ type=’name’ required=’1’/][contact-field label=’Comment’ type=’textarea’ required=’1’/][/contact-form]

  • Et år på landevejen.

    Et år på landevejen.

    endomondo_status2013

     

     

     

     

     

     

    Status på året der gik på landevejen.
    Jeg må sige at antallet af kilometer i år har overvældet mig. Aldrig havde jeg troet at jeg skulle nå så meget.

    Garagen er også blevet skiftet i løbet af året, således at nu står den på ren carbon hele vejen, om det så er landevej eller skov. Stalden er også udelukkende italienske fuldblodshingste med kun en smule amerikansk mekanik når turen går i skoven.

  • Cube Pro Ltd 2011

    Cube Pro Ltd 2011

    Specifikationer på min “gamle” mountainbike der snart skal skydes afsted

    • Product Type: Hardtail Mountain Bike
    • Model: 2011
    • Series: Cube LTD
    • Type: Mens Bike
    • Wheel Size: 26 inch
    • Frame Material: 7005 Aluminium
    • Gear System: With Derailleur
    • Number of Gears: 30
    • Rear Derailleur: Shimano XT
    • Suspension Fork: yes
    • Fork: Manitou Minute LTD
    • Wheel Travel: n/a
    • Braking System: Hydraulic Disc Brake
    • Brakes: Shimano BR-M4451
    • Weight: 12.4 kg
    • Bike Frame Size (inch): 18.0 inch
    • Headset: FSA No.10
    • Hub Dynamo: no no
    • Adjustable Stem: no
    • Handlebars: Easton EA30, Low Riser
    • Stem: Easton EA30
    • Front Derailleur: Shimano SLX
    • Front Chain Wheel Teeth: 42/32/24
    • Crankset: Shimano FC-M552 Shimano FC-M552
    • Rims: RFR ZX24
    • Tyres: Schwalbe Rapid Rob Performance
    • Saddle: RFR Natural Shape 0.2 M
  • Indkøbsseddel 2014

    Indkøbsseddel 2014

    Ramme: Wilier 101 Carbon Monocoque
    Forgaffel: Wilier 101 Carbon Rigid Thru-Axle
    Hjul: Miche 966 29″
    Skiftegreb: Sram XO 1-11
    Bremser: Tektro Auriga Pro
    Kranksæt: Sram XO 1-11
    Bagskifter: Sram XO 1-11
    Styr: Ritchey Pro Wet
    Frempind: Ritchey Pro Wet
    Sadelpind: Ritchey Pro
    Dæk: Geax Folding 29″
    Cassette: Sram XO 1-11
    Kæde: Sram XO 1-11
    Sadel: Selle San Marco Concor custom Wilier

  • Jensen i sporet

    Jensen i sporet