Ericsson Teams Up With Amazon Web Services
That was quick: AWS gets into our MWC coverage on Day One.
That was quick: AWS gets into our MWC coverage on Day One.
The MANO group is hosted by ETSI.
Deutsche Telekom and SK Telecom are already using it.
If you were a crime victim and key evidence was on suspect's phone, would you want govt to search phone w/ warrant?— Orin Kerr (@OrinKerr) February 22, 2016
Kicking off Mobile World Congress with the state of the new Nokia.
Progress in Linux containers from the likes of Avi, Mesosphere, and PLUMgrid.
![]() |
© ContainerWorld (Informa) - Taken from container world photo gallery |
The Naming of Hosts
The Naming of Hosts is a difficult matter,
It isn’t just one of your holiday games;
You may think at first I’m as mad as a hatter
When I tell you, a host must have THREE DIFFERENT NAMES.
First of all, there’s the CNAME you want to use daily,
Such as nms, intranet, HR or games–
Such as payroll, or passwordchange, IT or training,
All of them sensible everyday names.
There are fancier names if you think they sound better,
Vendors and products that all sound the same,
Such as PeopleSoft, OpenView, Cisco, or NetApp–
But all of them sensible everyday names.
But I tell you, a host needs a name that’s unusual,
A name that’s peculiar, and more dignified,
Else how can it justify license renewals,
Or memory upgrades, or hybrid flash drives?
For names of this kind, I can give you a standard,
Twelve bytes for location, and fifteen for app,
These names are the ones that are never remembered,
They’re cryptic, unreadable, frustrating crap.
But above and beyond there’s still one name left over,
And that is the name that you never will guess;
The name that no human research can discover–
But Continue reading
Michelle Chubirka from Post Modern Security spent ten years as a sysadmin with a primary focus on managing a BIND DNS for a very large university in the US. With some regret, she says: This history makes what I’m about to recommend even more shocking. Outside of service providers, I no longer believe that organizations should […]
The post Response: Why You Shouldn’t Be Hosting Your DNS appeared first on EtherealMind.
NTT will run EPC in its network with NFV technology, starting in March.
While automation is great, we have to be careful not to recreate past problems. What I mean is that playbooks should be written in a generic fashion that can be applied to more than one host. If we’re writing playbooks that only work on one single host, we aren’t much further ahead than we were before.
Two of the key components of making playbooks reusable are Ansible variables and roles. Let’s try and define each of them individually and while showing some examples along the way.
Roles
Roles allow you to call a set of variables, tasks, and handlers by simply specifying a defined role. Roles require the use of a defined file structure in order to work. Per the Ansible documentation, that structure looks like this…
Roles are really just a way to split up your playbook into smaller reusable parts. For instance, let’s consider we added another host to our lab…
--- - hosts: linuxservers tasks: - name: Install Apache Web Server yum: name=httpd state=latest notify: - openport - startwebserver handlers: - name: openport service: name=httpd state=started - name: startwebserver firewalld: port=80/tcp permanent=true state=enabled immediate=yes - hosts: Continue reading