#! /bin/bash
[[ -z $1 ]] && exit -1;
ptr=$(tac -s.<<<"$1.");
printf "{\"AS\":%d,\"BGP Prefix\":\"%s\",\"CC\":\"%s\",\"Registry\":\"%s\",\"Allocated\":\"%s\"}\n" `dig "$ptr"origin.asn.cymru.com txt +short | tr -d '\"|'`;
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- hosts: all | |
remote_user: root | |
vars: | |
nameserver: '1.1.1.1' | |
tasks: | |
- file: | |
path: /etc/resolv.conf | |
attr: -i | |
- copy: | |
dest: /etc/resolv.conf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "2.1" | |
networks: | |
default: | |
driver: bridge | |
driver_opts: | |
com.docker.network.bridge.host_binding_ipv4: "127.0.0.1" | |
com.docker.network.bridge.name: ${BRIDGE_NAME} | |
ipam: | |
driver: default | |
config: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
driver: | |
name: proxy | |
host: <%= ENV["kitchen_host"] %> | |
username: <%= ENV["kitchen_username"] %> | |
password: <%= ENV["kitchen_password"] %> | |
port: 5985 | |
transport: | |
name: winrm | |
elevated: true | |
provisioner: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl \ | |
--silent \ | |
--ssl smtp://$SERVER \ | |
--mail-from $FROM \ | |
--mail-rcpt $TO \ | |
--upload-file /dev/stdin \ | |
--user $USER:$PASSWORD |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
echo \ | |
| openssl s_client -connect $1 -CAfile $CAfile \ | |
| openssl x509 -noout -pubkey \ | |
| ssh-keygen -vi -m PKCS8 -f /dev/stdin \ | |
| ssh-keygen -vlf /dev/stdin |
Network namespaces are an important component of containerization in Linux. A network namespace (netns) allows a running process to see different network interfaces, routes, and firewall rules from the rest of the system. There are a number of use cases for network namespaces, such as running multiple servers, testing/staging environments and providing isolation of services.
We begin by creating a generic systemd service for creating a named network namespace. I add the following to /usr/lib/systemd/system/[email protected]
. In systemd, the @
mean the service takes a parameter which is passed to the unit via %i
. E.g, we can run sudo systemctl start [email protected]
.