Erfahrungen mit Dogado.de

Problem

Wir haben einen neuen Server gesucht, der diesmal nicht mehr als dedicated Server ist, sondern virtuell. Das liegt daran, dass Windows 2012 R2 aus der Wartung ist und keine unserer aktuellen Seiten auf Microsoft Technologien beschränkt sind. Die Auswahl an Servern hat sich daher deutlich vergrößert. Dazu kam, dass die Wartung und Hardware Probleme sind einfach zu nervig gewesen sind. Allein ein Festplattentausch ist ohne physikalischem Zugriff eine Tagesaufgabe.

Aus dem Grund startete die Suche nach einem neuen Anbieter. Unsere Anforderungen wurden gänzlich von Dogado.de erfüllt. Dazu war das auch der preislich attraktivste Anbieter mit dem Leistungsspektrum.

Erfahrungen

Bestellung

Bestellung usw waren alles 1a. Da kann man sich definitiv nicht beschweren. Die Bestellung ist problemlos durchgelaufen, die Bereitstellung ist auch innerhalb weniger Stunden erfolgt. Die Auswahl der Betriebssysteme war auch in Ordnung.

Probleme / Erfahrungen

Bisher läuft alles erst mal in Ordnung. Die Antwortzeiten sind in Ordnung. Wir haben nicht das Kleinste, aber auch nicht das Größte Paket gewählt. Auch die Verwaltung hält sich absolut in Grenzen.

Es gab jedoch auch das Problem, dass die IPv6 Adresse nicht mehr erreichbar war. Das hat sich dann dummerweise schon 3-4 Tage hingezogen, bis das Problem gelöst war. Der Support war aber sehr hilfreich und hat sich direkt um das Problem gekümmert. Trotzdem nervig. Schlussendlich lag es an einem Problem im Virutalisierer. Wir hätten selbst nichts tun können.

Wünsche

  1. Leider lassen sich Snapshots nicht herunterladen. Auch kann man sie nicht länger als 14 Tage vorhalten. Es wird eine tägliche inkrementelle Sicherung erstellt, die sicher hilfreich ist. Aber ein Download wäre super
  2. Aktuell (Stand 11.10.2023) ist das support Portal nicht erreichbar. Das ist schon schade, weil wir wieder mit dem IPv6 Zugang Probleme haben. Wobei ich das nicht unbedingt bei Dogado sehe. Das könnte auch bei uns liegen.
  3. Ich hätte gerne mal so 3 Snapshots, die auch länger vorgehalten werden. Einfach nur vor großen Änderungen, die ggf auch nach Wochen auftreten. Dabei wäre auch der einfache Download super, damit man Dinge zusammenführen und zurücksetzen kann.

Zusammenfassung

Ich würde Dogado empfehlen. Man muss nur hier und da 2 oder 3 mal anrufen. Die Hotline scheint entweder keine Berechtigung, oder keine Lust zur Hilfe zu haben. Am besten ein Ticket aufmachen. Da wird einem relativ schnell geholfen.

Trotzdem bin ich zufrieden. Allein, dass ich keine Hardware verwalten muss, ist schon mal super. Antwortzeiten, Support, usw, alles für mich gut!

Worx: Security issue

There is a security issue with Worx. This is a placeholder for the disclosure (CVD).

Party is informed. SHA512 for affected link is: cc249cf4851fd3d8d610f9d06315d0a34a516fe286fa9ab72fc4bf65d0abedd3e42ebd390d5c50c2dfba7a7a4e42d56b1606addb8c1a642ece248abd9d68829d

Update no later than 90 days after today.

Hyper-V: External Switch with Wifi fails (with e.g. 0x800700B7)

Hyper-V

Hyper-V is nice if other solutions fail for you (like credential guard on Windows prevent VMWare from functioning). I personally like the integration with WSL and so on. It just works, most of the time.

Issues

Most annoying for me is the issue when creating an external switch which fails with a bunch of errors like „Cannot create a file when that file already exists. (0x800700B7).“ or „Adding ports to the switch … failed. The operation failed because the object was not found.“. Usually the recommendations are uninstalling other VPN clients or running „netcfg -d“. This never ever worked for me.

This especially happens, if you try to bind an external switch to WiFi interface.

Even the MS Fixit failed. It even messed up A LOT. I won’t use that one again.

Solution

After a lot of Googling I found a comment below a post which I thought is worth preserving. The folowing blog entry has a user comment. This solves the issue. The blog entry itself doesn’t… Check the comment:

(Source: https://pomeroy.me/2020/08/hyper-v-virtual-switch-creation-woes/#comment-411452)

Actually it’s quite easy. This is how is works:

  1. Open Network Sharing Center (just to be prepared! You need to be kind of quick)
  2. Click ‘Change Adapter Settings’ in the left-hand menu (leave window open for later)
  3. Create the new External Switch in Hyper-V Manager. Or, you can also use New-VMSwitch PowerShell cmdlet. Both methods work.
  4. While the “Applying” dialog is spinning away, or the PowerShell Progress “dialog”, switch over to the network adapters dialog you have open in Control Panel. (now you need to be kind of quick)
  5. Disable your WiFi adapter
  6. Reenable your Wifi adapter
  7. Check in the network adapter settings if your external switch has been created

Thanks „Craig S.“ for this info! Saved me a lot of time! I hope this preserves this hint until it’s fixed by MS.

Fashing Z-Stack on a CC2530 with only a Raspberry Pi

Preparations

Hardwarewise you only need your CC2530 board, a Rasperry Pi which is newer than the first version and a bunch of (preferably) female-female cables. This does not work for Raspberry Pi 1 as it doesn’t have the required GPIOs.

From a software point of view, you would need to have WiringPi installed and have the according coordinator or repeater firmware ready. This will be explained in the later process.

Wiring

First of all, hook up your CC2530 with your Raspberry Pi. Therefore connect the following PINs.

CC2530
GND or G
VCC
RES or RST or R (reset)
P22 (DC)
P21 (DD)

Raspberry Pi
Pin 39 (GND)
Pin 01 (3.3V)
Pin 35 (GPIO24, BCM19)
Pin 36 (GPIO27, BCM16)
Pin 38 (GPIO28, BCM20)

Flashing the CC2530

Make sure you have WiringPi installed. If not, follow these steps.

git clone https://github.com/jmichault/flash_cc2531.git
cd flash_cc2531
./cc_chipid

This should now contact the CC2530 board and return the chip id. If this return something like 0000 or ffff you have to go back and check the wiring! The result should be

  ID = b524.

Usually you will find an expected result of „a524“ on the internet. This is also a valid result, but for the USB stick type of hardware. In case you are having a CC2531, you will get „a524“ as a result. But then I would be impressed, as the wiring should be different.

Afterwards download the coordinator software and unzip it

wget https://github.com/Koenkk/Z-Stack-firmware/raw/master/coordinator/Z-Stack_3.0.x/bin/CC2530_20190523.zip
unzip CC2530_20190523.zip

Now erase the chip

sudo ./cc_erase

This will give you something like
ID = a524.
erase result = 00a2.
as a result. The chip can now be programmed with the coordinator firmware using the following command

sudo ./cc_write CC2530ZNP-with-SBL.hex

The expected result would be

  ID = a524.
  reading line 15490.
  file loaded (15497 lines read).
writing page 128/128.
verifying page 128/128.
 flash OK.

This should give you a fully functional Z-Stack coordinator. This now needs to be hooked up to either your Raspberry or maybe even a ESP8266 to be used. Or connect it to a zigbee2mqtt server.

References

  • https://www.raspberrypi.org/documentation/usage/gpio/images/GPIO-Pinout-Diagram-2.png
  • https://ptvo.info/how-to-select-and-flash-cc2530-144/
  • https://www.zigbee2mqtt.io/

Routerzwang bei Unitmedia und Alteverträgen

Unitymedia, „Altverträge“ und das Gesetz

Unitymedia ist im Moment recht aussagefreudig, was die kommende Routerfreiheit angeht. Wirklich eine Wahl haben sie ja nicht. Aber Kunden noch mehr ärgern als sonst wollen sie wohl auch nicht. Allerdings ist eine Sache bemerkenswert. Scheinbar plant UM die Einhaltung nur für Kunden, die ab einem willkürlichen Datum einen Vertrag gewechselt haben.
Weiterlesen

eDreams Abzocke!

Problem

Flugbuchung. Es gibt unendlich viele Seiten. Alle tun irgendwie das Gleiche, manche nerven mehr oder weniger… Wir sind bei momondo gelandet. An sich super; insbesondere, weil es um einen Gabelflug ging. Das kann leider nicht jeder. Wir sind dann bei eDreams gelandet, da hier der beste Preis geboten wurde. Die Seite wirkt von Verhalten und Angebot fast identisch zu Opodo. Ein Schelm wer böses denkt…

Lösung

Einfach mal buchen….

Weiterlesen

Annoying Crapware on Samsung Smartphones

Introduction

About more than a year ago I got my brand new Samsung Galaxy S5 from my employer. We’re in the lucky situation, that we can choose the phone we want to use. Even though this is restricted to iPhone and Samsung. I really don’t like iOS at all for several good reasons which I don’t want to discuss here now (technically it’s not a discussion…) so I picked the Samsung S5. It was the most flagship phone of Samsung at the time being. I was happy.
Weiterlesen

Axel Springer

Normal bin ich wirklich kein Fan von Axel Springer. Ständig „Schwarzmalerei“ und Katastrophen. Aber hier ist mal etwas zum überlegen.

http://www.welt.de/debatte/kommentare/article138148288/Das-war-nur-der-Anfang-und-jetzt-Quote-fuer-alle.html

Ich fände 30% von „jeder“ „Minderheit“ auch ok. Kommt halt nicht ganz hin. Wobei, wenn wir am Ende bei 534322245445% rauskommen, dann schon…

XBMC set „watched“ flag manually

Introduction

You have moved your library or deleted it accidentally? You lost the „Already watched“ flag?

Solution

Just in case you have a keyboard attached: Go to the movie list and just press „w“ for „watched“. This will take a couple of seconds and then set it to watched.
Absolutely annoying. Even if you’re having the scraper set to „local nfo only“ this will probably hit you. You could set the corresponding flag in the advancedsettings.xml but this will only help when exporting/importing the settings. But it’s probably still going to mess everything up.

So just hit „w“ for all the movies you’ve watched and you’re fine.