travers-berlin.de Report : Visit Site


  • Server:Apache/2.4.34 (Unix)...
    X-Powered-By:PHP/5.3.29

    The main IP address: 81.169.145.157,Your server Germany,Berlin ISP:Strato AG  TLD:de CountryCode:DE

    The description :stochastic search primary menu skip to content eamonn travers umberto eco’s anti-library search for: apache2 , dns , linux , system administration part i: raspberry pi, dynamic dns, apache 2 (virtual...

    This report updates in 07-Sep-2018

Changed Date:2006-12-04

Technical data of the travers-berlin.de


Geo IP provides you such as latitude, longitude and ISP (Internet Service Provider) etc. informations. Our GeoIP service found where is host travers-berlin.de. Currently, hosted in Germany and its service provider is Strato AG .

Latitude: 52.524368286133
Longitude: 13.410530090332
Country: Germany (DE)
City: Berlin
Region: Berlin
ISP: Strato AG

the related websites

HTTP Header Analysis


HTTP Header information is a part of HTTP protocol that a user's browser sends to called Apache/2.4.34 (Unix) containing the details of what the browser wants and will accept back from the web server.

X-Powered-By:PHP/5.3.29
Transfer-Encoding:chunked
Keep-Alive:timeout=3, max=100
Server:Apache/2.4.34 (Unix)
Connection:Keep-Alive
Link:; rel="https://api.w.org/"
Date:Fri, 07 Sep 2018 14:13:46 GMT
Content-Type:text/html; charset=UTF-8

DNS

soa:shades17.rzone.de. hostmaster.strato-rz.de. 2018090600 86400 7200 604800 7200
ns:docks11.rzone.de.
shades17.rzone.de.
mx:MX preference = 5, mail exchanger = smtp.rzone.de.
ipv4:IP:81.169.145.157
ASN:6724
OWNER:STRATO STRATO AG, DE
Country:DE
ipv6:2a01:238:20a:202:1157:://6724//STRATO STRATO AG, DE//DE

HtmlToText

stochastic search primary menu skip to content eamonn travers umberto eco’s anti-library search for: apache2 , dns , linux , system administration part i: raspberry pi, dynamic dns, apache 2 (virtual hosts and reverse proxy) october 22, 2016 eamonn travers 1 comment in ersilia, to establish the relationships that sustain the city’s life, inhabitants stretch strings from the corner’s of the houses, white or black or gray or black-and-white according to whether they mark a relationship of blood, of trade, authority, agency. when the treads become so numerous that you can no longer pass among them, the inhabitants leave: the houses are dismantled. italo calvino “invisible cities” this article stems from a number private queries. the questions being mostly twofold: how to ensure that a private web server is reachable per dns (domain name system)? and can a private web server maintain more than one website? furthermore, these private queries came as a rule after raspbian , apache2 as well as any cloud or file sharing software had already been installed. raspberry pi are especially useful as private cloud or photo sharing application platforms. they’re cheap, silent and economical, while being relatively easy to install and maintain. web applications such as owncloud , nextcloud , picapport , piwigo , roundcude, dokuwiki and many others lend themselves naturally to raspbian . dynamic dns every machine in the internet has a public ip address. some are fixed and unchanging, others are changed intentionally in regular intervals. most private internet connections will be of the latter type (addresses which are changed at regular intervals). this is a problem. how to ensure that a private server is still reachable even though and despite of regular ip changes. the answer is dns or more precisely dynamic dns . there are a number of free dns providers (this article here describes a few) available. alternatively, most commercial web service providers also provide dynamic dns. so a decision has to be made, free or commercial dns provider and then there are still two questions open: firstly, how to (regularly) retrieve your public ip? secondly, how to inform your dns provider about any changes? retrieving your public ip address any external (external insofar as that the server is not within the lan ) website knows your public ip address. they have to if they wish to communicate with you. there are also servers whose soul purpose it is to communicate this public ip back to the requester. https://wtfismyip.com/ , https://api.ipify.org/ or http://checkip.dyndns.org/ to name just a few such servers. so retrieving the public ip isn’t a problem. now the only question is how to automate this request so that the public ip address can be retrieved in regular intervals. there are various possibilities: bash, perl, ruby, c#, python, javascript, jquery, nodejs to name but a few. here’s an example in bash #!/bin/bash ip=$(curl --silent 'https://api.ipify.org') echo $ip this code snippet will retrieve the public ip address. but it won’t inform the dns provider of any changes. regularly informing the dns provider of any changes each provider will have different ways of automatically updating a dns record. the web service provider strato serves here as an example. strato provides a dns update web page for it’s customers. the following example retrieves the public ip and sets two separate dns records for two different sites. both sites being housed on the same pi. #!/bin/bash # get the public ip address ip=$(curl --silent 'https://api.ipify.org') # which sites get should be reachable over this ip hosts="owncloud.travers-berlin.de dokuwiki.travers-berlin.de" # user credentials user="xxxxxxxxxxxx" pass="xxxxxxxxxxxx" # strato web page url="https://dyndns.strato.com/nic/update/nic/update" # now set the dns record for all websites. for host in ${hosts} do query="?system=dyndns&hostname=${host}&myip=${ip}" curl --ssl --user ${user}:${pass} ${url}${query} done this script must now run in regular intervals and this can be achieved using the linux scheduling daemon crond . the script has to be saved. the directory and name are arbitrary, something like /root/ipupdate.sh is more than sufficient. crond reads crontabs (cron tables) and executes the programs listed. the criteria for running are listed together with the program in the crontab. each user has his or her own crontab. to create a crontab for root, use the following command: pi :~ $ sudo crontab -e -u root and add the following table entry: 0.15,30,45 * * * * /root/ipupdate.sh this will ensure that ipupdate.sh will run every 15 min. system administration creating colorful bash output using the ansi color codes image may 25, 2015 eamonn travers 2 comments “even the simplest shepherd modestly watching his sheep under the stars would discover, once he understood the part he was playing, that he was more than a servant, was a sentinel. and each sentinel among men is responsible for the whole kingdom.” antoine de saint exupèry wind, sand and stars why bother? working with the shell is very satisfying. the closeness to the operating system which a shell allows offers a freedom which cannot be (in my opinion) replicated within a gui. the shell has many helpful features, auto command completion with tab, command history, shell shortcuts (eg. ctrl+e brings the cursor to the end of a line or ctrl+k cuts everything after the cursor to the clipboard) , to name but a few and one of these features is the ability to color the screen content. this feature can be used to personalize the shell on a user basis. e.g. red prompt for root, blue for user0, green for user1 etc. other possibilities include coloring warning banners such as /etc/issue or /etc/motd, making script messages standout (error messages colored red), coloring texts (like todo lists) and there is always just fooling around more for fun than effect. there are a lot of tutorials available on how to color bash output. some good, some bad. this article concerns itself with the 8 colors (not 8 bit 256 colors) which are available. the reasoning being simple, i don’t use them. how? firstly you need to know how to use ansi escape sequences. these escape sequences start (funnily enough) with the esc (ascii decimal 27 / hex 0x1b / octal 033 ) character, followed by two or more characters. a modern bash is quite capable of interpreting \033 (which is needed if 256 colors are to be used) but generally ansi/vt100 terminal codes are incorporated in scripts (\e being the escape code). if more than two characters follow, these are preceded by a left crotchet ([). the ansi color codes are grouped thus: text attribute code, text foreground color code, text background color code with each code separated by a semi-colon (;). the sequence is closed with the letter m. eg. \e[0;0m resets the shell and generally terminates any color changes that have be made. the text attribute codes are as follows: 0 : no attribute 1 : bold 4 : underscore 5 : blink 7 : reverse 8 : concealed the text foreground color codes are: 30 : black 31 : red 32 : green 33 : yellow 34 : blue 35 : magenta 36 : cyan 37 : white and finally the text background codes can be seen below : 40 : black 41 : red 42 : green 43 : yellow 44 : blue 45 : magenta 46 : cyan 47 : white as you can see the second character (1..7) defines the color, while the first character (3|4) denotes text or background color. here are a few examples to help clarify. colorful prompt: edit ~/.bashrc and add the following variable ps1=’\e[1;32m[\u@\h \w]\$\e[0;0m ‘ the command $ source .bashrc makes the changes visible. in this case a bold green prompt containing the login, host and working directory, surrounded by crotchets and followed by a dollar sign. [user@host ~]$ echo -e this short script will run through the colors on the prompt. there are many, many similar such scripts to be found all over the web. this example is quick and dirty and can be typed directl

URL analysis for travers-berlin.de


http://stochastic.travers-berlin.de/category/system-administration/dns/
http://stochastic.travers-berlin.de/creating-colorful-console-output/#comment-2
http://stochastic.travers-berlin.de/creating-colorful-console-output/#comment-1
http://stochastic.travers-berlin.de/#content
http://stochastic.travers-berlin.de/category/system-administration/linux/
http://stochastic.travers-berlin.de/author/eamtrav/
http://stochastic.travers-berlin.de/connecting-kindle-fire-hd-to-debian-7/#respond
http://stochastic.travers-berlin.de/raspberry-pi-apache2-dynamic-dns-virtual-hosts-and-reverse-proxy/
http://stochastic.travers-berlin.de/category/system-administration/kindle/
http://stochastic.travers-berlin.de/category/security/ssh/
http://stochastic.travers-berlin.de/eamonn-travers/
http://stochastic.travers-berlin.de/standardizing-a-personal-work-environment-over-multiply-ssh-servers/#respond
http://stochastic.travers-berlin.de/raspberry-pi-apache2-dynamic-dns-virtual-hosts-and-reverse-proxy/#comment-6
http://stochastic.travers-berlin.de/category/system-administration/shell/
http://stochastic.travers-berlin.de/creating-colorful-console-output/#comments

Whois Information


Whois is a protocol that is access to registering information. You can reach when the website was registered, when it will be expire, what is contact details of the site with the following informations. In a nutshell, it includes these informations;

% Copyright (c) 2010 by DENIC
% Version: 2.0
%
% Restricted rights.
%
% Terms and Conditions of Use
%
% The data in this record is provided by DENIC for informational purposes only.
% DENIC does not guarantee its accuracy and cannot, under any circumstances,
% be held liable in case the stored information would prove to be wrong,
% incomplete or not accurate in any sense.
%
% All the domain data that is visible in the whois service is protected by law.
% It is not permitted to use it for any purpose other than technical or
% administrative requirements associated with the operation of the Internet.
% It is explicitly forbidden to extract, copy and/or use or re-utilise in any
% form and by any means (electronically or not) the whole or a quantitatively
% or qualitatively substantial part of the contents of the whois database
% without prior and explicit written permission by DENIC.
% It is prohibited, in particular, to use it for transmission of unsolicited
% and/or commercial and/or advertising by phone, fax, e-mail or for any similar
% purposes.
%
% By maintaining the connection you assure that you have a legitimate interest
% in the data and that you will only use it for the stated purposes. You are
% aware that DENIC maintains the right to initiate legal proceedings against
% you in the event of any breach of this assurance and to bar you from using
% its whois service.
%
% The DENIC whois service on port 43 never discloses any information concerning
% the domain holder/administrative contact. Information concerning the domain
% holder/administrative contact can be obtained through use of our web-based
% whois service available at the DENIC website:
% http://www.denic.de/en/domains/whois-service/web-whois.html
%

Domain: travers-berlin.de
Nserver: docks11.rzone.de
Nserver: shades17.rzone.de
Status: connect
Changed: 2015-04-03T23:06:27+02:00

[Tech-C]
Type: ROLE
Name: Hostmaster STRATO AG Webhosting
Organisation: STRATO AG
Address: Pascalstraße 10
PostalCode: 10587
City: Berlin
CountryCode: DE
Phone: +49 30886150
Fax: +49 3088615111
Email: [email protected]
Changed: 2006-12-04T23:27:06+01:00

[Zone-C]
Type: ROLE
Name: Zonemaster STRATO AG Webhosting
Organisation: STRATO AG
Address: Pascalstraße 10
PostalCode: 10587
City: Berlin
CountryCode: DE
Phone: +49 30886150
Fax: +49 3088615111
Email: [email protected]
Changed: 2006-12-05T00:35:07+01:00

  REGISTRAR DENIC eG

  REFERRER http://www.denic.de/

SERVERS

  SERVER de.whois-servers.net

  ARGS -T dn,ace travers-berlin.de

  PORT 43

  TYPE domain

DOMAIN

  NAME travers-berlin.de

NSERVER

  DOCKS11.RZONE.DE 81.169.146.21

  SHADES17.RZONE.DE 85.214.0.247

  STATUS connect

  CHANGED 2006-12-04

TECH

  NAME Hostmaster STRATO AG Webhosting

  ORGANIZATION STRATO AG

ADDRESS

STREET
Pascalstraße 10

  PCODE 10587

  CITY Berlin

  COUNTRY DE

  PHONE +49 30886150

  FAX +49 3088615111

  EMAIL [email protected]

ZONE

  NAME Zonemaster STRATO AG Webhosting

  ORGANIZATION STRATO AG

ADDRESS

STREET
Pascalstraße 10

  PCODE 10587

  CITY Berlin

  COUNTRY DE

  PHONE +49 30886150

  FAX +49 3088615111

  EMAIL [email protected]

  REGISTERED yes

Go to top

Mistakes


The following list shows you to spelling mistakes possible of the internet users for the website searched .

  • www.utravers-berlin.com
  • www.7travers-berlin.com
  • www.htravers-berlin.com
  • www.ktravers-berlin.com
  • www.jtravers-berlin.com
  • www.itravers-berlin.com
  • www.8travers-berlin.com
  • www.ytravers-berlin.com
  • www.travers-berlinebc.com
  • www.travers-berlinebc.com
  • www.travers-berlin3bc.com
  • www.travers-berlinwbc.com
  • www.travers-berlinsbc.com
  • www.travers-berlin#bc.com
  • www.travers-berlindbc.com
  • www.travers-berlinfbc.com
  • www.travers-berlin&bc.com
  • www.travers-berlinrbc.com
  • www.urlw4ebc.com
  • www.travers-berlin4bc.com
  • www.travers-berlinc.com
  • www.travers-berlinbc.com
  • www.travers-berlinvc.com
  • www.travers-berlinvbc.com
  • www.travers-berlinvc.com
  • www.travers-berlin c.com
  • www.travers-berlin bc.com
  • www.travers-berlin c.com
  • www.travers-berlingc.com
  • www.travers-berlingbc.com
  • www.travers-berlingc.com
  • www.travers-berlinjc.com
  • www.travers-berlinjbc.com
  • www.travers-berlinjc.com
  • www.travers-berlinnc.com
  • www.travers-berlinnbc.com
  • www.travers-berlinnc.com
  • www.travers-berlinhc.com
  • www.travers-berlinhbc.com
  • www.travers-berlinhc.com
  • www.travers-berlin.com
  • www.travers-berlinc.com
  • www.travers-berlinx.com
  • www.travers-berlinxc.com
  • www.travers-berlinx.com
  • www.travers-berlinf.com
  • www.travers-berlinfc.com
  • www.travers-berlinf.com
  • www.travers-berlinv.com
  • www.travers-berlinvc.com
  • www.travers-berlinv.com
  • www.travers-berlind.com
  • www.travers-berlindc.com
  • www.travers-berlind.com
  • www.travers-berlincb.com
  • www.travers-berlincom
  • www.travers-berlin..com
  • www.travers-berlin/com
  • www.travers-berlin/.com
  • www.travers-berlin./com
  • www.travers-berlinncom
  • www.travers-berlinn.com
  • www.travers-berlin.ncom
  • www.travers-berlin;com
  • www.travers-berlin;.com
  • www.travers-berlin.;com
  • www.travers-berlinlcom
  • www.travers-berlinl.com
  • www.travers-berlin.lcom
  • www.travers-berlin com
  • www.travers-berlin .com
  • www.travers-berlin. com
  • www.travers-berlin,com
  • www.travers-berlin,.com
  • www.travers-berlin.,com
  • www.travers-berlinmcom
  • www.travers-berlinm.com
  • www.travers-berlin.mcom
  • www.travers-berlin.ccom
  • www.travers-berlin.om
  • www.travers-berlin.ccom
  • www.travers-berlin.xom
  • www.travers-berlin.xcom
  • www.travers-berlin.cxom
  • www.travers-berlin.fom
  • www.travers-berlin.fcom
  • www.travers-berlin.cfom
  • www.travers-berlin.vom
  • www.travers-berlin.vcom
  • www.travers-berlin.cvom
  • www.travers-berlin.dom
  • www.travers-berlin.dcom
  • www.travers-berlin.cdom
  • www.travers-berlinc.om
  • www.travers-berlin.cm
  • www.travers-berlin.coom
  • www.travers-berlin.cpm
  • www.travers-berlin.cpom
  • www.travers-berlin.copm
  • www.travers-berlin.cim
  • www.travers-berlin.ciom
  • www.travers-berlin.coim
  • www.travers-berlin.ckm
  • www.travers-berlin.ckom
  • www.travers-berlin.cokm
  • www.travers-berlin.clm
  • www.travers-berlin.clom
  • www.travers-berlin.colm
  • www.travers-berlin.c0m
  • www.travers-berlin.c0om
  • www.travers-berlin.co0m
  • www.travers-berlin.c:m
  • www.travers-berlin.c:om
  • www.travers-berlin.co:m
  • www.travers-berlin.c9m
  • www.travers-berlin.c9om
  • www.travers-berlin.co9m
  • www.travers-berlin.ocm
  • www.travers-berlin.co
  • travers-berlin.dem
  • www.travers-berlin.con
  • www.travers-berlin.conm
  • travers-berlin.den
  • www.travers-berlin.col
  • www.travers-berlin.colm
  • travers-berlin.del
  • www.travers-berlin.co
  • www.travers-berlin.co m
  • travers-berlin.de
  • www.travers-berlin.cok
  • www.travers-berlin.cokm
  • travers-berlin.dek
  • www.travers-berlin.co,
  • www.travers-berlin.co,m
  • travers-berlin.de,
  • www.travers-berlin.coj
  • www.travers-berlin.cojm
  • travers-berlin.dej
  • www.travers-berlin.cmo
Show All Mistakes Hide All Mistakes