Centroid.EU Blog
(this blog is mostly encrypted - adults only)
|
Previous Page
September 4th, 2017
I watched the ARD #5kampf TV interview and noticed that the parties were lined
up from left to right in terms of extremes with the respective side. So
Die Linke was far left, AfD far right and CSU in the middle. I felt the CSU
was sorta in the wrong spot since Angela Merkel talked for them yesterday in
the ARD TV Duell. So in the end I felt of all the parties the left focused
parties were placed well in their responses to questions and in their questions
to others.
I'd have a question for Herr Hermann of the CSU though. He made it
sound like there is no more coal powerplants left in Bavaria and that we're
well placed as a solar power producing region. So my question is this. Bud,
why is it that my night electricity is at 14 cents/KWh and my day electricity
is at 23 cents/KWh or thereabouts. With Bavaria producing so much solar
doesn't it make more sense to make the day cheaper than the night. Because I
use up to 11,000 KWh's per year which is three to four times the national
average. The lions share of this electricity (along 9000 KWh's) is used up
by my winter heating units that run at night at the 14 cents/KWh in order to
conserve on my electricity bill. The times have changed. Daytime electricity
is cheaper! My heating units should charge during the day when solar can be
utilized. This is a very complex question, but the solution is very simple.
It would just mean reprogramming the heating units timer and flip the day and
night rates for electricity.
Overall I found the #5kampf interview OK, nothign exravagant was said that I
didn't already know. And I'll continue to put my pledge to Die Linke.
0 comments
Wrote a patch for babel routing daemon
September 3rd, 2017
We noticed in freifunk franken that sometimes there is receive buffer overruns.
I wrote a patch for babel that the size of the receive buffer is dynamic to the
highest attainable value (within 2^x)..
--- kernel_netlink.c.orig 2017-09-03 10:45:54.000000000 +0200
+++ kernel_netlink.c 2017-09-03 11:02:55.000000000 +0200
@@ -232,11 +232,25 @@
netlink_socket(struct netlink *nl, uint32_t groups)
{
int rc;
- int rcvsize = 512 * 1024;
+ int rcvsize = 512;
+ int i;
nl->sock = socket(PF_NETLINK, SOCK_RAW, NETLINK_ROUTE);
+
if(nl->sock < 0)
- return -1;
+ return -1;
+
+ /* get the highest attainable RCVBUF up to 1 << 30 */
+ for (i = rcvsize; i < (1 << 30); i <<= 1) {
+ rc = setsockopt(nl->sock, SOL_SOCKET, SO_RCVBUF,
+ &i, sizeof(i));
+
+ if (rc < 0)
+ break;
+
+ rcvsize = i;
+ }
+ fprintf(stderr, "rcvsize set to %d\n", rcvsize);
memset(&nl->sockaddr, 0, sizeof(nl->sockaddr));
nl->sockaddr.nl_family = AF_NETLINK;
Hopefully its correct, I didn't test it.
0 comments
Cancelled supercluster for September 17, 2017
September 2nd, 2017
I have cancelled supercluster.virgostar.net for September 17th, 2017. After
moving everything off it, it will be cancelled 2 weeks earlier than planned.
That's just the billing cycle though. It's been a fun three years!
0 comments
The last leg of Summer 2017
September 1st, 2017
We have about 3 more weeks of summer left (officially). Last year I turned
up the heat around October 4th, 2016. So I'm hoping to be doing that this
year as well. Of course if it gets cold earlier I'll have to turn the heat
up earlier. In about three weeks Germany has a federal election. So politics
are gonna make the people crazy the next few weeks. Have a safe and happy
September everybody!
0 comments
Please welcome this website to Germany
August 30th, 2017
I have moved this website to Germany. This is related to the last article
which I have found myself just doing it. One more service off supercluster.
0 comments
Change has begun
August 30th, 2017
This morning I replaced the supercluster.virgostar.net nameserver with the
psi.virgostar.net nameserver for all my domains. As I'm moving away from
supercluster and will wrap up its participation in my network in November
likely. I'm freeing up money by the end of the year and the reason that
prompted this change was the new surveillance laws in the Netherlands that
go into effect January 1st, 2018. I'll be long gone then and will think
twice about my privacy when entering dutch territory again.
0 comments
Ordered three books
August 28th, 2017
I'm on vacation this week and partially next week. So I've ordered some
reading material.
- Steganographie in WLANs: Design und Implementierung - Kuehne, Tobias
- Introduction to Modern Cryptography (Chapman & Hall/CRC Cryptography and Network Security Series) - Katz, Jonathan,Lindell, Yehuda
- Mastering Bitcoin: Unlocking Digital Cryptocurrencies - Antonopoulos, Andreas
Lots of books involving encryption. No I don't have anything to hide ;-) this
is pure educational.
0 comments
137.226.113.0/24 can't lookup my DNS anymore
August 25th, 2017
A particular University has been probing my DNS, over and over again. Until
I sent them an email informing them that they have been filtered and that they
are spying.
/var/log/all.0.gz:Aug 24 13:42:18 omega delphinusdnsd[8574]: request on \
descriptor 16 interface "108.61.211.139" from 137.226.113.7 \
(ttl=0, region=255) for "_sips._tcp.virgostar.net." type=SRV(33) class=1, \
edns0, answering "NXDOMAIN" (53/130)
/var/log/all.0.gz:Aug 24 13:42:18 omega delphinusdnsd[8574]: request on \
descriptor 16 interface "108.61.211.139" from 137.226.113.27 \
(ttl=0, region=255) for "_sip._udp.virgostar.net." type=SRV(33) class=1, \
edns0, answering "NXDOMAIN" (52/129)
I asked them whether they wanted to call me because they looked up SRV records
for SIP and Jabber...
Now pretend you have a house and you sit in it. Then someone comes to your door
and windows and looks in to see if you have left them open. And does this
repeatedly, with a different mask every time. Is that _not_ a little intrusive and scary? I call it spying. And that's exactly what
comsys.rwth-aachen.de are doing. BTW I'm not spying because I only look at
my own windows to see if anyone is looking in. Also we don't know what
happens to the data that Uni Aachen are collecting. Chances are it's ending
up in government hands.
So for the last night this is what my logs say about this subnet:
Aug 24 21:52:39 omega delphinusdnsd[29533]: UDP connection refused on \
descriptor 17 interface "108.61.211.139" from 137.226.113.12 (ttl=0, \
region=255) replying REFUSED, filter policy
And it'll stay on. On the other DNS server I put them in a pf filter.
0 comments
Added double the RAM and double the SSD to Omega
August 24th, 2017
My VPS provider vultr.com which I use for the host omega.virgostar.net, allows
one to upgrade plans on the fly. So I did. I don't pay more than I did before
, which is around $10 USD/mo and I have 2 GB RAM and 20 GB more drive space.
When I give up supercluster in October or November, because of new surveillance
laws in the Netherlands, I'll have everything stowed into omega. I'm also
giving up chi.goldflipper.de at around the same time so I'll go down to 2 VPS
for the time being. Those are the big plans.
0 comments
Changed nameserver for delphinusdns.org
August 23rd, 2017
I have changed chi.goldflipper.de to omega.virgostar.net for the
delphinusdns.org zone. In one week I'll change the nameserver
supercluster.virgostar.net to psi.virgostar.net for all my remaining domains.
Hopefully it'll work nicely. I have also made a -current delphinusdnsd the
master on omega, before it was a hidden master and only did AXFR. Now it
answers queries. Habbie (person on #dns) told me that I don't echo RD bit
upon a refused, which I put on my TODO to fix.
0 comments
Next Page
|
Search
RSS Feed
Click here for RSS
On this day in
Other links
Have feedback?
By clicking on the header of an article you will be
served a cookie. If you do not agree to this do not
click on the header. Thanks!
Using a text-based webbrowser?
... such as lynx? Welcome back it's working again for the time being.
Older Blog Entries
May, 2023
April, 2023
March, 2023
February, 2023
January, 2023
December, 2022
November, 2022
October, 2022
September, 2022
August, 2022
July, 2022
June, 2022
May, 2022
April, 2022
March, 2022
February, 2022
January, 2022
December, 2021
November, 2021
October, 2021
September, 2021
March, 2021
February, 2021
January, 2021
December, 2020
November, 2020
October, 2020
September, 2020
August, 2020
July, 2020
June, 2020
May, 2020
April, 2020
March, 2020
February, 2020
January, 2020
December, 2019
November, 2019
October, 2019
September, 2019
August, 2019
July, 2019
June, 2019
May, 2019
April, 2019
March, 2019
February, 2019
January, 2019
December, 2018
November, 2018
October, 2018
September, 2018
August, 2018
July, 2018
June, 2018
May, 2018
April, 2018
March, 2018
February, 2018
January, 2018
December, 2017
November, 2017
October, 2017
September, 2017
August, 2017
July, 2017
June, 2017
May, 2017
April, 2017
March, 2017
February, 2017
January, 2017
December, 2016
November, 2016
October, 2016
September, 2016
August, 2016
July, 2016
June, 2016
May, 2016
April, 2016
March, 2016
February, 2016
January, 2016
December, 2015
November, 2015
October, 2015
September, 2015
August, 2015
July, 2015
June, 2015
May, 2015
April, 2015
March, 2015
February, 2015
January, 2015
December, 2014
November, 2014
October, 2014
September, 2014
August, 2014
July, 2014
June, 2014
May, 2014
April, 2014
March, 2014
February, 2014
January, 2014
December, 2013
November, 2013
October, 2013
September, 2013
August, 2013
July, 2013
June, 2013
May, 2013
April, 2013
March, 2013
February, 2013
January, 2013
December, 2012
November, 2012
October, 2012
September, 2012
August, 2012
July, 2012
June, 2012
May, 2012
April, 2012
March, 2012
February, 2012
January, 2012
December, 2011
November, 2011
October, 2011
September, 2011
August, 2011
July, 2011
June, 2011
May, 2011
April, 2011
March, 2011
February, 2011
January, 2011
December, 2010
November, 2010
October, 2010
September, 2010
August, 2010
July, 2010
June, 2010
May, 2010
April, 2010
March, 2010
February, 2010
January, 2010
December, 2009
November, 2009
October, 2009
September, 2009
August, 2009
July, 2009
June, 2009
May, 2009
Powered by BCHS
|