This file contains hidden or 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
host myrepo | |
HostName 10.10.8.19 | |
IdentityFile ~/.ssh/gitsrv.key | |
User git | |
host myconcourse | |
HostName 10.10.9.28 | |
IdentityFile ~/.ssh/mykey | |
User concourse-user |
This file contains hidden or 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
https://[opsmanager.ip]/api/v0/security/root_ca_certificate |
This file contains hidden or 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
# The text in the file to be found: "83oMef5367" | |
find . -type f -exec grep -nH "83oMef5367" {} \; |
This file contains hidden or 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
cat <<EOF > /etc/apt/apt.conf.d/01proxy | |
Acquire::http::Proxy "http://10.0.2.2:8080"; EOF |
This file contains hidden or 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
openssl req -new -nodes -out wc.cf.boina.csr -newkey rsa:2048 -keyout wc.cf.boina.key -config <( | |
cat <<-EOF | |
[req] | |
default_bits = 2048 | |
prompt = no | |
default_md = sha256 | |
req_extensions = req_ext | |
distinguished_name = dn | |
[ dn ] |
This file contains hidden or 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
cf curl /v2/events | jq '.resources[].entity | select(.actee_type=="app") |{actor: .actor_name, type: .type, date: .timestamp, application: .actee_name}' |
This file contains hidden or 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
zone "toto-tr.fr.rt" { | |
type master; | |
masters { 213.154.64.11; }; | |
file "slaves/db.toto-tr.fr.rt"; | |
}; | |
#Replace this : | |
(^[a-z0-9\-]+(\.[a-z0-9\-]+)*) |
This file contains hidden or 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 | |
cd /tmp | |
url=http://ftp.isc.org/isc/bind9/9.9.8-P2/bind-9.9.8-P2.tar.gz | |
wget $url | |
bindv=9.9.8-P2 | |
compil=TCP3sec-nossl-rrl-xtds-ipv6-64bits | |
tar -zxvf bind-$bindv.tar.gz | |
patch /tmp/bind-$bindv/bin/named/client.c < /usr/local/progs/compil-resources/client.patch | |
less /tmp/bind-$bindv/bin/named/client.c |
This file contains hidden or 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 | |
cd /tmp | |
url=http://ftp.isc.org/isc/bind9/9.9.8-P2/bind-9.9.8-P2.tar.gz | |
wget $url | |
bindv=9.9.8-P2 | |
compil=TCP3sec-nossl-rrl-xtds-ipv6-64bits | |
tar -zxvf bind-$bindv.tar.gz | |
patch /tmp/bind-$bindv/bin/named/client.c < /usr/local/progs/compil-resources/client.patch | |
less /tmp/bind-$bindv/bin/named/client.c |
This file contains hidden or 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
for i in seq {1..9}; do resperf -d dns_domain_names.txt -s $host -f inet -p 53 -e 2> /dev/null |grep throughput ; done |